Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 780 for oldR (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cni/pkg/nodeagent/informers.go

    			// Unlike the other cases, we actually want to use the "old" event for terminated job pods
    			// - kubernetes will (weirdly) issue a new status to the pod with no IP on termination, meaning
    			// our check of `pod.status` will fail for (some) termination events.
    			//
    			// We will get subsequent events that append a new status with the IP put back, but it's simpler
    			// and safer to just check the old pod status for the IP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/runtime/os_freebsd.go

    	"unsafe"
    )
    
    type mOS struct{}
    
    //go:noescape
    func thr_new(param *thrparam, size int32) int32
    
    //go:noescape
    func sigaltstack(new, old *stackt)
    
    //go:noescape
    func sigprocmask(how int32, new, old *sigset)
    
    //go:noescape
    func setitimer(mode int32, new, old *itimerval)
    
    //go:noescape
    func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
    
    func raiseproc(sig uint32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_386.s

    	// We don't know how much stack space the VDSO code will need,
    	// so switch to g0.
    
    	MOVL	SP, BP	// Save old SP; BP unchanged by C code.
    
    	get_tls(CX)
    	MOVL	g(CX), AX
    	MOVL	g_m(AX), SI // SI unchanged by C code.
    
    	// Set vdsoPC and vdsoSP for SIGPROF traceback.
    	// Save the old values on stack and restore them on exit,
    	// so this function is reentrant.
    	MOVL	m_vdsoPC(SI), CX
    	MOVL	m_vdsoSP(SI), DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top