Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 601 for syncAt (0.54 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/kube/informerfactory/factory.go

    }
    
    type informerFactory struct {
    	lock      sync.Mutex
    	informers map[informerKey]builtInformer
    	// startedInformers is used for tracking which informers have been started.
    	// This allows Start() to be called multiple times safely.
    	startedInformers sets.Set[informerKey]
    
    	// wg tracks how many goroutines were started.
    	wg sync.WaitGroup
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/deploymentcontroller.go

    func (o *DeploymentControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentDeploymentSyncs, "concurrent-deployment-syncs", o.ConcurrentDeploymentSyncs, "The number of deployment objects that are allowed to sync concurrently. Larger number = more responsive deployments, but more CPU (and network) load")
    }
    
    // ApplyTo fills up DeploymentController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 12:00:53 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/android-studio-build-sync-popup.png

    android-studio-build-sync-popup.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. pkg/controller/ttl/ttl_controller.go

    	kubeClient clientset.Interface
    
    	// nodeStore is a local cache of nodes.
    	nodeStore listers.NodeLister
    
    	// Nodes that need to be synced.
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// Returns true if all underlying informers are synced.
    	hasSynced func() bool
    
    	lock sync.RWMutex
    
    	// Number of nodes in the cluster.
    	nodeCount int
    
    	// Desired TTL for all nodes in the cluster.
    	desiredTTLSeconds int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. pkg/security/apparmor/helpers.go

    	}
    
    	if container.SecurityContext != nil && container.SecurityContext.AppArmorProfile != nil {
    		return container.SecurityContext.AppArmorProfile
    	}
    
    	// Static pods may not have had annotations synced to fields, so fallback to annotations before
    	// the pod profile.
    	if profile := getProfileFromPodAnnotations(pod.Annotations, container.Name); profile != nil {
    		return profile
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:32 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. pkg/proxy/servicechangetracker.go

    type processServiceMapChangeFunc func(previous, current ServicePortMap)
    
    // serviceChange contains all changes to services that happened since proxy rules were synced.  For a single object,
    // changes are accumulated, i.e. previous is state from before applying the changes,
    // current is state after applying all of the changes.
    type serviceChange struct {
    	previous ServicePortMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/statusgen.go

    	// TypeDebugSyncronization requests Envoy CSDS for proxy sync status
    	TypeDebugSyncronization = v3.DebugType + "/syncz"
    
    	// TypeDebugConfigDump requests Envoy configuration for a proxy without creating one
    	TypeDebugConfigDump = v3.DebugType + "/config_dump"
    
    	// TODO: TypeURLReady - readiness events for endpoints, agent can propagate
    )
    
    // StatusGen is a Generator for XDS status: connections, syncz, configdump
    type StatusGen struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top