Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for acquired (4.32 sec)

  1. cmd/kube-controller-manager/app/controllermanager.go

    	if leaderMigrator != nil {
    		// Wait for Service Account Token Controller to start before acquiring the migration lock.
    		// At this point, the main lock must have already been acquired, or the KCM process already exited.
    		// We wait for the main lock before acquiring the migration lock to prevent the situation
    		//  where KCM instance A holds the main lock while KCM instance B holds the migration lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/runtime/mgcsweep.go

    		if !isSweepDone() {
    			// This can happen if a GC runs between
    			// gosweepone returning ^0 above
    			// and the lock being acquired.
    			unlock(&sweep.lock)
    			continue
    		}
    		sweep.parked = true
    		goparkunlock(&sweep.lock, waitReasonGCSweepWait, traceBlockGCSweep, 1)
    	}
    }
    
    // sweepLocker acquires sweep ownership of spans.
    type sweepLocker struct {
    	// sweepGen is the sweep generation of the heap.
    	sweepGen uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. internal/ringbuffer/ring_buffer.go

    	// ErrIsNotEmpty is returned when the buffer is not empty and not blocking.
    	ErrIsNotEmpty = errors.New("ringbuffer is not empty")
    
    	// ErrAcquireLock is returned when the lock is not acquired on Try operations.
    	ErrAcquireLock = errors.New("unable to acquire lock")
    
    	// ErrWriteOnClosed is returned when write on a closed ringbuffer.
    	ErrWriteOnClosed = errors.New("write on closed ringbuffer")
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

      /**
       * This test causes two connections to become available simultaneously, one from a TCP connect and
       * one from the pool. We must take the pooled connection because by taking it from the pool, we've
       * fully acquired it.
       *
       * This test yields threads to force the decision of plan1 to be deliberate and not lucky. In
       * particular, we set up this sequence of events:
       *
       *  1. take plan 0
       *  3. plan 0 connects
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. pkg/controller/resourcequota/resource_quota_controller.go

    	registry quota.Registry
    	// knows how to monitor all the resources tracked by quota and trigger replenishment
    	quotaMonitor *QuotaMonitor
    	// controls the workers that process quotas
    	// this lock is acquired to control write access to the monitors and ensures that all
    	// monitors are synced before the controller can process quotas.
    	workerLock sync.RWMutex
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. src/testing/benchmark.go

    type PB struct {
    	globalN *atomic.Uint64 // shared between all worker goroutines iteration counter
    	grain   uint64         // acquire that many iterations from globalN at once
    	cache   uint64         // local cache of acquired iterations
    	bN      uint64         // total number of iterations to execute (b.N)
    }
    
    // Next reports whether there are more iterations to execute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        1.7. "License" means this document.
    
        1.8. "Licensable" means having the right to grant, to the maximum
        extent possible, whether at the time of the initial grant or
        subsequently acquired, any and all of the rights conveyed herein.
    
        1.9. "Modifications" means the Source Code and Executable form of
        any of the following:
    
        A. Any file that results from an addition to, deletion from or
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    	// doneSema is used to synchronize the reader and traceAdvance. Specifically,
    	// it notifies traceAdvance that the reader is done with a generation.
    	// Both semaphores are 0 by default (so, acquires block). traceAdvance
    	// attempts to acquire for gen%2 after flushing the last buffers for gen.
    	// Meanwhile the reader releases the sema for gen%2 when it has finished
    	// processing gen.
    	doneSema [2]uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. src/text/template/exec.go

    // values from the data structure by examining fields, calling methods, and so on.
    // The printing of those values happens only through walk functions.
    
    // evalPipeline returns the value acquired by evaluating a pipeline. If the
    // pipeline has a variable declaration, the variable will be pushed on the
    // stack. Callers should therefore pop the stack after they are finished
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. src/runtime/arena.go

    	}
    	if asanenabled {
    		asanpoison(unsafe.Pointer(s.base()), s.elemsize)
    	}
    
    	// Make ourselves non-preemptible as we manipulate state and statistics.
    	//
    	// Also required by setUserArenaChunksToFault.
    	mp := acquirem()
    
    	// We can only set user arenas to fault if we're in the _GCoff phase.
    	if gcphase == _GCoff {
    		lock(&userArenaState.lock)
    		faultList := userArenaState.fault
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top