Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 601 for syncAt (0.45 sec)

  1. cmd/kube-controller-manager/app/options/garbagecollectorcontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentGCSyncs, "concurrent-gc-syncs", o.ConcurrentGCSyncs, "The number of garbage collector workers that are allowed to sync concurrently.")
    	fs.BoolVar(&o.EnableGarbageCollector, "enable-garbage-collector", o.EnableGarbageCollector, "Enables the generic garbage collector. MUST be synced with the corresponding flag of the kube-apiserver.")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. pkg/kube/krt/singleton.go

    	v := d.val.Load()
    	if v == nil {
    		return nil
    	}
    	return []T{*v}
    }
    
    func (d *static[T]) Register(f func(o Event[T])) Syncer {
    	return registerHandlerAsBatched[T](d, f)
    }
    
    func (d *static[T]) RegisterBatch(f func(o []Event[T], initialSync bool), runExistingState bool) Syncer {
    	d.eventHandlers.Insert(f)
    	if runExistingState {
    		v := d.val.Load()
    		if v != nil {
    			f([]Event[T]{{
    				New:   v,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cloudresource/cloud_request_manager.go

    // have run, it will return the most recent error. If node addresses have been
    // synced successfully, it will return the list of node addresses from the most
    // recent successful sync.
    func (m *cloudResourceSyncManager) NodeAddresses() ([]v1.NodeAddress, error) {
    	m.nodeAddressesMonitor.L.Lock()
    	defer m.nodeAddressesMonitor.L.Unlock()
    	// wait until there is something
    	for {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 18:29:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/pilot/testdata/multiXdsStatusMultiPilot.txt

    NAME       CLUSTER      CDS          LDS         EDS         RDS          ECDS         ISTIOD      VERSION
    proxy1     cluster1     STALE        SYNCED      SYNCED      NOT SENT     SYNCED       istiod1     1.20
    proxy2     cluster2     STALE        SYNCED      STALE       SYNCED       STALE        istiod2     1.19
    proxy3     cluster3     NOT SENT     ERROR       STALE       NOT SENT     NOT SENT     istiod3     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 522 bytes
    - Viewed (0)
  5. istioctl/pkg/writer/pilot/testdata/multiXdsStatusSinglePilot.txt

    NAME       CLUSTER      CDS       LDS        EDS        RDS          ECDS         ISTIOD      VERSION
    proxy1     cluster1     STALE     SYNCED     SYNCED     NOT SENT     NOT SENT     istiod1     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 300 bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/status_test.go

    func testRunningAddressesWithService(t *testing.T) {
    	syncer := makeStatusSyncer(t, "istio-ingress")
    	address := syncer.runningAddresses()
    
    	if len(address) != 1 || address[0] != serviceIP {
    		t.Errorf("Address is not correctly set to service ip")
    	}
    }
    
    func testRunningAddressesWithHostname(t *testing.T) {
    	syncer := makeStatusSyncer(t, "istio-ingress-hostname")
    
    	address := syncer.runningAddresses()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/README.md

    ## Where does it come from?
    
    `apiextensions-apiserver` is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apiextensions-apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 06:41:15 UTC 2023
    - 742 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/README.md

    ## Where does it come from?
    
    `api` is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/api. 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.9K bytes
    - Viewed (0)
  9. pkg/proxy/healthcheck/proxier_health.go

    			// or the proxier is fully synced.
    			continue
    		}
    
    		if currentTime.Sub(hs.oldestPendingQueuedMap[ipFamily]) < hs.healthTimeout {
    			// there's an unprocessed update queued for this proxier, but it's not late yet.
    			continue
    		}
    		return false, proxierLastUpdated
    	}
    	return true, lastUpdated
    }
    
    // SyncNode syncs the node and determines if it is eligible or not. Eligible is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. 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)
Back to top