Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for resumption (0.24 sec)

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

       * A custom queue for managing eviction order. Note that this is tightly integrated with {@code
       * ReferenceEntry}, upon which it relies to perform its linking.
       *
       * <p>Note that this entire implementation makes the assumption that all elements which are in the
       * map are also in this queue, and that all elements not in the queue are not in the map.
       *
    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. guava/src/com/google/common/cache/LocalCache.java

       * A custom queue for managing eviction order. Note that this is tightly integrated with {@code
       * ReferenceEntry}, upon which it relies to perform its linking.
       *
       * <p>Note that this entire implementation makes the assumption that all elements which are in the
       * map are also in this queue, and that all elements not in the queue are not in the map.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

           of the input argument. This attribute is added only to the input argument
           when the initial value of the corresponding resource is read, and the
           resource is written later.
    
        Assumption of this pass:
         . Compound resource operations have already been decomposed.
         . Dead functions have already been removed, as resource arguments in dead
           functions can cause the pass to fail.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    // during the execution of relocsym), with the exception of a slice
    // used to facilitate batch allocation of external relocations. Calls
    // to relocsym happen in parallel; the assumption is that each
    // parallel thread will have its own state object.
    type relocSymState struct {
    	target *Target
    	ldr    *loader.Loader
    	err    *ErrorReporter
    	syms   *ArchSyms
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    				}
    				if ran {
    					// Running the timers may have
    					// made an arbitrary number of G's
    					// ready and added them to this P's
    					// local run queue. That invalidates
    					// the assumption of runqsteal
    					// that it always has room to add
    					// stolen G's. So check now if there
    					// is a local G to run.
    					if gp, inheritTime := runqget(pp); gp != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // it is invalid (but impossible to check here) to pass i >= len,
    // because then the result will point outside the array.
    // whySafe must explain why i < len. (Passing "i < len" is fine;
    // the benefit is to surface this assumption at the call site.)
    func arrayAt(p unsafe.Pointer, i int, eltSize uintptr, whySafe string) unsafe.Pointer {
    	return add(p, uintptr(i)*eltSize, "i < len")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          continue;
        }
        if (object.kind_case() == SavedObject::kFunction) {
          // We only allow a single input signature to each SavedFunction.
          // This assumption means we have a 1:1 correspondence between
          // tf.function <=> SavedFunction <=> SavedConcreteFunction <=> FunctionDef
          // This makes defining the ABI easier (or even well-defined at all).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    			rw.Write([]byte("too short"))
    		default:
    			rw.Write([]byte("foo"))
    		}
    	})
    
    	ts := newClientServerTest(t, mode, handler).ts
    	c := ts.Client()
    
    	// Note: this relies on the assumption (which is true) that
    	// Get sends HTTP/1.1 or greater requests. Otherwise the
    	// server wouldn't have the choice to send back chunked
    	// responses.
    	for _, te := range []string{"", "identity"} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    by the signed integer representation, the operation, and its operands.
    Overflow does not cause a <a href="#Run_time_panics">run-time panic</a>.
    A compiler may not optimize code under the assumption that overflow does
    not occur. For instance, it may not assume that <code>x &lt; x + 1</code> is always true.
    </p>
    
    
    <h4 id="Floating_point_operators">Floating-point operators</h4>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top