Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,199 for syncIt (0.12 sec)

  1. staging/src/k8s.io/apiserver/README.md

    compatibility guarantee. We have a goal to make this easier to use in the future.
    
    
    ## Where does it come from?
    
    `apiserver` is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apiserver.
    Code changes are made in that location, merged into `k8s.io/kubernetes` and later synced here.
    
    
    ## Things you should *NOT* do
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/memory/controller_test.go

    	ctl := memory.NewController(store)
    
    	ctl.RegisterHasSyncedHandler(func() bool {
    		return atomic.LoadInt32(&v) > 0
    	})
    
    	if ctl.HasSynced() {
    		t.Error("has synced but should not")
    	}
    	atomic.StoreInt32(&v, 1)
    	if !ctl.HasSynced() {
    		t.Error("has not synced but should")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 18 15:37:45 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller.go

    	// Added as a member to the struct to allow injection for testing.
    	servicesSynced cache.InformerSynced
    
    	// podLister is able to list/get pods and is populated by the
    	// shared informer passed to NewController
    	podLister corelisters.PodLister
    	// podsSynced returns true if the pod shared informer has been synced at least once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. pkg/controller/certificates/rootcacertpublisher/metrics_test.go

    		want    string
    	}{
    		{
    			desc: "nil error",
    			err:  nil,
    			metrics: []string{
    				"root_ca_cert_publisher_sync_total",
    			},
    			want: `
    # HELP root_ca_cert_publisher_sync_total [ALPHA] Number of namespace syncs happened in root ca cert publisher.
    # TYPE root_ca_cert_publisher_sync_total counter
    root_ca_cert_publisher_sync_total{code="200"} 1
    				`,
    		},
    		{
    			desc: "kube api error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 16 12:05:32 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    	if !c.shouldMirror(endpoints) {
    		logger.V(5).Info("Skipping mirroring", "endpoints", klog.KObj(endpoints))
    		return
    	}
    	c.queueEndpoints(obj)
    }
    
    // onEndpointSliceAdd queues a sync for the relevant Endpoints resource for a
    // sync if the EndpointSlice resource version does not match the expected
    // version in the endpointSliceTracker.
    func (c *Controller) onEndpointSliceAdd(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/establish/establishing_controller.go

    		return false
    	}
    	defer ec.queue.Done(key)
    
    	err := ec.syncFn(key)
    	if err == nil {
    		ec.queue.Forget(key)
    		return true
    	}
    
    	utilruntime.HandleError(fmt.Errorf("%v failed with: %v", key, err))
    	ec.queue.AddRateLimited(key)
    
    	return true
    }
    
    // sync is used to turn CRDs into the Established state.
    func (ec *EstablishingController) sync(key string) error {
    	cachedCRD, err := ec.crdLister.Get(key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. releasenotes/notes/34633.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 16 02:36:46 UTC 2021
    - 179 bytes
    - Viewed (0)
  8. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * and keeping in sync with the system wall clock so that time values make sense in comparison with the system wall clock,
     * including timestamps generated from other processes.
     * <p>
     * This clock effectively measures time by duration (according to System.nanoTime()),
     * in between syncs with the system wall clock.
     * When issuing the first timestamp after the sync interval has expired,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pkg/controller/certificates/rootcacertpublisher/metrics.go

    			Name:           "sync_total",
    			Help:           "Number of namespace syncs happened in root ca cert publisher.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"code"},
    	)
    	syncLatency = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      RootCACertPublisher,
    			Name:           "sync_duration_seconds",
    			Help:           "Number of namespace syncs happened in root ca cert publisher.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 16 12:05:32 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. pkg/queue/instance.go

    	// HasSynced returns true once the queue has synced.
    	// Syncing indicates that all items in the queue *before* Run was called have been processed.
    	HasSynced() bool
    }
    
    type queueImpl struct {
    	delay     time.Duration
    	tasks     []*queueTask
    	cond      *sync.Cond
    	closing   bool
    	closed    chan struct{}
    	closeOnce *sync.Once
    	// initialSync indicates the queue has initially "synced".
    	initialSync *atomic.Bool
    	id          string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top