Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,817 for Waking (0.2 sec)

  1. pilot/pkg/trustbundle/trustbundle.go

    	ticker := time.NewTicker(pollInterval)
    	defer ticker.Stop()
    	for {
    		select {
    		case <-ticker.C:
    			trustBundleLog.Infof("waking up to perform periodic checks")
    			tb.fetchRemoteTrustAnchors()
    		case <-stop:
    			trustBundleLog.Infof("stop processing endpoint trustAnchor updates")
    			return
    		case <-tb.endpointUpdateChan:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/runtime/netpoll_solaris.go

    		// To effect edge-triggered events, we need to be sure to
    		// update our association with whatever events were not
    		// set with the event. For example if we are registered
    		// for POLLIN|POLLOUT, and we get POLLIN, besides waking
    		// the goroutine interested in POLLIN we have to not forget
    		// about the one interested in POLLOUT.
    		if clear != 0 {
    			lock(&pd.lock)
    			netpollupdate(pd, 0, uint32(clear))
    			unlock(&pd.lock)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/runtime/trace.go

    func (s *wakeableSleep) wake() {
    	// Grab the wakeup channel, which may be nil if we're
    	// racing with close.
    	lock(&s.lock)
    	if raceenabled {
    		raceacquire(unsafe.Pointer(&s.lock))
    	}
    	if s.wakeup != nil {
    		// Non-blocking send.
    		//
    		// Others may also write to this channel and we don't
    		// want to block on the receiver waking up. This also
    		// effectively batches together wakeup notifications.
    		select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

            // Wait until execution state is healthy.
            // When all workers are waiting for work and work becomes available, there is a small period between signalling the workers and at least one worker waking up and starting work.
            // If the health check is run during that period, it will fail because it appears that all workers are stuck.
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    //
    // SetFinalizer(obj, nil) clears any finalizer associated with obj.
    //
    // The argument obj must be a pointer to an object allocated by calling
    // new, by taking the address of a composite literal, or by taking the
    // address of a local variable.
    // The argument finalizer must be a function that takes a single argument
    // to which obj's type can be assigned, and can have arbitrary ignored return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/runtime/sema.go

    		acquiretime := s.acquiretime
    		if acquiretime != 0 {
    			// Charge contention that this (delayed) unlock caused.
    			// If there are N more goroutines waiting beyond the
    			// one that's waking up, charge their delay as well, so that
    			// contention holding up many goroutines shows up as
    			// more costly than contention holding up a single goroutine.
    			// It would take O(N) time to calculate how long each goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    			// will wait *at least* the duration given. Since this go
    			// routine starts sometime after we record the start time, and
    			// it will wake up the loop below sometime after the broadcast,
    			// we don't need to worry about waking it up before the time
    			// has expired accidentally.
    			<-w.clock.After(blockTimeout)
    			w.cond.Broadcast()
    		}()
    	}
    
    	w.RLock()
    	span := tracing.SpanFromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/os/signal/signal_test.go

    func quiesce() {
    	// The kernel will deliver a signal as a thread returns
    	// from a syscall. If the only active thread is sleeping,
    	// and the system is busy, the kernel may not get around
    	// to waking up a thread to catch the signal.
    	// We try splitting up the sleep to give the kernel
    	// many chances to deliver the signal.
    	start := time.Now()
    	for time.Since(start) < settleTime {
    		time.Sleep(settleTime / 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    	// Base indexes of each root type. Set by gcMarkRootPrepare.
    	baseData, baseBSS, baseSpans, baseStacks, baseEnd uint32
    
    	// stackRoots is a snapshot of all of the Gs that existed
    	// before the beginning of concurrent marking. The backing
    	// store of this must not be modified because it might be
    	// shared with allgs.
    	stackRoots []*g
    
    	// Each type of GC state transition is protected by a lock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. schema/naming.go

    }
    
    // Replacer replacer interface like strings.Replacer
    type Replacer interface {
    	Replace(name string) string
    }
    
    var _ Namer = (*NamingStrategy)(nil)
    
    // NamingStrategy tables, columns naming strategy
    type NamingStrategy struct {
    	TablePrefix         string
    	SingularTable       bool
    	NameReplacer        Replacer
    	NoLowerCase         bool
    	IdentifierMaxLength int
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top