Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for migrate (0.1 sec)

  1. pkg/scheduler/framework/preemption/preemption.go

    	extenders := ev.Handler.Extenders()
    	nodeLister := ev.Handler.SnapshotSharedLister().NodeInfos()
    	if len(extenders) == 0 {
    		return candidates, nil
    	}
    
    	// Migrate candidate slice to victimsMap to adapt to the Extender interface.
    	// It's only applicable for candidate slice that have unique nominated node name.
    	victimsMap := ev.CandidatesToVictimsMap(candidates)
    	if len(victimsMap) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/controller/volume/persistentvolume/pv_controller_test.go

    	}
    }
    
    func TestAnnealMigrationAnnotations(t *testing.T) {
    	// The gce-pd plugin is used to test a migrated plugin (as the feature is
    	// locked as of 1.25), and rbd is used as a non-migrated plugin (still alpha
    	// as of 1.25). As plugins are migrated, rbd should be changed to a non-
    	// migrated plugin. If there are no other non-migrated plugins, then those
    	// test cases are moot and they can be removed (keeping only the test cases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. hack/golangci.yaml

              
              # At this point we don't enforce the usage structured logging calls except in
              # those packages that were migrated. This disables the check for other files.
              -structured .*
              
              # Now enable it again for migrated packages.
              structured k8s.io/kubernetes/cmd/kubelet/.*
              structured k8s.io/kubernetes/pkg/kubelet/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top