Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for lastPut (0.26 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

            filter.getCommandLineIncludePatterns().each { includePattern ->
                def lastDot = includePattern.lastIndexOf(".")
                if (lastDot == -1) {
                    classOnlyFilters.add(includePattern)
                } else {
                    def className = includePattern.substring(0, lastDot)
                    def methodName = includePattern.substring(lastDot + 1)
                    if (Character.isLowerCase(methodName.charAt(0))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        /**
         * Index of element returned by most recent call to next. Reset to -1 if this element is deleted
         * by a call to remove.
         */
        private int lastRet;
    
        Itr() {
          lastRet = -1;
          if (count == 0) nextIndex = -1;
          else {
            nextIndex = takeIndex;
            nextItem = items[takeIndex];
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        /**
         * Index of element returned by most recent call to next. Reset to -1 if this element is deleted
         * by a call to remove.
         */
        private int lastRet;
    
        Itr() {
          lastRet = -1;
          if (count == 0) nextIndex = -1;
          else {
            nextIndex = takeIndex;
            nextItem = items[takeIndex];
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. src/runtime/mpagealloc.go

    		// This means that either our calculations were wrong or the level above
    		// lied to us. In either case, dump some useful state and throw.
    		print("runtime: summary[", l-1, "][", lastSumIdx, "] = ", lastSum.start(), ", ", lastSum.max(), ", ", lastSum.end(), "\n")
    		print("runtime: level = ", l, ", npages = ", npages, ", j0 = ", j0, "\n")
    		print("runtime: p.searchAddr = ", hex(p.searchAddr.addr()), ", i = ", i, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  5. src/internal/trace/gc.go

    	mud *mud
    	// preciseMass is the distribution mass that must be precise
    	// before accumulation is stopped.
    	preciseMass float64
    	// lastTime and lastMU are the previous point added to the
    	// windowed mutator utilization function.
    	lastTime int64
    	lastMU   float64
    }
    
    // resetTime declares a discontinuity in the windowed mutator
    // utilization function by resetting the current time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner.go

    	logger := klog.FromContext(ctx)
    
    	now := tc.clock.Now().UTC()
    	trackedSince, err := tc.latestPossibleTrackedSinceTime(ctx)
    	if err != nil {
    		logger.Error(err, "Getting lastest possible tracked_since time")
    		return
    	}
    
    	if now.Before(trackedSince.Add(tc.minimumSinceLastUsed)) {
    		// we haven't been tracking long enough
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. cmd/xl-storage-disk-id-check.go

    	e.init.Do(func() {
    		e.cached.Store(&AccElem{})
    		atomic.StoreInt64(&e.cachedSec, t)
    	})
    	acc := e.cached.Load()
    	if lastT := atomic.LoadInt64(&e.cachedSec); lastT != t {
    		// Check if lastT was changed by someone else.
    		if atomic.CompareAndSwapInt64(&e.cachedSec, lastT, t) {
    			// Now we swap in a new.
    			newAcc := &AccElem{}
    			old := e.cached.Swap(newAcc)
    			var a AccElem
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/compute.go

    		}
    		klog.Warningf("Different API server versions in the cluster were discovered: %v. Please upgrade your control plane"+
    			" nodes to the same version of Kubernetes", strings.Join(verMsg, ", "))
    	}
    
    	// Get the lastest cluster version
    	clusterVersion, err := getLatestClusterVersion(kubeAPIServerVersions)
    	if err != nil {
    		return upgrades, err
    	}
    	clusterVersionStr := clusterVersion.String()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/bidi/core.go

    			for {
    				// Copy this level run into currentRunSequence
    				currentRunSequence = append(currentRunSequence, run...)
    
    				last := currentRunSequence[len(currentRunSequence)-1]
    				lastT := p.initialTypes[last]
    				if lastT.in(LRI, RLI, FSI) && p.matchingPDI[last] != p.Len() {
    					run = levelRuns[runForCharacter[p.matchingPDI[last]]]
    				} else {
    					break
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
Back to top