• It allows developers to explore a code execution path by showing all calls to, or calls from, a selected method.

    允许开发人员通过显示所有调用一个选定方法的调用,探索代码执行路径

    youdao

  • A particular code path is accessed frequently on each request but the data only needs to be fetched, applied, modified, or updated once.

    对于每个请求经常访问某个特定的代码路径但是数据却只需提取应用修改更新一次。

    youdao

  • After the previous test, Process a and Process Z diverge, each taking a separate code path, as if both came to a fork in the road and each took a distinct branch.

    上次测试之后,进程a和进程z会出现差异每个进程会采用单独代码路径就像路上出现岔道都会走上不同的分枝。

    youdao

  • Minimize the number of remote calls to reduce the overhead imposed by remote calls in your code path.

    尽可能减少远程调用数量减少由于代码路径中的远程调用带来的系统开销

    youdao

  • In the Performance Call Graph view (Figure 3), the line's thickness indicates the amount of time the application spends along that code path.

    性能调用视图(3)中,线粗细指出应用程序沿着代码路径花费时间

    youdao

  • The purpose of these optimizations is to avoid invocation of the regular SQL runtime interpreter wherever possible to shorten the code path.

    这些优化目的为了可以在任何缩短代码路径的地方,避免调用常规SQL运行时解释器。

    youdao

  • Coverage analysis also helps find out if there are any redundant test cases: tests that exercise the same path in the code over and over again, causing unnecessary delays.

    覆盖率分析可以帮您找到测试是否冗余测试代码同一路径反复运行,导致了不必要的时间延迟

    youdao

  • If you write code that USES any extra structure members, you'll have to flag it as not portable and, if you're feeling particularly friendly, include an alternate code path that does the same thing.

    如果编写使用额外结构成员代码,那么您必须标记不可移植的,并且包含一个完成相同任务替换代码路径,如果您认为这样特别友好的话。

    youdao

  • As in the NEW_ORDER transaction, all steps have been collected into one SQL table function to save code path.

    就像NEW_ORDER事务中一样,所有步骤收集一个sql函数中,节省代码路径

    youdao

  • Let's look at the resulting file path of the above code again.

    我们再次查看上述代码产生文件路径

    youdao

  • Also, the style helps document the equal role of the two objects involved in determining the appropriate code path to take.

    还有对于确定采取适当代码路径时所涉及两个对象样式有助于记录它们同等作用

    youdao

  • But assuming the types are okay, the code path is chosen first by a polymorphic dispatch, and second by procedural switch.

    但是假定类型没问题,那么代码路径首先多态分派选中其次过程切换选中。

    youdao

  • The compiler runs at less predictable times, the JVM switches from interpreted to compiled code at will, and the same code path may be compiled and recompiled more than once during a run.

    编译运行次数很难预测JVM按照自己的想法解释代码切换编译代码而且运行期间相同的代码路径可能编译、重新编译不止一次

    youdao

  • Identify where the time is spent and do code path analysis if needed.

    如果需要的话还要确定在哪儿花费了时间进行代码路径分析

    youdao

  • Do code path analysis to see if there is a synchronized block in the code that is blocking requests to execute concurrently.

    进行代码路径分析查看阻塞请求并发执行代码是否存在同步阻塞

    youdao

  • Again, this can be attributed to some additional overhead in reflective invocation, a longer code path, and the tracing activity.

    还是归因于反射调用中的额外开销长的代码路径跟踪活动。

    youdao

  • Let's say you're developing a multithreaded code tracer whose goal is to uniquely identify each thread's path through your code.

    比方开发一个多线程代码跟踪器目标通过的代码惟一标识每个线程路径

    youdao

  • AIX does not store information about which code path allocated a particular chunk of memory by default, so this information is not easy to get.

    AIX存储关于哪些代码路径默认分配特定内存信息这些信息容易获得。

    youdao

  • The goal here is largely to enable meaningful code reuse: Each path component causes dispatch to a relevant code handler.

    这样做的主要目的支持有意义代码重用每个路径成分委派一个相关的代码处理器。

    youdao

  • The line of code below searches the PATH variable looking for a semicolon.

    下面代码搜索PATH变量,查找分号

    youdao

  • In recap, most OOP programming is single dispatch; that is, just one designated object determines which code path is taken.

    现在我们回忆一下,大部分OOP编程单一分派就是说只有一个指定对象用来确定要代码路径

    youdao

  • First, the time taken by the JIT to analyze and compile the code path is included in the runtime of the test.

    首先,测试运行时间当中包含JIT用于分析编译代码路径所花时间

    youdao

  • Another example is uncommon traps: when a code block is initially compiled, only the most likely code path is compiled, while atypical branches (such as exception paths) are left interpreted.

    另一个例子常用分支最初编译代码时,编译常用的代码路径常用分支(比如异常路径)仍然采用解释方式。

    youdao

  • Focus on improving the critical code path.

    将精力主要放在关键代码路径的改进上。

    youdao

  • A critical code path is one that takes a long time to process or is very frequently executed.

    关键代码路径处理时间频繁执行的代码路径。

    youdao

  • Or, to put it another way, use the same code path for errors as you use in normal operation.

    或者一种说法正常操作运行代码错误时运行是一样的。

    youdao

  • Run the application using one code path and capture its SQL.

    使用一个代码路径运行应用程序,捕捉的SQL。

    youdao

  • With the stub method, the application has to be aware it is in "stub mode" so it can exercise the different code path.

    使用stub方法时,应用程序需要知道正处在“stub模式”下,这样可以执行不同代码路径。

    youdao

  • However, if reads greatly outnumber modifications, you can combine intrinsic locking and volatile variables to reduce the cost on the common code path.

    然而如果操作远远超过写操作,可以结合使用内部volatile变量减少公共代码路径开销

    youdao

  • However, if reads greatly outnumber modifications, you can combine intrinsic locking and volatile variables to reduce the cost on the common code path.

    然而如果操作远远超过写操作,可以结合使用内部volatile变量减少公共代码路径开销

    youdao

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

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

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