Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for held (0.2 sec)

  1. src/runtime/mheap.go

    	// Try directly allocating from the current head arena.
    	head := (*gcBitsArena)(atomic.Loadp(unsafe.Pointer(&gcBitsArenas.next)))
    	if p := head.tryAlloc(bytesNeeded); p != nil {
    		return p
    	}
    
    	// There's not enough room in the head arena. We may need to
    	// allocate a new arena.
    	lock(&gcBitsArenas.lock)
    	// Try the head arena again, since it may have changed. Now
    	// that we hold the lock, the list head can't change, but its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    	syncRunner           *async.BoundedFrequencyRunner // governs calls to syncProxyRules
    	syncPeriod           time.Duration
    	lastIPTablesCleanup  time.Time
    
    	// These are effectively const and do not need the mutex to be held.
    	iptables       utiliptables.Interface
    	masqueradeAll  bool
    	masqueradeMark string
    	conntrack      conntrack.Interface
    	nfacct         nfacct.Interface
    	localDetector  proxyutil.LocalTrafficDetector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	// ended. Note that this is distinct from the last value heapGoal had,
    	// because it could change if e.g. gcPercent changes.
    	//
    	// Read and written with the world stopped or with mheap_.lock held.
    	lastHeapGoal uint64
    
    	// heapLive is the number of bytes considered live by the GC.
    	// That is: retained by the most recent GC plus allocated
    	// since then. heapLive ≤ memstats.totalAlloc-memstats.totalFree, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		c.versioner,
    		deadline,
    		pred.AllowWatchBookmarks,
    		c.groupResource,
    		identifier,
    	)
    
    	// note that c.waitUntilWatchCacheFreshAndForceAllEvents must be called without
    	// the c.watchCache.RLock held otherwise we are at risk of a deadlock
    	// mainly because c.watchCache.processEvent method won't be able to make progress
    	//
    	// moreover even though the c.waitUntilWatchCacheFreshAndForceAllEvents acquires a lock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    	// N, wait until mark termination N completes and transitions
    	// to sweep N.
    	//
    	// 2. In sweep N, help with sweep N.
    	//
    	// At this point we can begin a full cycle N+1.
    	//
    	// 3. Trigger cycle N+1 by starting sweep termination N+1.
    	//
    	// 4. Wait for mark termination N+1 to complete.
    	//
    	// 5. Help with sweep N+1 until it's done.
    	//
    	// This all has to be written to deal with the fact that the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. cmd/iam-store.go

    // Assumes that c.Lock is held by caller.
    func (c *iamCache) buildUserGroupMemberships() {
    	for group, gi := range c.iamGroupsMap {
    		c.updateGroupMembershipsMap(group, &gi)
    	}
    }
    
    // updateGroupMembershipsMap - updates the memberships map for a
    // group. IMPORTANT: Assumes c.Lock() is held by caller.
    func (c *iamCache) updateGroupMembershipsMap(group string, gi *GroupInfo) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/proxier.go

    	servicesSynced       bool
    	initialized          int32
    	syncRunner           *async.BoundedFrequencyRunner // governs calls to syncProxyRules
    	// These are effectively const and do not need the mutex to be held.
    	hostname string
    	nodeIP   net.IP
    	recorder events.EventRecorder
    
    	serviceHealthServer healthcheck.ServiceHealthServer
    	healthzServer       *healthcheck.ProxierHealthServer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    	syncRunner           *async.BoundedFrequencyRunner // governs calls to syncProxyRules
    	syncPeriod           time.Duration
    	flushed              bool
    
    	// These are effectively const and do not need the mutex to be held.
    	nftables       knftables.Interface
    	masqueradeAll  bool
    	masqueradeMark string
    	conntrack      conntrack.Interface
    	localDetector  proxyutil.LocalTrafficDetector
    	hostname       string
    	nodeIP         net.IP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	// See sleepRatio for more details.
    	sleepController piController
    
    	// controllerCooldown is the time left in nanoseconds during which we avoid
    	// using the controller and we hold sleepRatio at a conservative
    	// value. Used if the controller's assumptions fail to hold.
    	controllerCooldown int64
    
    	// sleepStub is a stub used for testing to avoid actually having
    	// the scavenger sleep.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    	servicesSynced       bool
    	initialized          int32
    	syncRunner           *async.BoundedFrequencyRunner // governs calls to syncProxyRules
    
    	// These are effectively const and do not need the mutex to be held.
    	syncPeriod    time.Duration
    	minSyncPeriod time.Duration
    	// Values are CIDR's to exclude when cleaning up IPVS rules.
    	excludeCIDRs []*net.IPNet
    	// Set to true to set sysctls arp_ignore and arp_announce
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top