Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,232 for notC (0.2 sec)

  1. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    // Note that the mark-control-plane phase is left out, not needed, and no token is created as that doesn't belong to the upgrade
    func PerformPostUpgradeTasks(client clientset.Interface, cfg *kubeadmapi.InitConfiguration, patchesDir string, dryRun bool, out io.Writer) error {
    	var errs []error
    
    	// Upload currently used configuration to the cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Closer.java

     *   // provided here, e.g. throw closer.rethrow(e, CheckedException.class);
     *   throw closer.rethrow(e);
     * } finally {
     *   closer.close();
     * }
     * }</pre>
     *
     * <p>Note that this try-catch-finally block is not equivalent to a try-catch-finally block using
     * try-with-resources. To get the equivalent of that, you must wrap the above code in <i>another</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    panics will not occur as expected.
    
    If the non-Go code installs a signal handler for any of the
    asynchronous signals, it may invoke the Go signal handler or not as it
    chooses. Naturally, if it does not invoke the Go signal handler, the
    Go behavior described above will not occur. This can be an issue with
    the SIGPROF signal in particular.
    
    The non-Go code should not change the signal mask on any threads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Comparators.java

       * reached, but not the other, the shorter iterable is considered to be less than the longer one.
       * For example, a lexicographical natural ordering over integers considers {@code [] < [1] < [1,
       * 1] < [1, 2] < [2]}.
       *
       * <p>Note that {@code Collections.reverseOrder(lexicographical(comparator))} is not equivalent to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Equivalence.java

       *
       * <p>Note that {@code function} must be consistent according to {@code this} equivalence
       * relation. That is, invoking {@link Function#apply} multiple times for a given value must return
       * equivalent results. For example, {@code
       * Equivalence.identity().onResultOf(Functions.toStringFunction())} is broken because it's not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/toolchain/select.go

    			// which is already set, so nothing to do here.
    			// Note that if we have Go 1.21 installed originally,
    			// GOTOOLCHAIN=go1.30.0+auto or GOTOOLCHAIN=go1.30.0,
    			// and the go.mod  says "toolchain default", we use Go 1.30, not Go 1.21.
    			// That is, default overrides the "auto" part of the calculation
    			// but not the minimum that the user has set.
    			// Of course, if the go.mod also says "go 1.35", using Go 1.30
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    [NOTE]
    ====
    GradleRunner supports the same range of Gradle versions as the Tooling API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/runtime/slice.go

    		// The append() that calls growslice is going to overwrite from oldLen to newLen.
    		// Only clear the part that will not be overwritten.
    		// The reflect_growslice() that calls growslice will manually clear
    		// the region not cleared here.
    		memclrNoHeapPointers(add(p, newlenmem), capmem-newlenmem)
    	} else {
    		// Note: can't use rawmem (which avoids zeroing of memory), because then GC can scan uninitialized memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // as a textproto.
    // Next ID: 2
    message QuantizationSpecs {
      // List of `QuantizationSpec`s. Later spec in the sequence takes precedence.
      //
      // NOTE: Tie-breaking mechanism is not yet supported. Providing multiple
      // `QuantizationSpec` with conflicting quantizable units may result in
      // undefined behavior.
      // TODO: b/307620778 - Support tie-breaking for conflicting specs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/runtime/runtime2.go

    	// not currently executing user code. The stack is not owned.
    	_Grunnable // 1
    
    	// _Grunning means this goroutine may execute user code. The
    	// stack is owned by this goroutine. It is not on a run queue.
    	// It is assigned an M and a P (g.m and g.m.p are valid).
    	_Grunning // 2
    
    	// _Gsyscall means this goroutine is executing a system call.
    	// It is not executing user code. The stack is owned by this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top