Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for hit (0.13 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

            // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
            // For these users fallback to a suboptimal implementation, based on synchronized. This will
            // be a definite performance hit to those users.
            thrownAtomicReferenceFieldUpdaterFailure = atomicReferenceFieldUpdaterFailure;
            helper = new SynchronizedHelper();
          }
        }
        ATOMIC_HELPER = helper;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

            // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
            // For these users fallback to a suboptimal implementation, based on synchronized. This will
            // be a definite performance hit to those users.
            thrownAtomicReferenceFieldUpdaterFailure = atomicReferenceFieldUpdaterFailure;
            helper = new SynchronizedHelper();
          }
        }
        ATOMIC_HELPER = helper;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. src/net/http/request.go

    	}
    	if len(p) == 0 {
    		return 0, nil
    	}
    	// If they asked for a 32KB byte read but only 5 bytes are
    	// remaining, no need to read 32KB. 6 bytes will answer the
    	// question of the whether we hit the limit or go past it.
    	// 0 < len(p) < 2^63
    	if int64(len(p))-1 > l.n {
    		p = p[:l.n+1]
    	}
    	n, err = l.r.Read(p)
    
    	if int64(n) <= l.n {
    		l.n -= int64(n)
    		l.err = err
    		return n, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    					allowFromNode = true
    				}
    			}
    			// For VIP-like LBs, the VIP is often added as a local
    			// address (via an IP route rule).  In that case, a request
    			// from a node to the VIP will not hit the loadbalancer but
    			// will loop back with the source IP set to the VIP.  We
    			// need the following rules to allow requests from this node.
    			if allowFromNode {
    				for _, lbip := range svcInfo.LoadBalancerVIPs() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	gp.param = nil
    
    	if atomic.Load(&gcBlackenEnabled) == 0 {
    		// The gcBlackenEnabled check in malloc races with the
    		// store that clears it but an atomic check in every malloc
    		// would be a performance hit.
    		// Instead we recheck it here on the non-preemptible system
    		// stack to determine if we should perform an assist.
    
    		// GC is done, so ignore any remaining debt.
    		gp.gcAssistBytes = 0
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    		// facts of b.Preds[1] are (in general, b.Preds[1] is
    		// a loop-back edge, so we haven't even been there
    		// yet). As a conservative approximation, we look for
    		// this condition in the predecessor chain until we
    		// hit a join point.
    		uniquePred := func(b *Block) *Block {
    			if len(b.Preds) == 1 {
    				return b.Preds[0].b
    			}
    			return nil
    		}
    		pred, child := b.Preds[1].b, b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. src/time/time.go

    // extracting both return values from a single zone lookup.
    func (t Time) locabs() (name string, offset int, abs uint64) {
    	l := t.loc
    	if l == nil || l == &localLoc {
    		l = l.get()
    	}
    	// Avoid function call if we hit the local time cache.
    	sec := t.unixSec()
    	if l != &utcLoc {
    		if l.cacheZone != nil && l.cacheStart <= sec && sec < l.cacheEnd {
    			name = l.cacheZone.name
    			offset = l.cacheZone.offset
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    // the second to the word after "start", and so on up to t.PtrBytes. At t.PtrBytes,
    // we skip to "start+t.Size_" and begin again from there. This process is
    // repeated until we hit "start+s.elemsize".
    // This tiling algorithm supports array data, since the type always refers to
    // the element type of the array. Single objects are considered the same as
    // single-element arrays.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    	for work.cycles.Load() == n+1 && !isSweepDone() {
    		Gosched()
    	}
    
    	// Now we're really done with sweeping, so we can publish the
    	// stable heap profile. Only do this if we haven't already hit
    	// another mark termination.
    	mp := acquirem()
    	cycle := work.cycles.Load()
    	if cycle == n+1 || (gcphase == _GCmark && cycle == n+2) {
    		mProf_PostSweep()
    	}
    	releasem(mp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	gcController.lastHeapGoal = c.heapGoal()
    
    	// Compute the duration of time for which assists were turned on.
    	assistDuration := now - c.markStartTime
    
    	// Assume background mark hit its utilization goal.
    	utilization := gcBackgroundUtilization
    	// Add assist utilization; avoid divide by zero.
    	if assistDuration > 0 {
    		utilization += float64(c.assistTime.Load()) / float64(assistDuration*int64(procs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top