Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for approach (0.32 sec)

  1. src/runtime/proc.go

    //    idle P, but don't do handoff. This would lead to excessive thread parking/
    //    unparking as the additional threads will instantly park without discovering
    //    any work to do.
    //
    // The current approach:
    //
    // This approach applies to three primary sources of potential work: readying a
    // goroutine, new/modified-earlier timers, and idle-priority GC. See below for
    // additional details.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * the query result cursor will both be closed, even if the operation is cancelled or fails.
     *
     * <p>Note that if you don't call {@code closeAsync()}, the captured objects will not be closed. The
     * automatic-closing approach described above is safer.
     *
     * @param <V> the type of the value of this step
     * @since 30.0
     */
    // TODO(dpb): Consider reusing one CloseableList for the entire pipeline, modulo combinations.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * the query result cursor will both be closed, even if the operation is cancelled or fails.
     *
     * <p>Note that if you don't call {@code closeAsync()}, the captured objects will not be closed. The
     * automatic-closing approach described above is safer.
     *
     * @param <V> the type of the value of this step
     * @since 30.0
     */
    // TODO(dpb): Consider reusing one CloseableList for the entire pipeline, modulo combinations.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CallTest.kt

       * Confirm that we don't send the Proxy-Authorization header from the request to the proxy server.
       * We used to have that behavior but it is problematic because unrelated requests end up sharing
       * credentials. Worse, that approach leaks proxy credentials to the origin server.
       */
      @Test
      fun noPreemptiveProxyAuthorization() {
        server.useHttps(handshakeCertificates.sslSocketFactory())
        server.enqueue(MockResponse(inTunnel = true))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Meeting, were a little narrower, and became something broader and broader as they approach'd nearer and nearer to one another, and after they met they cross'd one another, and then became much broader than before. Whence I gather that the distances at which the Fringes pass by the Knives are not increased nor alter'd by the approach of the Knives, but the Angles in which the Rays are there bent are much increased by that approach; and that the Knife which is nearest any Ray determines which way the Ray shall...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	// The token we pass is a suggestion, not a mandate; if a user is
    	// explicitly asking for a specific linkmode via the "-linkmode"
    	// flag, the token will be ignored. NB: in theory we could ditch
    	// the token approach and just pass a flag to the linker when we
    	// eventually invoke it, and the linker flag could then be
    	// documented (although coming up with a simple explanation of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return nullptr;
    
      // TODO(b/280099953) This algorithm only works for fixed width element types.
      // This is the usual case, but consider falling back to old approach
      // if transposing string tensors becomes needed while folding.
      if (!input_tensor.getElementType().isIntOrIndexOrFloat()) return nullptr;
      SmallVector<int64_t> perms;
      SmallVector<int64_t> output_shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            return EmitErrorWithLocationStr(*node, status);
          }
        }
    
        auto set_shape_from_list_attr = [&](const AttrValue* attr) {
          auto& list = attr->list();
          // This follows the same approach as in ValidateShape, but only flags
          // warning in case where there are mismatch in number of shapes and
          // outputs and in which case it just returns without attempting to refine.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    	ab.Reset()
    
    	ab.rexflag = 0
    	ab.vexflag = false
    	ab.evexflag = false
    	mark := ab.Len()
    	ab.doasm(ctxt, cursym, p)
    	if ab.rexflag != 0 && !ab.vexflag && !ab.evexflag {
    		// as befits the whole approach of the architecture,
    		// the rex prefix must appear before the first opcode byte
    		// (and thus after any 66/67/f2/f3/26/2e/3e prefix bytes, but
    		// before the 0f opcode escape!), or it might be ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    {} # Custom annotations on pod level, if you need them podAnnotations: {} # Deploy the config files as plugin chain (value "true") or as standalone files in the conf dir (value "false")? # Some k8s flavors (e.g. OpenShift) do not support the chain approach, set to false if this is the case chained: true # Allow the istio-cni container to run in privileged mode, needed for some platforms (e.g. OpenShift) privileged: false # Custom configuration happens based on the CNI provider. # Possible values: "default",...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top