Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 796 for oldR (0.25 sec)

  1. src/internal/trace/oldtrace.go

    // (i.e. starting at the original GoSyscall).
    //
    // The resulting trace treats the old trace as a single, large generation,
    // sharing a single evTable for all events.
    //
    // We use a new (compared to what was used for 'go tool trace' in earlier
    // versions of Go) parser for old traces that is optimized for speed, low memory
    // usage, and minimal GC pressure. It allocates events in batches so that even
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/staticpods.go

    			component, backupManifestPath)
    	} else {
    		fmt.Printf("[upgrade/staticpods] Moving new manifest to %q and backing up old manifest to %q\n",
    			currentManifestPath, backupManifestPath)
    	}
    
    	// Move the old manifest into the old-manifests directory
    	if err := pathMgr.MoveFile(currentManifestPath, backupManifestPath); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

      }
    
      /**
       * Increments by one the value currently associated with {@code key}, and returns the old value.
       */
      @CanIgnoreReturnValue
      public long getAndIncrement(K key) {
        return getAndAdd(key, 1);
      }
    
      /**
       * Decrements by one the value currently associated with {@code key}, and returns the old value.
       */
      @CanIgnoreReturnValue
      public long getAndDecrement(K key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/events_test.go

    		Name  string
    		Old   metav1.MicroTime
    		New   metav1.MicroTime
    		Valid bool
    	}{
    		{
    			Name:  "noop microsecond precision",
    			Old:   metav1.NewMicroTime(time.Unix(100, int64(5*time.Microsecond))),
    			New:   metav1.NewMicroTime(time.Unix(100, int64(5*time.Microsecond))),
    			Valid: true,
    		},
    		{
    			Name:  "noop nanosecond precision",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  5. pkg/apis/apps/types.go

    	// can have their a new pod created before the old pod is marked as deleted.
    	// The update starts by launching new pods on 30% of nodes. Once an updated
    	// pod is available (Ready for at least minReadySeconds) the old DaemonSet pod
    	// on that node is marked deleted. If the old pod becomes unavailable for any
    	// reason (Ready transitions to false, is evicted, or is drained) an updated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    			if int(digit) < t {
    				break
    			}
    
    			if w >= math.MaxInt32/base {
    				rst.fail("punycode number overflow")
    			}
    			w *= base - t
    		}
    
    		delta := i - oldI
    		numPoints := len(output) + 1
    		firstTime := oldI == 0
    		if firstTime {
    			delta /= damp
    		} else {
    			delta /= 2
    		}
    		delta += delta / numPoints
    		k := 0
    		for delta > ((base-tmin)*tmax)/2 {
    			delta /= base - tmin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  7. src/runtime/netpoll.go

    		gpp = &pd.wg
    	}
    
    	for {
    		old := gpp.Load()
    		if old == pdReady {
    			return nil
    		}
    		if old == pdNil && !ioready {
    			// Only set pdReady for ioready. runtime_pollWait
    			// will check for timeout/cancel before waiting.
    			return nil
    		}
    		new := pdNil
    		if ioready {
    			new = pdReady
    		}
    		if gpp.CompareAndSwap(old, new) {
    			if old == pdWait {
    				old = pdNil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. security/pkg/pki/util/generate_cert_test.go

    		t.Errorf("certificate IsCA does not match (old: %t) vs (new: %t)",
    			oldRootCert.IsCA, newRootCert.IsCA)
    	}
    	if oldRootCert.Version != newRootCert.Version {
    		t.Errorf("certificate Version does not match (old: %d) vs (new: %d)",
    			oldRootCert.Version, newRootCert.Version)
    	}
    	if oldRootCert.PublicKeyAlgorithm != newRootCert.PublicKeyAlgorithm {
    		t.Errorf("public key algorithm does not match (old: %s) vs (new: %s)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  9. tests/integration/security/sds_ingress/ingress_test.go

    						// Now rotate the key/cert
    						ingressutil.RotateSecrets(t, credName, ingressutil.TLS,
    							ingressutil.IngressCredentialB, false)
    
    						t.NewSubTest("old cert should fail").Run(func(t framework.TestContext) {
    							// Client use old server CA cert to set up SSL connection would fail.
    							ingressutil.SendRequestOrFail(t, ing, host, credName, ingressutil.TLS, tlsContextA,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. src/runtime/mranges.go

    }
    
    // Clear attempts to store minOffAddr in atomicOffAddr. It may fail
    // if a marked value is placed in the box in the meanwhile.
    func (b *atomicOffAddr) Clear() {
    	for {
    		old := b.a.Load()
    		if old < 0 {
    			return
    		}
    		if b.a.CompareAndSwap(old, int64(minOffAddr.addr()-arenaBaseOffset)) {
    			return
    		}
    	}
    }
    
    // StoreMin stores addr if it's less than the current value in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top