Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,184 for startm (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/vendor/rsc.io/markdown/link.go

    func (v *validDomainChecker) parseValidDomain(start int) (n int, found bool) {
    	if start < v.cut {
    		return 0, false
    	}
    	i := start
    	dots := 0
    	for ; i < len(v.s); i++ {
    		c := v.s[i]
    		if c == '_' {
    			dots = -2
    			continue
    		}
    		if c == '.' {
    			dots++
    			continue
    		}
    		if !isLDH(c) {
    			break
    		}
    	}
    	if dots >= 0 && i > start {
    		return i - start, true
    	}
    	v.cut = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. src/runtime/mpagealloc.go

    	p.summaryMappedReady += p.scav.index.grow(base, limit, p.sysStat)
    
    	// Update p.start and p.end.
    	// If no growth happened yet, start == 0. This is generally
    	// safe since the zero page is unmapped.
    	firstGrowth := p.start == 0
    	start, end := chunkIndex(base), chunkIndex(limit)
    	if firstGrowth || start < p.start {
    		p.start = start
    	}
    	if end > p.end {
    		p.end = end
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  7. src/internal/fuzz/worker.go

    		return fmt.Errorf("fuzzing process terminated without fuzzing: %w", err)
    	}
    	return nil
    }
    
    // start runs a new worker process.
    //
    // If the process couldn't be started, start returns an error. Start won't
    // return later termination errors from the process if they occur.
    //
    // If the process starts successfully, start returns nil. stop must be called
    // once later to clean up, even if the process terminates on its own.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    		informer = genericInformer
    
    		// Start the informer
    		s.informerFactory.Start(instanceContext.Done())
    
    	} else {
    		// Dynamic JSON informer fallback.
    		// Cannot use shared dynamic informer since it would be impossible
    		// to clean CRD informers properly with multiple dependents
    		// (cannot start ahead of time, and cannot track dependencies via stopCh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

                throw new IllegalStateException("Not visiting any node.");
            }
            if (current.state == State.CollectValue) {
                current.state = State.Done;
                current = current.parent;
            }
            if (current.state != State.TraverseChildren) {
                throw new IllegalStateException("Cannot end children.");
            }
            if (current.isTopLevelNode()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. pkg/kubelet/util/manager/watch_based_manager.go

    	// AddReference is called from RegisterPod thus it needs to be efficient.
    	// Thus, it is only increasing refCount and in case of first registration
    	// of a given object it starts corresponding reflector.
    	// It's responsibility of the first Get operation to wait until the
    	// reflector propagated the store.
    	c.lock.Lock()
    	defer c.lock.Unlock()
    	item, exists := c.items[key]
    	if !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top