Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for syncAt (0.23 sec)

  1. pkg/proxy/winkernel/proxier.go

    	// services that happened since policies were synced. For a single object,
    	// changes are accumulated, i.e. previous is state from before all of them,
    	// current is state after applying all of those.
    	endpointsChanges  *proxy.EndpointsChangeTracker
    	serviceChanges    *proxy.ServiceChangeTracker
    	endPointsRefCount endPointsReferenceCountMap
    	mu                sync.Mutex // protects the following fields
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    `},
    		{
    			name: "mutex",
    			f:    blockMutex,
    			stk: []string{
    				"sync.(*Mutex).Lock",
    				"runtime/pprof.blockMutex",
    				"runtime/pprof.TestBlockProfile",
    			},
    			re: `
    [0-9]+ [0-9]+ @( 0x[[:xdigit:]]+)+
    #	0x[0-9a-f]+	sync\.\(\*Mutex\)\.Lock\+0x[0-9a-f]+	.*sync/mutex\.go:[0-9]+
    #	0x[0-9a-f]+	runtime/pprof\.blockMutex\+0x[0-9a-f]+	.*runtime/pprof/pprof_test.go:[0-9]+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Important: Since HighWaterMark is using sync/atomic, it has to be at the top of the struct due to a bug on 32-bit platforms
    	// See: https://golang.org/pkg/sync/atomic/ for more information
    	incomingHWM storage.HighWaterMark
    	// Incoming events that should be dispatched to watchers.
    	incoming chan watchCacheEvent
    
    	resourcePrefix string
    
    	sync.RWMutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    			// sync or if it has not reached 10 advance calls without
    			// progress. Otherwise consume at least one token to
    			// avoid an endless parser loop (it is possible that
    			// both parseOperand and parseStmt call advance and
    			// correctly do not advance, thus the need for the
    			// invocation limit p.syncCnt).
    			if p.pos == p.syncPos && p.syncCnt < 10 {
    				p.syncCnt++
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    		// been flushed. In both of those cases, the code will force a full sync.
    		// In all other cases, it ought to be safe to assume that the rules
    		// already exist, so we'll skip this step when doing a partial sync, to
    		// save us from having to invoke /sbin/iptables 20 times on each sync
    		// (which will be very slow on hosts with lots of iptables rules).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller_test.go

    			informerGenerationNumber: 10,
    			trackerGenerationNumber:  12,
    			expectError:              true,
    		},
    		{
    			name:                     "cache and tracker synced",
    			informerGenerationNumber: 10,
    			trackerGenerationNumber:  10,
    			expectError:              false,
    		},
    		{
    			name:                     "tracker outdated",
    			informerGenerationNumber: 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	// For eg: it enables us to update weights of existing destinations only on startup
    	// saving us the cost of querying and updating real servers during every sync.
    	initialSync bool
    	// endpointSlicesSynced, and servicesSynced are set to true when
    	// corresponding objects are synced after startup. This is used to avoid updating
    	// ipvs rules with some partial data after kube-proxy restart.
    	endpointSlicesSynced bool
    	servicesSynced       bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ppc64/ssa.go

    		ssa.OpPPC64LoweredAtomicStore64:
    		// SYNC or LWSYNC
    		// MOVB/MOVW/MOVD arg1,(arg0)
    		st := ppc64.AMOVD
    		switch v.Op {
    		case ssa.OpPPC64LoweredAtomicStore8:
    			st = ppc64.AMOVB
    		case ssa.OpPPC64LoweredAtomicStore32:
    			st = ppc64.AMOVW
    		}
    		arg0 := v.Args[0].Reg()
    		arg1 := v.Args[1].Reg()
    		// If AuxInt == 0, LWSYNC (Store-Release), else SYNC
    		// SYNC
    		syncOp := ppc64.ASYNC
    		if v.AuxInt == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				service:      service,
    				l:            &sync.Mutex{},
    				lastResponse: &kmsPluginHealthzResponse{},
    			},
    			wantTTL: kmsPluginHealthzPositiveTTL,
    		},
    		{
    			desc: "kms provider in bad state",
    			probe: &kmsPluginProbe{
    				name:         "test",
    				ttl:          kmsPluginHealthzPositiveTTL,
    				service:      errService,
    				l:            &sync.Mutex{},
    				lastResponse: &kmsPluginHealthzResponse{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. pkg/kubelet/nodestatus/setters_test.go

    	}
    
    	cases := []struct {
    		desc               string
    		node               *v1.Node
    		synced             bool
    		volumesInUse       []v1.UniqueVolumeName
    		expectVolumesInUse []v1.UniqueVolumeName
    	}{
    		{
    			desc:               "synced",
    			node:               withVolumesInUse.DeepCopy(),
    			synced:             true,
    			volumesInUse:       []v1.UniqueVolumeName{"bar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top