Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 109 for while_1 (0.13 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

          }
          if (map.usesValueReferences()) {
            clearValueReferenceQueue();
          }
        }
    
        void clearKeyReferenceQueue() {
          while (keyReferenceQueue.poll() != null) {}
        }
    
        void clearValueReferenceQueue() {
          while (valueReferenceQueue.poll() != null) {}
        }
    
        // recency queue, shared by expiration and eviction
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

    }
    
    // -----
    
    // Tests that the pass tracks control dependencies for variables from a while
    // op's output.
    
    // Here:
    //   id0 = arg0
    //   while-inputs = (id0/arg0, arg1, arg1)
    //   while body pass through first and second arg, not last one
    //   while-results = (arg0, arg1, Unknown)
    //   #ID 2: read(arg0)      -> succ{5}
    //   #ID 3: read(arg1)      -> succ{6}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                Indicates the dependency is optional for use of this library. While the
                version of the dependency will be taken into account for dependency calculation if the
                library is used elsewhere, it will not be passed on transitively. Note: While the type
                of this field is {@code String} for technical reasons, the semantic type is actually
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

            [later editions continued as follows
        The Panther took pie-crust, and gravy, and meat,
        While the Owl had the dish as its share of the treat.
        When the pie was all finished, the Owl, as a boon,
        Was kindly permitted to pocket the spoon:
        While the Panther received knife and fork with a growl,
        And concluded the banquet--]
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

            [later editions continued as follows
        The Panther took pie-crust, and gravy, and meat,
        While the Owl had the dish as its share of the treat.
        When the pie was all finished, the Owl, as a boon,
        Was kindly permitted to pocket the spoon:
        While the Panther received knife and fork with a growl,
        And concluded the banquet--]
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        // CHECK: "tf.While"
        // CHECK-SAME: (tensor<4xf32>, tensor<!tf_type.resource<tensor<4xf32>>>, tensor<!tf_type.resource<tensor<*xf32>>>) -> (tensor<4xf32>, tensor<!tf_type.resource<tensor<4xf32>>>, tensor<!tf_type.resource<tensor<*xf32>>>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	// Delay reaping m until it's done with the stack.
    	//
    	// Put mp on the free list, though it will not be reaped while freeWait
    	// is freeMWait. mp is no longer reachable via allm, so even if it is
    	// on an OS stack, we must keep a reference to mp alive so that the GC
    	// doesn't free mp while we are still using it.
    	//
    	// Note that the free list must not be linked through alllink because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    // dependency reference counting.
    type finalCloser interface {
    	// finalClose is called when the reference count of an object
    	// goes to zero. (*DB).mu is not held while calling it.
    	finalClose() error
    }
    
    // addDep notes that x now depends on dep, and x's finalClose won't be
    // called until all of x's dependencies are removed with removeDep.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 1
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

        // Advance past the first sentinel nodes in every graph (the source & sink).
        *pos += 2;
      } else {
        // Advance to the next node.
        *pos += 1;
      }
    
      mutex_lock l(graph->mu);
      while (*pos < static_cast<size_t>(graph->graph.num_node_ids())) {
        Node* node = graph->graph.FindNodeId(*pos);
        // FindNodeId() returns nullptr for nodes that have been deleted.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top