Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for Lyding (0.06 sec)

  1. pilot/pkg/controllers/untaint/nodeuntainter.go

    	// remove the taints from readyCniNodes
    	readyCniNodes.Register(func(o krt.Event[v1.Node]) {
    		if o.Event == controllers.EventDelete {
    			return
    		}
    		if o.New != nil {
    			log.Debugf("adding node to queue event: %s", o.New.Name)
    			n.queue.AddObject(o.New)
    		}
    	})
    }
    
    func (n *NodeUntainter) HasSynced() bool {
    	return n.queue.HasSynced()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/controller/storageversionmigrator/resourceversion.go

    		},
    	})
    
    	return rvController
    }
    
    func (rv *ResourceVersionController) addSVM(logger klog.Logger, obj interface{}) {
    	svm := obj.(*svmv1alpha1.StorageVersionMigration)
    	logger.V(4).Info("Adding", "svm", klog.KObj(svm))
    	rv.enqueue(svm)
    }
    
    func (rv *ResourceVersionController) updateSVM(logger klog.Logger, oldObj, newObj interface{}) {
    	oldSVM := oldObj.(*svmv1alpha1.StorageVersionMigration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/internal/trace/internal/testgen/go122/trace.go

    		thread:    thread,
    		timestamp: time,
    	}
    	g.batches = append(g.batches, b)
    	return b
    }
    
    // String registers a string with the trace.
    //
    // This is a convenience function for easily adding correct
    // strings to traces.
    func (g *Generation) String(s string) uint64 {
    	if len(s) == 0 {
    		return 0
    	}
    	if id, ok := g.strings[s]; ok {
    		return id
    	}
    	id := uint64(len(g.strings) + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. operator/cmd/mesh/shared.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    )
    
    // installerScope is the scope for all commands in the mesh package.
    var installerScope = log.RegisterScope("installer", "installer")
    
    func init() {
    	// adding to remove message about the controller-runtime logs not getting displayed
    	// We cannot do this in the `log` package since it would place a runtime dependency on controller-runtime for all binaries.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/legacytokentracking/controller.go

    	if !cache.WaitForNamedCacheSync("configmaps", stopCh, c.configMapSynced) {
    		return
    	}
    
    	go wait.Until(c.runWorker, time.Second, stopCh)
    
    	c.queue.Add(queueKey)
    
    	<-stopCh
    	klog.Info("Ending legacy_token_tracking_controller")
    }
    
    func (c *Controller) runWorker() {
    	for c.processNext() {
    	}
    }
    
    func (c *Controller) processNext() bool {
    	key, quit := c.queue.Get()
    	if quit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. pkg/registry/certificates/certificates/strategy_test.go

    		{
    			name:        "no-op",
    			newObj:      &certapi.CertificateSigningRequest{},
    			oldObj:      &certapi.CertificateSigningRequest{},
    			expectedObj: &certapi.CertificateSigningRequest{},
    		},
    		{
    			name: "adding failed condition to existing approved/denied conditions",
    			newObj: &certapi.CertificateSigningRequest{
    				Status: certapi.CertificateSigningRequestStatus{
    					Conditions: []certapi.CertificateSigningRequestCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    func (s *GenericAPIServer) AddLivezChecks(delay time.Duration, checks ...healthz.HealthChecker) error {
    	return s.livezRegistry.addDelayedHealthChecks(delay, checks...)
    }
    
    // addReadyzShutdownCheck is a convenience function for adding a readyz shutdown check, so
    // that we can register that the api-server is no longer ready while we attempt to gracefully
    // shutdown.
    func (s *GenericAPIServer) addReadyzShutdownCheck(stopCh <-chan struct{}) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/cni-watcher.go

    	ambientPod, err := s.getPodWithRetry(log, addCmd.PodName, addCmd.PodNamespace)
    	if err != nil {
    		return err
    	}
    	log.Debugf("Pod: %s in ns: %s is enabled for ambient, adding to mesh.", addCmd.PodName, addCmd.PodNamespace)
    
    	var podIps []netip.Addr
    	for _, configuredPodIPs := range addCmd.IPs {
    		// net.ip is implicitly convertible to netip as slice
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/encoding/pem/pem.go

    		} else {
    			endIndex = bytes.Index(rest, pemEnd)
    			endTrailerIndex = endIndex + len(pemEnd)
    		}
    
    		if endIndex < 0 {
    			continue
    		}
    
    		// After the "-----" of the ending line, there should be the same type
    		// and then a final five dashes.
    		endTrailer := rest[endTrailerIndex:]
    		endTrailerLen := len(typeLine) + len(pemEndOfLine)
    		if len(endTrailer) < endTrailerLen {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. pkg/controller/storageversionmigrator/storageversionmigrator.go

    func (svmc *SVMController) Name() string {
    	return svmc.controllerName
    }
    
    func (svmc *SVMController) addSVM(logger klog.Logger, obj interface{}) {
    	svm := obj.(*svmv1alpha1.StorageVersionMigration)
    	logger.V(4).Info("Adding", "svm", klog.KObj(svm))
    	svmc.enqueue(svm)
    }
    
    func (svmc *SVMController) updateSVM(logger klog.Logger, oldObj, newObj interface{}) {
    	oldSVM := oldObj.(*svmv1alpha1.StorageVersionMigration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top