Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,199 for syncAt (0.2 sec)

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

    	fs.Int32Var(&o.ConcurrentSATokenSyncs, "concurrent-serviceaccount-token-syncs", o.ConcurrentSATokenSyncs, "The number of service account token objects that are allowed to sync concurrently. Larger number = more responsive token generation, but more CPU (and network) load")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    			// short-circuit if already synced
    			return true
    		}
    		if hasSynced() {
    			// remember we synced
    			cache.Store(true)
    			return true
    		}
    		return false
    	}
    }
    
    // protectedLister returns notReadyError if hasSynced returns false, otherwise delegates to delegate
    type protectedLister struct {
    	hasSynced   func() bool
    	notReadyErr error
    	delegate    cache.GenericLister
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. releasenotes/notes/add-cluster-id-for-cluster-sync-metrics.yaml

    Kebe <******@****.***> 1682963494 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 01 17:51:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. pkg/queue/instance_test.go

    package queue
    
    import (
    	"errors"
    	"sync"
    	"testing"
    	"time"
    
    	"go.uber.org/atomic"
    
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestOrdering(t *testing.T) {
    	numValues := 1000
    
    	q := NewQueue(1 * time.Microsecond)
    	stop := make(chan struct{})
    	defer close(stop)
    
    	wg := sync.WaitGroup{}
    	wg.Add(numValues)
    	mu := sync.Mutex{}
    	out := make([]int, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package healthz
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"net/http"
    	"reflect"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/endpoints/metrics"
    	"k8s.io/apiserver/pkg/server/httplog"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set.go

    	// rsListerSynced returns true if the pod store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	rsListerSynced cache.InformerSynced
    	rsIndexer      cache.Indexer
    
    	// A store of pods, populated by the shared informer passed to NewReplicaSetController
    	podLister corelisters.PodLister
    	// podListerSynced returns true if the pod store has been synced at least once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/AbstractCppPublishingIntegrationTest.groovy

            }
        }
    
        @Override
        ExecutableFixture executable(Object path) {
            ExecutableFixture executable = super.executable(path)
            // Executables synced from a binary repo lose their executable bit
            executable.file.setExecutable(true)
            executable
        }
    
        Map<String, String> machine(String os, String architecture) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/graph_builder.go

    	defer gb.monitorLock.Unlock()
    
    	if len(gb.monitors) == 0 {
    		logger.V(4).Info("garbage controller monitor not synced: no monitors")
    		return false
    	}
    
    	for resource, monitor := range gb.monitors {
    		if !monitor.controller.HasSynced() {
    			logger.V(4).Info("garbage controller monitor not yet synced", "resource", resource)
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/range_allocator.go

    	cidrSets []*cidrset.CidrSet
    	// nodeLister is able to list/get nodes and is populated by the shared informer passed to controller
    	nodeLister corelisters.NodeLister
    	// nodesSynced returns true if the node shared informer has been synced at least once.
    	nodesSynced cache.InformerSynced
    	broadcaster record.EventBroadcaster
    	recorder    record.EventRecorder
    
    	// queues are where incoming work is placed to de-dup and to allow "easy"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. pkg/kubelet/lifecycle/interfaces.go

    }
    
    // PodSyncLoopHandler is invoked during each sync loop iteration.
    type PodSyncLoopHandler interface {
    	// ShouldSync returns true if the pod needs to be synced.
    	// This operation must return immediately as its called for each pod.
    	// The provided pod should never be modified.
    	ShouldSync(pod *v1.Pod) bool
    }
    
    // PodSyncLoopTarget maintains a list of handlers to pod sync loop.
    type PodSyncLoopTarget interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:25:57 UTC 2017
    - 4K bytes
    - Viewed (0)
Back to top