Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for sync_bg (0.73 sec)

  1. pkg/controller/endpointslice/endpointslice_controller.go

    	trackSync(err)
    
    	if err == nil {
    		c.serviceQueue.Forget(key)
    		return
    	}
    
    	if c.serviceQueue.NumRequeues(key) < maxRetries {
    		logger.Info("Error syncing endpoint slices for service, retrying", "key", key, "err", err)
    		c.serviceQueue.AddRateLimited(key)
    		return
    	}
    
    	logger.Info("Retry budget exceeded, dropping service out of the queue", "key", key, "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_controller.go

    	startTime := time.Now()
    
    	logger := klog.FromContext(ctx)
    	logger = klog.LoggerWithValues(logger, "key", key)
    
    	defer func() {
    		logger.V(4).Info("Finished syncing resource quota", "key", key, "duration", time.Since(startTime))
    	}()
    
    	namespace, name, err := cache.SplitMetaNamespaceKey(key)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    		proxier.logger.Error(err, "Error syncing healthcheck services")
    	}
    	if err := proxier.serviceHealthServer.SyncEndpoints(proxier.endpointsMap.LocalReadyEndpoints()); err != nil {
    		proxier.logger.Error(err, "Error syncing healthcheck endpoints")
    	}
    
    	// Finish housekeeping, clear stale conntrack entries for UDP Services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. internal/bucket/replication/replication_test.go

    		//  using config 4 - with replica modification sync disabled.
    		{ObjectOpts{Name: "xy/c5test", UserTags: "k1=v1", Replica: true}, cfgs[4], false}, // 39. replica syncing disabled, this object is a replica
    		{ObjectOpts{Name: "xa/c5test", UserTags: "k1=v1", Replica: false}, cfgs[4], true}, // 40. replica syncing disabled, this object is NOT a replica
    	}
    
    	for _, testCase := range testCases {
    		testCase := testCase
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

            when:
            executer.withStackTraceChecksDisabled()
            runAndFail "sync"
            then:
            failure.assertHasDocumentedCause("Cannot access a file in the destination directory. " +
                "Syncing to a directory which contains unreadable content is not supported. " +
                "Use a Copy task with Task.doNotTrackState() instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. pkg/controller/endpoint/endpoints_controller.go

    	if keyErr != nil {
    		logger.Error(err, "Failed to split meta namespace cache key", "key", key)
    	}
    
    	if e.queue.NumRequeues(key) < maxRetries {
    		logger.V(2).Info("Error syncing endpoints, retrying", "service", klog.KRef(ns, name), "err", err)
    		e.queue.AddRateLimited(key)
    		return
    	}
    
    	logger.Info("Dropping service out of the queue", "service", klog.KRef(ns, name), "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    			"Only works in kubernetes environment.").Get()
    
    	RemoteClusterTimeout = env.Register(
    		"PILOT_REMOTE_CLUSTER_TIMEOUT",
    		30*time.Second,
    		"After this timeout expires, pilot can become ready without syncing data from clusters added via remote-secrets. "+
    			"Setting the timeout to 0 disables this behavior.",
    	).Get()
    
    	DisableMxALPN = env.Register("PILOT_DISABLE_MX_ALPN", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

            } else if (isDestinationDir && task instanceof Sync) {
                builder.withSummary("Cannot access a file in the destination directory.")
                    .withContext("Syncing to a directory which contains unreadable content is not supported.")
                    .withAdvice("Use a Copy task with Task.doNotTrackState() instead.");
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/cidrallocator.go

    	defer c.queue.Done(key)
    
    	err := c.syncTree()
    	// Handle the error if something went wrong during the execution of the business logic
    	if err != nil {
    		if c.queue.NumRequeues(key) < 5 {
    			klog.Infof("Error syncing cidr %v: %v", key, err)
    			c.queue.AddRateLimited(key)
    			return true
    		}
    	}
    	c.queue.Forget(key)
    	return true
    }
    
    // syncTree syncs the ipTrees from the informer cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/aggregate/controller.go

    }
    
    // HasSynced returns true when all registries have synced
    func (c *Controller) HasSynced() bool {
    	for _, r := range c.GetRegistries() {
    		if !r.HasSynced() {
    			log.Debugf("registry %s is syncing", r.Cluster())
    			return false
    		}
    	}
    	return true
    }
    
    func (c *Controller) AppendServiceHandler(f model.ServiceHandler) {
    	c.handlers.AppendServiceHandler(f)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top