What is the translation of " CHẠY CODE " in English?

running the code
chạy mã
chạy code
run the code
chạy mã
chạy code

Examples of using Chạy code in Vietnamese and their translations into English

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
Đọc và chạy code.
Writing and running code.
Chạy code trên thiết bị đầu cuối của bạn.
Run this code in your terminal.
Các bạn thử chạy Code trên.
Try running the code above.
Khi chạy code trong trình duyệt, thông thường sẽ không có gì xảy ra.
When running the code in a browser, typically nothing will happen.
Bạn không thể chạy code được.
You will NOT be able to run code.
Khi bạn chạy code, hàm first và second đều trả về cùng một output.
When you run the code, both functions first and second gives same output.
Em bị lỗi này khi chạy code.
I am getting this error on running the code.
Chạy code- Đây là bước đầu tiên của việc đọc code..
Run the code- Well, this is the first step in reading code..
Khi ta đã có một action tree thì việc chạy code sẽ trở nên dễ dàng.
Once we have the action tree, running the code is easy.
Trước tiên, hãy chạy code mà không dùng phần đã sửa và theo dõi bug.
First run the code without the fix, and observe the bug.
Chạy code bên trên và click vào link bạn sẽ thấy sự thay đổi dữ liệu của nó.
Run the code and when you click on the link you will be able to see the string change its data.
Vòng lặp while True liên tục chạy code bên trong nó cho đến khi chúng ta kết thúc chương trình.
The while True loop continually runs the code inside it until we end the program.
Nó cùng bước theo cách tiêu chuẩn hơn,thực thi EFI hơn chạy code từ Master boot record của ổ cứng.
It also boots in a more standardized way,launching EFI executables rather than running code from a drive's master boot record.
Đọc và chạy code thường rất tốt cho việc tìm hiểu nó làm được những gì và làm bằng cách nào.
Reading and running the code is often great for figuring out what it does and how it works.
Tất nhiên,có một máy chủ vật lý chạy code, nhưng đó là trách nhiệm của nhà cung cấp dịch vụ đám mây.
Of course, there is a physical server that runs the code, but that's the cloud service provider's responsibility.
Đầu tiên, chúng ta kiểm tra có bất kỳ phần tử nào ở trong mảng spheres hay không và nếukhông, chạy code ở trong mệnh đề else.
First, we're checking if there are any items in the spheres array,and if not, execute the code in the else clause.
Khi tin tặc có thể chạy code ở một vị trí cần bảo mật, chúng có thể thực hiện các hành động độc hại.
When the hacker can run code in a location that should be secure, they can take malicious actions.
Cần lưu ý rằng bạn phải sử dụngứng dụng Swift for Windows để chạy code, tệp. EXE được tạo sẽ không hoạt động độc lập, ngay cả khi ứng dụng đang mở.
It is worth noting that youmust use the Swift for Windows application to run your code, the EXE file that's created will not work stand alone, even if the application is open.
Các lập trình viên sẽ chạy code của họ, sau đó gửi một bản ghi nhớ tới team của quản lý server, những người đã cài đặt phần mềm.
The programmers would get their code running, then send a memo to the team of server curators who would install the right software.
Nếu bạn quyết định với điểm thứ hai, React-Native có thể phát hiện nền tảng nào bạn đang chạy code và nạp đúng code cho nền tảng bên đó.
If you decide to go with the second point,React-Native can detect which platform you are running the code from and load the right code for the right platform.
Trong Go, bạn chỉ cần gõ“ go run mycode.go” để biên dịch và chạy code, việc tự động thực hiện biên dịch này tiết kiệm rất nhiều thời gian của bạn.
In Go, you just have to type go run mycode.go to compile and run the code, this automatic compilation makes it exceedingly fast.
Để chạy code trên Ethereum, trước hết bạn cần triển khai hợp đồng( bản thân việc triển khai này chính là một giao dịch), điều này sẽ tiêu tốn của bạn một số lượng nhỏ Ether.
In order to run code on Ethereum, you need to first deploy the contract(the deployment is itself a transaction), which costs a small amount of Ether.
Điểm mình thích nhất ở trang web này là khả năng chạy code bạn vừa gõ để biết chính xác mọi thứ sẽ xuất hiện như thế nào nếu dùng dòng code đó.
The thing I like most about this site is the ability to run the code you just typed to know exactly how things will appear if using that line of code..
Chạy code trong single thread khá dễ vì bạn không phải xử lý các tình huống phức tạp phát sinh trong những môi trường multi- threaded- chẳng hạn như deadlocks.
Running code on a single thread can be quite easy since you don't have to deal with complicated scenarios that are arising in multi threaded environments- for example, deadlocks.
Js là một môi trườngchạy mã nguồn mở cho phép chạy code JavaScript phía server, cho phép các nhà phát triển web sử dụng một ngôn ngữ cho toàn bộ ứng dụng web.
Js is an opensource runtime environment that allows JavaScript code to be run on the server side, allowing web developers to use one language for an entire web application.
Nó được thiết kế để dễ dàng build, package, release, update, và triển khai dự án của bạn bằng bất kỳ ngôn ngữ nào- trên GitHub hoặc bất kỳ hệ thống bên ngoài nào-mà bạn không phải phí công tự chạy code.
Easily build, package, release, update, and deploy your project in any language- on GitHub or any external system-without having to run code yourself,” the company writes.
( Chú ý, có rất nhiều người tin rằng việc nạp các tệp theotừng phần khi bắt đầu chạy code là không tốt, chúng ta sẽ khám phá thêm khi đến phần xây dựng module).
(Note, there are a lot of people who strongly believe thatdynamically loading files piecemeal as you start to run code isn't favorable, which we will explore more when in the next section on module-building).
Các dự án phần mềm phổ biến như Babel, giúp Facebook, Netflix,và Spotify chạy code nhanh hơn, và React, giúp các nhà phát triển phần mềm xây dựng giao diện tốt hơn, đột nhiên bị gián đoạn và không thể hoạt động được nữa.
The Popular software projects like Babel, which helps tech giants like Facebook,Spotify and Netflix, run codes faster as well as React, which helps developers build better interfaces for users, were all of a sudden broken and no more work could be done with them.
Nhưng để làm theo“ cách củaJava”, trước hết tôi cần phải OOP cmn hóa solution của mình và chạy code generation, bởi vì thậm chí Google cho rằng đó là cách duy nhất để làm In- App purchase API.
But to do it“Java way”,I first needed to OOP the hell out of my solution and run code generation, because even Google thinks that's the only way to make the in-app purchase API bearable.
Results: 29, Time: 0.0214

Word-for-word translation

Top dictionary queries

Vietnamese - English