Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,028 for syncAt (0.12 sec)

  1. src/internal/pkgbits/syncmarker_string.go

    	_ = x[SyncFuncExt-30]
    	_ = x[SyncVarExt-31]
    	_ = x[SyncTypeExt-32]
    	_ = x[SyncPragma-33]
    	_ = x[SyncExprList-34]
    	_ = x[SyncExprs-35]
    	_ = x[SyncExpr-36]
    	_ = x[SyncExprType-37]
    	_ = x[SyncAssign-38]
    	_ = x[SyncOp-39]
    	_ = x[SyncFuncLit-40]
    	_ = x[SyncCompLit-41]
    	_ = x[SyncDecl-42]
    	_ = x[SyncFuncBody-43]
    	_ = x[SyncOpenScope-44]
    	_ = x[SyncCloseScope-45]
    	_ = x[SyncCloseAnotherScope-46]
    	_ = x[SyncDeclNames-47]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:24:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. pkg/kube/controllers/queue.go

    	key, quit := q.queue.Get()
    	if quit {
    		// We are done, signal to exit the queue
    		return false
    	}
    
    	// We got the sync signal. This is not a real event, so we exit early after signaling we are synced
    	if key == defaultSyncSignal {
    		q.log.Debugf("synced")
    		q.initialSync.Store(true)
    		return true
    	}
    
    	q.log.Debugf("handling update: %v", formatKey(key))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager.go

    func (m *InformerManager) GetTrustAnchorsByName(name string, allowMissing bool) ([]byte, error) {
    	if !m.ctbInformer.HasSynced() {
    		return nil, fmt.Errorf("ClusterTrustBundle informer has not yet synced")
    	}
    
    	cacheKey := cacheKeyType{ctbName: name}
    
    	if cachedAnchors, ok := m.normalizationCache.Get(cacheKey); ok {
    		return cachedAnchors.([]byte), nil
    	}
    
    	ctb, err := m.ctbLister.Get(name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. pkg/kubelet/status/status_manager.go

    	kubeClient clientset.Interface
    	podManager PodManager
    	// Map from pod UID to sync status of the corresponding pod.
    	podStatuses      map[types.UID]versionedPodStatus
    	podStatusesLock  sync.RWMutex
    	podStatusChannel chan struct{}
    	// Map from (mirror) pod UID to latest status version successfully sent to the API server.
    	// apiStatusVersions must only be accessed from the sync thread.
    	apiStatusVersions map[kubetypes.MirrorPodUID]uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/validatingadmissionpolicycontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentPolicySyncs, "concurrent-validating-admission-policy-status-syncs", o.ConcurrentPolicySyncs, "The number of ValidatingAdmissionPolicyStatusController workers that are allowed to sync concurrently.")
    }
    
    // ApplyTo fills up ValidatingAdmissionPolicyStatusController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. build/build-image/rsyncd.sh

    # Usually it'll be run as non-dockerized UID/GID and end up translating all file
    # ownership to that.
    
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # The directory that gets sync'd
    VOLUME=${HOME}
    
    # Assume that this is running in Docker on a bridge.  Allow connections from
    # anything on the local subnet.
    ALLOW=$(ip route | awk  '/^default via/ { reg = "^[0-9./]+ dev "$5 } ; $0 ~ reg { print $1 }')
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/ttlafterfinishedcontroller.go

    func (o *TTLAfterFinishedControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentTTLSyncs, "concurrent-ttl-after-finished-syncs", o.ConcurrentTTLSyncs, fmt.Sprintf("The number of %s workers that are allowed to sync concurrently.", names.TTLAfterFinishedController))
    }
    
    // ApplyTo fills up TTLAfterFinishedController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/cidrallocator.go

    	defer klog.Info("Stopping ServiceCIDR Allocator Controllerr")
    
    	// Wait for all involved caches to be synced, before processing items from the queue is started
    	if !cache.WaitForCacheSync(c.internalStopCh, c.serviceCIDRSynced, c.ipAddressSynced) {
    		runtime.HandleError(fmt.Errorf("timed out waiting for caches to sync"))
    		return
    	}
    
    	// this is single threaded only one serviceCIDR at a time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. pkg/controller/storageversionmigrator/storageversionmigrator.go

    	resourceMonitor, err := svmc.dependencyGraphBuilder.GetMonitor(ctx, gvr)
    	if resourceMonitor != nil {
    		if err != nil {
    			// non nil monitor indicates that error is due to resource not being synced
    			return fmt.Errorf("dependency graph is not synced, requeuing to attempt again")
    		}
    	} else {
    		// we can't migrate a resource that doesn't exist in the GC
    		_, err = svmc.kubeClient.StoragemigrationV1alpha1().
    			StorageVersionMigrations().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. pkg/kubelet/volume_host.go

    }
    
    // WaitForCacheSync is a helper function that waits for cache sync for CSIDriverLister
    func (kvh *kubeletVolumeHost) WaitForCacheSync() error {
    	if kvh.csiDriversSynced == nil {
    		klog.ErrorS(nil, "CsiDriversSynced not found on KubeletVolumeHost")
    		return fmt.Errorf("csiDriversSynced not found on KubeletVolumeHost")
    	}
    
    	synced := []cache.InformerSynced{kvh.csiDriversSynced}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top