Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 151 for oldR (0.09 sec)

  1. src/cmd/go/internal/modget/get.go

    			continue
    		}
    		path := req.Path
    		old := req.Version
    		new := r.buildListVersion[path]
    		if old != new {
    			changes[path] = change{path, old, new}
    		}
    	}
    	for _, req := range newReqs {
    		if gover.IsToolchain(req.Path) {
    			continue
    		}
    		path := req.Path
    		old := r.initialVersion[path]
    		new := req.Version
    		if old != new {
    			changes[path] = change{path, old, new}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/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: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/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: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    	}
    	if old.val != nil {
    		// If x is a constant, it must be representable as a value of typ.
    		c := operand{old.mode, x, old.typ, old.val, 0}
    		check.convertUntyped(&c, typ)
    		if c.mode == invalid {
    			return
    		}
    	}
    
    	// Everything's fine, record final type and value for x.
    	check.recordTypeAndValue(x, old.mode, typ, old.val)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/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: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  6. pkg/apis/networking/validation/validation_test.go

    		}
    	}
    }
    
    func TestValidateNetworkPolicyUpdate(t *testing.T) {
    	type npUpdateTest struct {
    		old    networking.NetworkPolicy
    		update networking.NetworkPolicy
    	}
    	successCases := map[string]npUpdateTest{
    		"no change": {
    			old: networking.NetworkPolicy{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "bar"},
    				Spec: networking.NetworkPolicySpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    	}
    	if old.val != nil {
    		// If x is a constant, it must be representable as a value of typ.
    		c := operand{old.mode, x, old.typ, old.val, 0}
    		check.convertUntyped(&c, typ)
    		if c.mode == invalid {
    			return
    		}
    	}
    
    	// Everything's fine, record final type and value for x.
    	check.recordTypeAndValue(x, old.mode, typ, old.val)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. pkg/kubelet/status/status_manager_test.go

    	// On Windows, time.Now() is not as precise, which means that 2 consecutive calls may
    	// return the same timestamp. This test expects the old timestamp to be updated with a
    	// newer one, so we set the old timestamp to one second in the past.
    	// See: https://github.com/golang/go/issues/8687
    	old := metav1.NewTime(time.Now().Add(-time.Second))
    	for desc, test := range map[string]struct {
    		condition    *v1.PodCondition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    func (c *gcControllerState) removeIdleMarkWorker() {
    	for {
    		old := c.idleMarkWorkers.Load()
    		n, max := int32(old&uint64(^uint32(0))), int32(old>>32)
    		if n-1 < 0 {
    			print("n=", n, " max=", max, "\n")
    			throw("negative idle mark workers")
    		}
    		new := uint64(uint32(n-1)) | (uint64(max) << 32)
    		if c.idleMarkWorkers.CompareAndSwap(old, new) {
    			return
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    	}
    	xmkdirall(tooldir)
    
    	// Remove tool binaries from before the tool/gohostos_gohostarch
    	xremoveall(pathf("%s/bin/tool", goroot))
    
    	// Remove old pre-tool binaries.
    	for _, old := range oldtool {
    		xremove(pathf("%s/bin/%s", goroot, old))
    	}
    
    	// Special release-specific setup.
    	if isRelease {
    		// Make sure release-excluded things are excluded.
    		for _, dir := range unreleased {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top