Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 126 for migrate (0.11 sec)

  1. pkg/kubelet/nodestatus/setters.go

    			// Addresses flap between the competing controllers, they at least flap
    			// consistently.
    			//
    			// We do not add the annotation in the case where there is no cloud
    			// controller at all, as we don't expect to migrate these clusters to use an
    			// external CCM.
    			if node.ObjectMeta.Annotations == nil {
    				node.ObjectMeta.Annotations = make(map[string]string)
    			}
    			annotation := nodeIP.String()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. cluster/log-dump/log-dump.sh

    function print-deprecation-note() {
      local -r dashline=$(printf -- '-%.0s' {1..100})
      echo "${dashline}"
      echo "k/k version of the log-dump.sh script is deprecated!"
      echo "Please migrate your test job to use test-infra's repo version of log-dump.sh!"
      echo "Migration steps can be found in the readme file."
      echo "${dashline}"
    }
    
    # TODO: Get rid of all the sourcing of bash dependencies eventually.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. src/runtime/os_linux.go

    		panic("doAllThreadsSyscall not supported with cgo enabled")
    	}
    
    	// STW to guarantee that user goroutines see an atomic change to thread
    	// state. Without STW, goroutines could migrate Ms while change is in
    	// progress and e.g., see state old -> new -> old -> new.
    	//
    	// N.B. Internally, this function does not depend on STW to
    	// successfully change every thread. It is only needed for user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Lists.java

       * this reason.
       *
       * <p><b>Java 8+ users:</b> many use cases for this method are better addressed by {@link
       * java.util.stream.Stream#map}. This method is not being deprecated, but we gently encourage you
       * to migrate to streams.
       */
      public static <F extends @Nullable Object, T extends @Nullable Object> List<T> transform(
          List<F> fromList, Function<? super F, ? extends T> function) {
        return (fromList instanceof RandomAccess)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

        // but such ops might be present in the input from upstream like TFRT
        // compilation. Later on, this could be merged in the legalization pass when
        // we migrate bridge to StableHLO.
    
        // TODO(b/259459405): Avoid this peculiar use through some refactoring in
        // the caller.
        // This needs to happen before legalization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Lists.java

       * this reason.
       *
       * <p><b>Java 8+ users:</b> many use cases for this method are better addressed by {@link
       * java.util.stream.Stream#map}. This method is not being deprecated, but we gently encourage you
       * to migrate to streams.
       */
      public static <F extends @Nullable Object, T extends @Nullable Object> List<T> transform(
          List<F> fromList, Function<? super F, ? extends T> function) {
        return (fromList instanceof RandomAccess)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterables.java

     * addressed by the new {@link java.util.stream.Stream} library. Read the method documentation below
     * for comparisons. This class is not being deprecated, but we gently encourage you to migrate to
     * streams.
     *
     * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables produced in this class
     * are <i>lazy</i>, which means that their iterators only advance the backing iteration when
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. cmd/data-usage-cache.go

    	// to the passed object size.
    	for i, interval := range ObjectsHistogramIntervals[:] {
    		if size >= interval.start && size <= interval.end {
    			h[i]++
    			break
    		}
    	}
    }
    
    // mergeV1 is used to migrate data usage cache from sizeHistogramV1 to
    // sizeHistogram
    func (h *sizeHistogram) mergeV1(v sizeHistogramV1) {
    	var oidx, nidx int
    	for oidx < len(v) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	// later where N is how long it takes their plugin to pick up new config
    	// and M is extra buffer to allow the API server to process the config.
    	// At that point, they are guaranteed to either migrate to the new key
    	// or get errors during the migration.
    	//
    	// If the API server coasted forever on the last DEK/seed, they would need
    	// to actively check if it had observed the new key ID before starting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterables.java

     * addressed by the new {@link java.util.stream.Stream} library. Read the method documentation below
     * for comparisons. This class is not being deprecated, but we gently encourage you to migrate to
     * streams.
     *
     * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables produced in this class
     * are <i>lazy</i>, which means that their iterators only advance the backing iteration when
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
Back to top