Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,475 for happen (0.12 sec)

  1. src/cmd/compile/internal/inline/inlheur/scoring.go

    // that in the "must" version the value flow is unconditional: if the
    // callsite executes, then the condition we're interested in (ex:
    // param feeding call) is guaranteed to happen. For the "may" version,
    // there may be control flow that could cause the benefit to be
    // bypassed.
    const (
    	// Category 1 adjustments (see above)
    	panicPathAdj scoreAdjustTyp = (1 << iota)
    	initFuncAdj
    	inLoopAdj
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/cache.go

    // cache entries, used only updates the mtime if the current
    // mtime is more than an hour old. This heuristic eliminates
    // nearly all of the mtime updates that would otherwise happen,
    // while still keeping the mtimes useful for cache trimming.
    func (c *DiskCache) used(file string) {
    	info, err := os.Stat(file)
    	if err == nil && c.now().Sub(info.ModTime()) < mtimeInterval {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm.go

    	// rather than happen on the heap.
    	var out [p256UncompressedLength]byte
    	return p.bytes(&out)
    }
    
    func (p *P256Point) bytes(out *[p256UncompressedLength]byte) []byte {
    	// The proper representation of the point at infinity is a single zero byte.
    	if p.isInfinity() == 1 {
    		return append(out[:0], 0)
    	}
    
    	x, y := new(p256Element), new(p256Element)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. src/internal/trace/oldtrace.go

    		ev := it.extra[0]
    		it.extra = it.extra[1:]
    
    		if len(it.extra) == 0 {
    			it.extra = it.extraArr[:0]
    		}
    		// Two events aren't allowed to fall on the same timestamp in the new API,
    		// but this may happen when we produce EvGoStatus events
    		if ev.base.time <= it.lastTs {
    			ev.base.time = it.lastTs + 1
    		}
    		it.lastTs = ev.base.time
    		return ev, nil
    	}
    
    	oev, ok := it.events.Pop()
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. pkg/xds/server.go

    		w.DeleteWatchedResource(request.TypeUrl)
    		return false, emptyResourceDelta
    	}
    
    	previousInfo := w.GetWatchedResource(request.TypeUrl)
    	// This can happen in two cases:
    	// 1. When Envoy starts for the first time, it sends an initial Discovery request to Istiod.
    	// 2. When Envoy reconnects to a new Istiod that does not have information about this typeUrl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage.go

    	// Make sure ClusterIP and ClusterIPs are in sync.  This has to happen
    	// early, before anyone looks at them.
    	normalizeClusterIPs(After{svc}, Before{nil})
    
    	// Allocate IPs and ports. If we had a transactional store, this would just
    	// be part of the larger transaction.  We don't have that, so we have to do
    	// it manually. This has to happen here and not in any earlier hooks (e.g.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	// This way all the tests that are checking for watches don't have to worry about RV too old problems because crazy things *could* happen
    	// before like the created RV could be too old to watch.
    	err = wait.PollImmediate(500*time.Millisecond, 30*time.Second, func() (bool, error) {
    		return isWatchCachePrimed(v1CRD, dynamicClientSet)
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

            secondBarrier.await();
          }
        }
    
        @Override
        protected ScheduledExecutorService executor() {
          // use a bunch of threads so that weird overlapping schedules are more likely to happen.
          return Executors.newScheduledThreadPool(10);
        }
    
        @Override
        protected Scheduler scheduler() {
          return new CustomScheduler() {
            @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

            secondBarrier.await();
          }
        }
    
        @Override
        protected ScheduledExecutorService executor() {
          // use a bunch of threads so that weird overlapping schedules are more likely to happen.
          return Executors.newScheduledThreadPool(10);
        }
    
        @Override
        protected Scheduler scheduler() {
          return new CustomScheduler() {
            @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  10. src/os/exec.go

    	}
    
    	for {
    		state := p.state.Load()
    		refs := state &^ processStatusMask
    		status := processStatus(state & processStatusMask)
    		if refs == 0 {
    			// This should never happen because
    			// handleTransientRelease is always paired with
    			// handleTransientAcquire.
    			panic("release of handle with refcount 0")
    		}
    		if refs == 1 && status == statusOK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top