• 不论什么时候,只要编写变量接下来可能一个线程读取或者您将读取的变量最后被另一个线程写入的,那么您必须进行同步

    Whenever you will be writing a variable that may next be read by another thread, or reading a variable that may have last been written by another thread, you must synchronize.

    youdao

  • 读取写入原子变量读取写入可变变量的访问具有相同存取语义

    Reads and writes of atomic variables have the same memory semantics as read and write access to volatile variables.

    youdao

  • 目标读取数据的过程中,LBAC读取访问规则执行

    LBAC read access rules are enforced while reading from both source and target tables.

    youdao

  • 偏移指出是否开始读取计数指出读取字节数量

    The offset indicates where to begin reading, and the count identifies the number of bytes to read.

    youdao

  • 通过技巧通常遇到读取技巧相同折衷问题:读取操作通常事务作用域外部完成的。

    With this technique, you'll typically encounter the same trade-off as with the read-first technique: read operations are typically done outside of the context of the transaction scope.

    youdao

  • 我们关注磁盘读取不是磁盘写,因为大部分磁盘访问都是为了进行读取操作大部分磁盘带宽用于读取操作。

    We focus on disk reads rather than disk writes, because the majority of disk accesses are for read operations, and the majority of disk bandwidth is used for read operations.

    youdao

  • 继续读取文件直至到达文件末尾,边读取打印每行

    Keep reading the file until you are at the end, printing each line as you read it.

    youdao

  • 客户机服务器应用程序可能读取完整信息部分消息或者根本读取不到消息。

    The client or server application may read the complete message, a partial message, or nothing at all.

    youdao

  • 应用程序打开一个文件读取文件处理文档时,通常读取文件后不再需要文件句柄了。

    When an application opens a file handle to read in so it can process a document, it typically reads from the file and then has no further need for the file handle.

    youdao

  • 可以读取编译运行代码;也可以在编译期读取或运行代码;还可以运行读取或者编译代码。

    You can compile or run code while reading, read or run code while compiling, and read or compile code at runtime.

    youdao

  • 允许一些读取器在其他读取器锁定时运行效率更高但是可能会读取线程持续不断的风险,导致编写器无法进行工作

    That is, it would be more efficient to allow readers to run while other readers held the lock, but you'd risk a constant stream of reader threads keeping the writer from ever doing its job.

    youdao

  • 以前处理类型中,读取XML文档之前必须读取“文档类型定义”(DTD)。

    In the former type of processing, it is necessary to read a "document type Definition" (DTD) prior to reading an XML document it applies to.

    youdao

  • xargs命令可管道读取数据每行读取内容运行指定命令

    Xargs reads data from a pipe and runs a specified command for every line read.

    youdao

  • 读取协议读取器:对于追踪和跟踪解决方案读取通过读取20 个条形码RadioFrequencyIdentification (RFID)标签相似的东西,创建原始数据

    Reader protocols and readers: For a track-and-trace solution, readers create the raw data by reading 2D barcodes or Radio Frequency Identification (RFID) tags or similar.

    youdao

  • 授予对已具有读取编辑删除访问权的每个内容读取、编辑或删除访问权。

    This also grants read, edit, or delete access to each content item that you have read, edit, or delete access to.

    youdao

  • 授予对已具有读取编辑删除访问权的每个创作模板读取、编辑或删除访问权。

    Also grants read, edit, or delete access to each authoring template that you have read, edit, or delete access to.

    youdao

  • 授予对已具有读取编辑删除访问权的每个表示模板读取、编辑或删除访问权。

    Also grants read, edit, or delete access to each presentation template that you have read, edit, or delete access to.

    youdao

  • 代码将创建个与以上页面连接允许开始读取一个本地文件一样读取

    This line of code creates a connection to the page above and allows you to start reading it much like a local file.

    youdao

  • 说明可能一个低效访问路径DB 2读取数据应该读取的数据更多

    This tells me that I may have an inefficient access path, where DB2 reads more data than it should.

    youdao

  • 因为不是磁盘连续读取页面,所以在读取每个页面之前需要进行查找存在循环延迟

    Because the pages are not read sequentially from the disk, both seek and rotational delays occur before each page can be read.

    youdao

  • 授予对已具有读取编辑删除访问权的每个组件读取、编辑或删除访问权。

    Also grants Read, Edit, or Delete access to each library component that you have Read, Edit, or Delete access to.

    youdao

  • 读取活跃数据读取其它数据很多那些不活跃的数据必须通过网络获取

    The hot set can be read much more quickly than the rest, which must be fetched over the network.

    youdao

  • 如果希望随机文件读取进行基准测试可能需要确保读取不同文件避免缓存

    If you want to benchmark random file reads, you likely need to ensure that different files are read to avoid caching.

    youdao

  • 例如与其2GB数据写入网格,不如对输入文件迭代读取(譬如每次读取50k),再将每次读取的少量数据写入网格中。

    For example, rather than having to write 2gb of data into the grid, we iterate through an input file (say in steps of 50k) and write the read data into the grid.

    youdao

  • 然而,在读取数据期间LBAC读取访问规则执行

    LBAC read access rules are enforced while reading from source table, however.

    youdao

  • 第二CRUD操作读取代码的作用是从数据库读取小部件记录

    The second CRUD operation is read: the code simply needs to read widget records from the database.

    youdao

  • 编写代码读取人工任务输入消息声明任务、读取输入消息、实现任务、创建输出消息,以及完成任务。

    Write code to read the input message for the human task, claim the task, read the input message, implement the task, create the output message, and complete the task.

    youdao

  • 因此,与顺序读取相比,按随机顺序读取数据磁盘访问时间得多。

    As a result, the disk access time is much longer when reading data in random order than when reading in sequential order.

    youdao

  • 悲观会话通常写入锁,它们允许其他用户读取锁定数据除非遇到不能读取情况

    Pessimistic session locks should generally be write locks; they should let other users read the locked data, unless there is a very strong case to not do so.

    youdao

  • 根据应用程序的设计可能需要事务作用域外执行读取操作即使读取操作用于更新目的

    Depending on how your application is designed, you may be forced to execute read operations outside the transaction's scope, even when the read operations are used for update intent.

    youdao

$firstVoiceSent
- 来自原声例句
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定