Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for lastPut (0.29 sec)

  1. src/cmd/internal/obj/ppc64/list9.go

    // THE SOFTWARE.
    
    package ppc64
    
    import (
    	"cmd/internal/obj"
    	"fmt"
    )
    
    func init() {
    	obj.RegisterRegister(obj.RBasePPC64, REG_SPR0+1024, rconv)
    	// Note, the last entry in Anames is "LASTAOUT", it is not a real opcode.
    	obj.RegisterOpcode(obj.ABasePPC64, Anames[:len(Anames)-1])
    	obj.RegisterOpcode(AFIRSTGEN, GenAnames)
    }
    
    func rconv(r int) string {
    	if r == 0 {
    		return "NONE"
    	}
    	if r == REGG {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:12:43 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/cni/cniversionskew_test.go

    )
    
    // Currently only test CNI with one version behind.
    var versions = []string{NMinusOne}
    
    // TestCNIVersionSkew runs all traffic tests with older versions of CNI and lastest Istio.
    // This is to simulate the case where CNI and Istio control plane versions are out of sync during upgrade.
    func TestCNIVersionSkew(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. cluster/images/etcd/README.md

    `<etcd-version>-<image-revision>`, e.g. `3.0.17-0`.  The etcd version is the
    SemVer of latest etcd version available in the image. The image revision
    distinguishes between docker images with the same lastest etcd version but
    changes (bug fixes and backward compatible improvements) to the migration
    utility bundled with the image.
    
    In addition to the latest etcd version, each `registry.k8s.io/etcd` image contains
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/anames.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/erasure-server-pool.go

    	var entries []chan metaCacheEntry
    
    	for poolIdx, erasureSet := range z.serverPools {
    		for setIdx, set := range erasureSet.sets {
    			set := set
    			listOut := make(chan metaCacheEntry, 1)
    			entries = append(entries, listOut)
    			disks, infos, _ := set.getOnlineDisksWithHealingAndInfo(true)
    			if len(disks) == 0 {
    				xioutil.SafeClose(results)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top