Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for trackers (0.17 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * implementation type.
         *
         * <p>This method is provided as a convenience for tests. Otherwise they'd need to be
         * knowledgeable about all the implementation details of our type system trickery.
         */
        abstract E castForTesting(InternalEntry<K, V, ?> entry);
    
        /** Unsafely extracts the key reference queue used by this segment. */
        ReferenceQueue<K> getKeyReferenceQueueForTesting() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                                         func::FuncOp func) {
      // Examine all StatefulPartitionedCall ops that have resources as return
      // types. If the returned resource traces back to an input argument for the
      // SPC, then replace uses of the returned copy with the original input.
      //
      // Note: This does not descend through nested SCPs.
      auto ComesFromBlockArgNumber = [](Value val) -> int {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // is 1. If the value is -1 the tests are repeating forever.
    GTEST_DECLARE_int32_(repeat);
    
    // This flag controls whether Google Test includes Google Test internal
    // stack frames in failure stack traces.
    GTEST_DECLARE_bool_(show_internal_stack_frames);
    
    // When this flag is specified, tests' order is randomized on every iteration.
    GTEST_DECLARE_bool_(shuffle);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    		// Validate the outgoing headers.
    		if err := validateHeaders(req.Header); err != "" {
    			req.closeBody()
    			return nil, fmt.Errorf("net/http: invalid header %s", err)
    		}
    
    		// Validate the outgoing trailers too.
    		if err := validateHeaders(req.Trailer); err != "" {
    			req.closeBody()
    			return nil, fmt.Errorf("net/http: invalid trailer %s", err)
    		}
    	}
    
    	origReq := req
    	req = setupRewindBody(req)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top