• The creeks Rattlesnake, Butler, Lolo, Rock and Deep shimmer and surge; the Blackfoot and the Bitterroot rivers join the Clark Fork just outside of town.

    响尾蛇管家罗罗岩石深水这几条溪闪亮汹涌黑足比特鲁特和刚好在城外汇入克拉克•福克

    youdao

  • The steps branch out using a fork, and come back together using a join.

    步骤使用分叉分出使用联合返回

    youdao

  • We'll fork left when the others fork right. We won't join the group tonight for the second five-course meal of the day.

    晚上团体吃今天第二五道菜大餐我们参加

    youdao

  • Similarly, every fork should eventually be followed by a matching join, which combines all the paths starting from the fork.

    同理每个fork最终也都应跟随一个匹配join由后者组合 fork开始所有路径

    youdao

  • Decision and merge are always mapped to several input and output criteria-one for each branch, while fork and join correspond to a single output and input criterion, respectively.

    Decisionmerge始终映射多个输入输出条件,每个分支对应个条件,forkjoin则分别对应于一个输出和输入条件。

    youdao

  • To use fork/join directly, you must either use the runForkJoin() method with a task closure or a task class that subclasses AbstractForkJoinWorker.

    直接使用fork/join必须使用带有任务闭包的runForkJoin()方法一个将AbstractForkJoinWorker分为子类的任务

    youdao

  • Revisiting the example from Listing 6, notice that max() is a method already provided on parallel collections, so there is no need to define and invoke a fork/join task directly, as in Listing 7

    再看一下清单6中的示例注意到,max()一个已经并行集合中提供方法因此没有必要直接定义调用fork/join任务清单 7 所示

    youdao

  • The TaskBarrier class mentioned above was used by the fork/join framework to manage the boundaries between the various tasks, and merge their results; in other words: to join the tasks.

    前面提到的TaskBarrierfork/join框架用来管理不同任务边界合并运行结果,换话说就是连接任务。

    youdao

  • We used a fork and join and placed additional copies of the tasks between them.

    我们使用fork一个join任务其他副本置于两者之间。

    youdao

  • A could bypass the fork and join, but it still needs to enter and leave the process fragment in the upper branch of the fork.

    A可以绕过forkjoin仍然需要进入离开 fork 的靠那条分支中的流程片断

    youdao

  • Waiting tasks in fork/join do not actually block threads.

    fork/join处于等待中的任务实际上阻止线程

    youdao

  • The fork and join in Figure 1 cannot execute due to their dangling inputs.

    1中的forkjoin由于有悬空输入它们无法执行

    youdao

  • If all execution threads started by fork complete successfully, join action is waiting for all of them to complete.

    如果fork启动所有执行线程都能够成功完成那么join动作等待它们全部完成。

    youdao

  • It's easy to express such problems using fork-join, as you saw in the previous installment.

    fork - join可以容易地表示这类问题正如上一期中看到的那样。

    youdao

  • Figure 1 shows an example process with dangling control flow (small white arrows) and data flow (small gray arrows) inputs and outputs in a fork and a join.

    1显示的示例流程中一个forkjoin,其中有悬空控制(白色箭头)和数据流(灰色小箭头)输入输出

    youdao

  • The fork-join approach offers a portable means of expressing a parallelizable algorithm without knowing in advance how much parallelism the target system will offer.

    fork-join方法提供一种表示并行算法简单方式而不用提前了解目标系统提供多大程度并行性。

    youdao

  • We already showed the decision/merge mapping in the MultiMethod project, so this part will concentrate on the fork/join mapping.

    我们在 MultiMethod项目已经介绍decision/merge映射因此部分集中讨论一下fork/join 映射。

    youdao

  • The fork-join framework reduces contention for the work queue by using a technique known as work stealing.

    fork - join框架通过一种称作工作窃取(work stealing)的技术减少了工作队列用情况。

    youdao

  • To assess the effectiveness of ParallelArray, I wrote a simple, unscientific program that runs the query for various sizes of array and fork-join pools.

    为了评估ParallelArray效率编写了一个简单程序,针对各种大小数组fork-join运行查询

    youdao

  • The principal benefit of using the fork-join technique is that it affords a portable means of coding algorithms for parallel execution.

    使用fork-join技术主要好处提供一种编写并行执行算法简便方法

    youdao

  • So the simulation implements a semantics where items get multiplied by a fork and the join does not behave symmetrically, i.e., it does not undo the multiplication.

    因此模拟实现了一个语义,在其中项目某个fork增殖成几份,而join不会做出与之对称行为,也就是说不会撤消增殖操作。

    youdao

  • This kind of parallel decomposition is often called fork-join because executing a task forks (starts) multiple subtasks and then joins (waits for completion) with them.

    这种并行分解方法常常称作fork-join因为执行一个任务首先分解(fork为多个子任务然后再合并join)(完成后)。

    youdao

  • For most runs, the number of threads in the fork-join pool was equal to the number of hardware threads (cores times threads-per-core) available.

    对于大多数运行fork - join中的线程数量可用硬件线程(内核乘以每个内核中的线程数)相等

    youdao

  • The pattern in Figure 14 presents the correct way to model parallel branching by using a matching fork-join pair.

    14中的模式展示使用匹配fork-join 对建立并行分支模型正确方法

    youdao

  • The same holds for the fork and join.

    forkjoin情况也是如此。

    youdao

  • This cyclic dependency between the join and the decision, and the join and the fork (where the join must be executed before the decision or fork and vice versa) is the reason why a deadlock occurs.

    joindecision以及joinfork之间这种循环依赖关系(其中join必须在decisionfork之前执行反之亦然)便是发生死锁原因

    youdao

  • Listing 2 shows an example of a problem that is suitable to a fork-join solution: searching a large array for its maximal element.

    清单2显示了一个适合使用fork - join解决方案问题示例:在大型数组中搜索其中的最大元素。

    youdao

  • You then use the description to actually execute the array operations (which USES the fork-join framework under the hood) in parallel.

    然后描述并行地执行数组操作(幕后使用fork - join框架)。

    youdao

  • This is typical of fork-join problem implementations because the process of recursively dividing the problem will create a potentially large number of new Problem objects.

    fork-join问题实现中很常见,因为递归分解问题过程将会创建大量Problem对象

    youdao

  • For sorting and searching problems, the fork-join library gives you an even easier means of expressing parallelizable operations on data sets: the ParallelArray classes.

    对于排序搜索问题fork - join提供了一种表示可以并行数据操作的非常简单途径parallelarray类。

    youdao

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

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

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