Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,836 for startm (0.69 sec)

  1. pkg/util/taints/taints_test.go

    			spec:        []string{"foo=\\backslashes\\are\\bad:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec taint value with start with an non-alphanumeric character '-'",
    			spec:        []string{"foo=-starts-with-dash:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec taint value with end with an non-alphanumeric character '-'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  2. pilot/pkg/status/distribution/reporter.go

    	r.inProgressResources = make(map[string]*inProgressEntry)
    	go r.readFromEventQueue(stop)
    }
    
    // Start starts the reporter, which watches dataplane ack's and resource changes so that it can update status leader
    // with distribution information.
    func (r *Reporter) Start(clientSet kubernetes.Interface, namespace string, podname string, stop <-chan struct{}) {
    	scope.Info("Starting status follower controller")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        assertThat(manager.servicesByState().keySet()).containsExactly(Service.State.FAILED);
      }
    
      private static void assertState(
          ServiceManager manager, Service.State state, Service... services) {
        Collection<Service> managerServices = manager.servicesByState().get(state);
        for (Service service : services) {
          assertEquals(service.toString(), state, service.state());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. src/strings/strings.go

    	start := -1 // valid span start if >= 0
    	for end, rune := range s {
    		if f(rune) {
    			if start >= 0 {
    				spans = append(spans, span{start, end})
    				// Set start to a negative value.
    				// Note: using -1 here consistently and reproducibly
    				// slows down this code by a several percent on amd64.
    				start = ^start
    			}
    		} else {
    			if start < 0 {
    				start = end
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    		}
    	}
    	return clusterID
    }
    
    // Start starts all components of the error serving tap http serverPilot discovery service on the port specified in DiscoveryServerOptions.
    // If Port == 0, a port number is automatically chosen. Content serving is started by this method,
    // but is executed asynchronously. Serving can be canceled at any time by closing the provided stop channel.
    func (s *Server) Start(stop <-chan struct{}) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. pkg/kubelet/certificate/kubelet.go

    func (m *kubeletServerCertificateDynamicFileManager) Current() *tls.Certificate {
    	return m.currentTLSCertificate.Load()
    }
    
    // Start starts watching the certificate and key files
    func (m *kubeletServerCertificateDynamicFileManager) Start() {
    	var ctx context.Context
    	ctx, m.cancelFn = context.WithCancel(context.Background())
    	go m.dynamicCertificateContent.Run(ctx, 1)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. pkg/apis/apps/types.go

    type StatefulSetOrdinals struct {
    	// start is the number representing the first replica's index. It may be used
    	// to number replicas from an alternate index (eg: 1-indexed) over the default
    	// 0-indexed names, or to orchestrate progressive movement of replicas from
    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    	//   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  8. pkg/kubelet/pleg/evented.go

    		containerStates := make(map[kubecontainer.State]bool)
    		for state := range oldContainerStateCount {
    			containerStates[state] = true
    		}
    		for state := range currentContainerStateCount {
    			containerStates[state] = true
    		}
    
    		// update the metric via difference of old and current counts
    		for state := range containerStates {
    			diff := currentContainerStateCount[state] - oldContainerStateCount[state]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"start": "start is the number representing the first replica's index. It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another. If set, replica indices will be in the range:\n  [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).\nIf unset, defaults to 0. Replica indices will be in the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/plugin/noderesources.go

    	}
    }
    
    // run is running in the background. It handles blocking initialization (like
    // syncing the informer) and then syncs the actual with the desired state.
    func (c *nodeResourcesController) run(ctx context.Context) {
    	logger := klog.FromContext(ctx)
    
    	// When kubelet starts, we have two choices:
    	// - Sync immediately, which in practice will delete all ResourceSlices
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top