Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Initial (0.11 sec)

  1. cmd/kubelet/app/server.go

    			verflag.PrintAndExitIfRequested()
    
    			// set feature gates from initial flags-based config
    			if err := utilfeature.DefaultMutableFeatureGate.SetFromMap(kubeletConfig.FeatureGates); err != nil {
    				return fmt.Errorf("failed to set feature gates from initial flags-based config: %w", err)
    			}
    
    			// validate the initial KubeletFlags
    			if err := options.ValidateKubeletFlags(kubeletFlags); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      Set_CurrentShellEnvironmentVar "POD_CIDR" ${pod_cidr}
    }
    
    # Adds an initial HNS network on the Windows node which forces the creation of
    # a virtual switch and the "management" interface that will be used to
    # communicate with the rest of the Kubernetes cluster without NAT.
    #
    # Note that adding the initial HNS network may cause connectivity to the GCE
    # metadata server to be lost due to a Windows bug.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			transformer.prefix = []byte(string(transformer.prefix) + " ")
    			return transformer
    		})
    	_, initial := testPropagateStore(ctx, t, store, input)
    	revertTransformer()
    
    	// this update should write the canonical value to etcd because the new serialization differs
    	// from the stored serialization
    	input.ResourceVersion = initial.ResourceVersion
    	out := &example.Pod{}
    	err := store.GuaranteedUpdate(ctx, key, out, true, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    			// packages imported by the main module does not change, and the query
    			// result for the module containing each such package also does not change
    			// (it is always relative to the initial build list, before applying
    			// queries). So the only way that the result of an "all" query can change
    			// is if some matching package moves from one module in the build list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    			startState, blockChanged := state.mergePredecessors(b, blockLocs, nil, false)
    			locs.lastCheckedTime = counterTime
    			counterTime++
    			if state.loggingLevel > 1 {
    				state.logf("Processing %v, block changed %v, initial state:\n%v", b, blockChanged, state.stateString(state.currentState))
    			}
    
    			if blockChanged {
    				// If the start did not change, then the old endState is good
    				converged = false
    				changed := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    // object is observed.
    func (proxier *Proxier) OnServiceDelete(service *v1.Service) {
    	proxier.OnServiceUpdate(service, nil)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    	proxier.mu.Lock()
    	proxier.servicesSynced = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	activeQ           = "Active"
    	backoffQ          = "Backoff"
    	unschedulablePods = "Unschedulable"
    
    	preEnqueue = "PreEnqueue"
    )
    
    const (
    	// DefaultPodInitialBackoffDuration is the default value for the initial backoff duration
    	// for unschedulable pods. To change the default podInitialBackoffDurationSeconds used by the
    	// scheduler, update the ComponentConfig value in defaults.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Select1 (Add64carry x y c)) => (ADDZEzero (Select1 <typ.UInt64> (ADDE x y (Select1 <typ.UInt64> (ADDCconst c [-1])))))
    // Fold initial carry bit if 0.
    (ADDE x y (Select1 <typ.UInt64> (ADDCconst (MOVDconst [0]) [-1]))) => (ADDC x y)
    // Fold transfer of CA -> GPR -> CA. Note 2 uses when feeding into a chained Add64carry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	"k8s.io/klog/v2"
    	"k8s.io/utils/clock"
    	"k8s.io/utils/ptr"
    )
    
    var (
    	emptyFunc = func(bool) {}
    )
    
    const (
    	// storageWatchListPageSize is the cacher's request chunk size of
    	// initial and resync watch lists to storage.
    	storageWatchListPageSize = int64(10000)
    	// defaultBookmarkFrequency defines how frequently watch bookmarks should be send
    	// in addition to sending a bookmark right before watch deadline.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      // available.
      /**
       * This field encodes the current state of the future.
       *
       * <p>The valid values are:
       *
       * <ul>
       *   <li>{@code null} initial state, nothing has happened.
       *   <li>{@link Cancellation} terminal state, {@code cancel} was called.
       *   <li>{@link Failure} terminal state, {@code setException} was called.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top