Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,356 for iterations (0.3 sec)

  1. src/cmd/compile/internal/types2/mono.go

    	pos syntax.Pos
    	typ Type
    }
    
    func (check *Checker) monomorph() {
    	// We detect unbounded instantiation cycles using a variant of
    	// Bellman-Ford's algorithm. Namely, instead of always running |V|
    	// iterations, we run until we either reach a fixed point or we've
    	// found a path of length |V|. This allows us to terminate earlier
    	// when there are no cycles, which should be the common case.
    
    	again := true
    	for again {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Operations.groovy

     *  instant.doStuff == operation.doStuff.end
     * </pre>
     */
    class Operations {
        private final InstantFactory instantFactory
        private final Object lock = new Object()
        private final Map<String, NamedOperation> operations = [:]
        private final OperationListener listener
    
        Operations(InstantFactory instantFactory, OperationListener listener) {
            this.listener = listener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. .github/workflows/iam-integrations.yaml

    Shubhendu <******@****.***> 1716419234 +0530
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/workingWithDependencies-iterateDependencies/tests/iterating-dependencies.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 122 bytes
    - Viewed (0)
  5. src/runtime/coro.go

    // It is important not to add more atomic operations or other
    // expensive operations to the fast path.
    func coroswitch_m(gp *g) {
    	c := gp.coroarg
    	gp.coroarg = nil
    	exit := gp.coroexit
    	gp.coroexit = false
    	mp := gp.m
    
    	// Track and validate thread-lock interactions.
    	//
    	// The rules with thread-lock interactions are simple. When a coro goroutine is switched to,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/workingWithDependencies-iterateArtifacts/tests/iterating-artifacts.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 126 bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/IteratorTester.java

     * variety of sequences of the {@link Iterator#next}, {@link Iterator#hasNext} and {@link
     * Iterator#remove} operations. This utility takes the brute-force approach of trying <i>all</i>
     * possible sequences of these operations, up to a given number of steps. So, if the caller
     * specifies to use <i>n</i> steps, a total of <i>3^n</i> tests are actually performed.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/IteratorTester.java

     * variety of sequences of the {@link Iterator#next}, {@link Iterator#hasNext} and {@link
     * Iterator#remove} operations. This utility takes the brute-force approach of trying <i>all</i>
     * possible sequences of these operations, up to a given number of steps. So, if the caller
     * specifies to use <i>n</i> steps, a total of <i>3^n</i> tests are actually performed.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/TreeTraverser.java

       * That is, each node's subtrees are traversed after the node itself is returned.
       *
       * <p>No guarantees are made about the behavior of the traversal when nodes change while iteration
       * is in progress or when the iterators generated by {@link #children} are advanced.
       *
       * @deprecated Use {@link com.google.common.graph.Traverser#depthFirstPreOrder} instead, which has
       *     the same behavior.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/TreeTraverser.java

       * That is, each node's subtrees are traversed after the node itself is returned.
       *
       * <p>No guarantees are made about the behavior of the traversal when nodes change while iteration
       * is in progress or when the iterators generated by {@link #children} are advanced.
       *
       * @deprecated Use {@link com.google.common.graph.Traverser#depthFirstPreOrder} instead, which has
       *     the same behavior.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top