Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for preferGo (0.29 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *
       * <p>Usage guidelines for this method:
       *
       * <ul>
       *   <li>Use this method only when calling an API that returns a {@link ListenableFuture} or a
       *       {@code ClosingFuture}. If possible, prefer calling {@link #transform(ClosingFunction,
       *       Executor)} instead, with a function that returns the next value directly.
       *   <li>Call {@link DeferredCloser#eventuallyClose(Object, Executor) closer.eventuallyClose()}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            "strictly '[1.1, 1.4]'"             | '{strictly [1.1, 1.4]}'           | "versions of foo verified to run on platform Y" | '1.4'    | "didn't match versions 2.0, 1.5 because "
            "prefer '[1.0, 1.4]'; reject '1.4'" | '{prefer [1.0, 1.4]; reject 1.4}' | "1.4 has a critical bug"                        | '1.3'    | "rejected version 1.4 because "
        }
    
        def "doesn't report duplicate reasons"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // Also FusedBatchNorm in training mode prefers NCHW data format. Check if all
      // users can efficiently use NHWC data format?
      if (one_by_one && trivial_strides && trivial_dilations) {
        return "NHWC";
      }
    
      // If filter spatial dimensions are unknown or not 1x1 we prefer NCHW, because
      // it's the fastest option on NVIDIA GPUs with cuDNN library support.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Leq32 (Const32 [0]) (Rsh32Ux64 _ (Const64 [c]))) && c > 0 => (ConstBool [true])
    (Leq64 (Const64 [0]) (Rsh64Ux64 _ (Const64 [c]))) && c > 0 => (ConstBool [true])
    
    // prefer equalities with zero
    (Less(64|32|16|8) (Const(64|32|16|8) <t> [0]) x) && isNonNegative(x) => (Neq(64|32|16|8) (Const(64|32|16|8) <t> [0]) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // Users should prefer 'go get path@version' or 'go get path@none',
    // which make other go.mod adjustments as needed to satisfy
    // constraints imposed by other modules.
    //
    // The -go=version flag sets the expected Go language version.
    // This flag is mainly for tools that understand Go version dependencies.
    // Users should prefer 'go get go@version'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    	}
    	// Check if the context is expired.
    	select {
    	default:
    	case <-ctx.Done():
    		db.mu.Unlock()
    		return nil, ctx.Err()
    	}
    	lifetime := db.maxLifetime
    
    	// Prefer a free connection, if possible.
    	last := len(db.freeConn) - 1
    	if strategy == cachedOrNewConn && last >= 0 {
    		// Reuse the lowest idle time connection so we can close
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	// work does not matter much to overall execution time,
    	// but when running "go test std" it is nice to see each test
    	// results as soon as possible. The priorities assigned
    	// ensure that, all else being equal, the execution prefers
    	// to do what it would have done first in a simple depth-first
    	// dependency order traversal.
    	all := actionList(root)
    	for i, a := range all {
    		a.priority = i
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    	}
    
    	// It's never been documented that asn1.Marshal/Unmarshal on rsa.PublicKey works,
    	// but it does, and we know of code that depends on it.
    	// Lock that in, even though we'd prefer that people use MarshalPKCS1PublicKey and ParsePKCS1PublicKey.
    	derBytes2, err := asn1.Marshal(*pub)
    	if err != nil {
    		t.Errorf("Marshal(rsa.PublicKey): %v", err)
    	} else if !bytes.Equal(derBytes, derBytes2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      log-trap-push "log-error ${bootstep}"
      log-proto "${bootstep}" "${LOG_STATUS_STARTED}"
      $command
      log-proto "${bootstep}" "${LOG_STATUS_COMPLETED}"
      log-trap-pop
    }
    
    # Logs a bootstrap step start. Prefer log-wrap.
    # Args:
    #   $1 : bootstrap step name.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-start {
      local bootstep="$1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    			podIPs: []v1.PodIP{
    				{IP: "192.168.0.1"},
    				{IP: "2001:db8::2"},
    			},
    		},
    		{
    			// by default the cluster prefers IPv4
    			name: "CRI dual-stack PodIPs override NodeAddresses prefer IPv4",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    				{Type: v1.NodeInternalIP, Address: "fd01::1234"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top