Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 144 for sync_bg (0.16 sec)

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

    	if o == nil {
    		return
    	}
    
    	fs.DurationVar(&o.ResourceQuotaSyncPeriod.Duration, "resource-quota-sync-period", o.ResourceQuotaSyncPeriod.Duration, "The period for syncing quota usage status in the system")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. src/internal/pkgbits/syncmarker_string.go

    	_ = x[SyncVal-7]
    	_ = x[SyncRelocs-8]
    	_ = x[SyncReloc-9]
    	_ = x[SyncUseReloc-10]
    	_ = x[SyncPublic-11]
    	_ = x[SyncPos-12]
    	_ = x[SyncPosBase-13]
    	_ = x[SyncObject-14]
    	_ = x[SyncObject1-15]
    	_ = x[SyncPkg-16]
    	_ = x[SyncPkgDef-17]
    	_ = x[SyncMethod-18]
    	_ = x[SyncType-19]
    	_ = x[SyncTypeIdx-20]
    	_ = x[SyncTypeParamNames-21]
    	_ = x[SyncSignature-22]
    	_ = x[SyncParams-23]
    	_ = x[SyncParam-24]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:24:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. pkg/controller/certificates/rootcacertpublisher/publisher.go

    		utilruntime.HandleError(fmt.Errorf("syncing %q failed: %v", key, err))
    		c.queue.AddRateLimited(key)
    		return true
    	}
    
    	c.queue.Forget(key)
    	return true
    }
    
    func (c *Publisher) syncNamespace(ctx context.Context, ns string) (err error) {
    	startTime := time.Now()
    	defer func() {
    		recordMetrics(startTime, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. pkg/kubelet/runonce.go

    		}
    
    		if kl.isPodRunning(pod, status) {
    			klog.InfoS("Pod's containers running", "pod", klog.KObj(pod))
    			return nil
    		}
    		klog.InfoS("Pod's containers not running: syncing", "pod", klog.KObj(pod))
    
    		klog.InfoS("Creating a mirror pod for static pod", "pod", klog.KObj(pod))
    		if err := kl.mirrorPodClient.CreateMirrorPod(pod); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. build/build-image/rsyncd.sh

    # limitations under the License.
    
    # This script will set up and run rsyncd to allow data to move into and out of
    # our dockerized build system.  This is used for syncing sources and changes of
    # sources into the docker-build-container.  It is also used to transfer built binaries
    # and generated files back out.
    #
    # When run as root (rare) it'll preserve the file ids as sent from the client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. pkg/kube/multicluster/secretcontroller_test.go

    	c.Run(stop)
    
    	// before sync
    	assert.EventuallyEqual(t, c.controller.ListRemoteClusters, []cluster.DebugInfo{
    		{ID: "config", SyncStatus: "syncing"},
    		{ID: "c0", SecretName: "istio-system/s0", SyncStatus: "syncing"},
    		{ID: "c1", SecretName: "istio-system/s1", SyncStatus: "syncing"},
    	})
    	assert.EventuallyEqual(t, func() int { return len(c.component.All()) }, 3)
    
    	// Sync all but one
    	for _, c := range c.component.All() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/kubecontrollersconfigurations-crd.yaml

                          Enabled by default, set to nil to disable.
                        properties:
                          hostEndpoint:
                            description: HostEndpoint controls syncing nodes to host endpoints.
                              Disabled by default, set to nil to disable.
                            properties:
                              autoCreate:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 11K bytes
    - Viewed (0)
  8. src/internal/pkgbits/sync.go

    	SyncUint64
    	SyncString
    	SyncValue
    	SyncVal
    	SyncRelocs
    	SyncReloc
    	SyncUseReloc
    
    	// Higher-level object and type markers.
    	SyncPublic
    	SyncPos
    	SyncPosBase
    	SyncObject
    	SyncObject1
    	SyncPkg
    	SyncPkgDef
    	SyncMethod
    	SyncType
    	SyncTypeIdx
    	SyncTypeParamNames
    	SyncSignature
    	SyncParams
    	SyncParam
    	SyncCodeObj
    	SyncSym
    	SyncLocalIdent
    	SyncSelector
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 17:12:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. pkg/kubelet/runtimeclass/runtimeclass_manager.go

    	lister := factory.Node().V1().RuntimeClasses().Lister()
    
    	return &Manager{
    		informerFactory: factory,
    		lister:          lister,
    	}
    }
    
    // Start starts syncing the RuntimeClass cache with the apiserver.
    func (m *Manager) Start(stopCh <-chan struct{}) {
    	m.informerFactory.Start(stopCh)
    }
    
    // WaitForCacheSync exposes the WaitForCacheSync method on the informer factory for testing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 11 19:22:32 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/pleg.go

    	ContainerDied PodLifeCycleEventType = "ContainerDied"
    	// ContainerRemoved - event type when the old state of container is exited.
    	ContainerRemoved PodLifeCycleEventType = "ContainerRemoved"
    	// PodSync is used to trigger syncing of a pod when the observed change of
    	// the state of the pod cannot be captured by any single event above.
    	PodSync PodLifeCycleEventType = "PodSync"
    	// ContainerChanged - event type when the new state of container is unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top