Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for oldB (0.1 sec)

  1. pkg/apis/apps/validation/validation_test.go

    	}
    
    	type testCase struct {
    		name   string
    		old    apps.StatefulSet
    		update apps.StatefulSet
    		errs   field.ErrorList
    	}
    
    	successCases := []testCase{{
    		name:   "update replica count",
    		old:    mkStatefulSet(&validPodTemplate),
    		update: mkStatefulSet(&validPodTemplate, tweakReplicas(3)),
    	}, {
    		name:   "update containers 1",
    		old:    mkStatefulSet(&validPodTemplate),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  2. pkg/apis/batch/validation/validation_test.go

    	}
    	ignoreValueAndDetail := cmpopts.IgnoreFields(field.Error{}, "BadValue", "Detail")
    	for k, tc := range cases {
    		t.Run(k, func(t *testing.T) {
    			tc.old.ResourceVersion = "1"
    			update := tc.old.DeepCopy()
    			tc.update(update)
    			errs := ValidateJobUpdate(update, &tc.old, tc.opts)
    			var wantErrs field.ErrorList
    			if tc.err != nil {
    				wantErrs = append(wantErrs, tc.err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  3. pkg/api/pod/util_test.go

    					dropDisabledFields(&newPod.Spec, nil, oldPodSpec, nil)
    
    					// old pod should never be changed
    					if !reflect.DeepEqual(oldPod, oldPodInfo.pod()) {
    						t.Errorf("old pod changed: %v", cmp.Diff(oldPod, oldPodInfo.pod()))
    					}
    
    					switch {
    					case enabled || oldPodHasProcMount:
    						// new pod should not be changed if the feature is enabled, or if the old pod had ProcMount
    						if !reflect.DeepEqual(newPod, newPodInfo.pod()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    //go:nosplit
    func exitsyscallfast(oldp *p) bool {
    	// Freezetheworld sets stopwait but does not retake P's.
    	if sched.stopwait == freezeStopWait {
    		return false
    	}
    
    	// Try to re-acquire the last P.
    	trace := traceAcquire()
    	if oldp != nil && oldp.status == _Psyscall && atomic.Cas(&oldp.status, _Psyscall, _Pidle) {
    		// There's a cpu for us, so we can run.
    		wirep(oldp)
    		exitsyscallfast_reacquired(trace)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    					Labels: map[string]string{
    						v1.LabelHostname:                "old-hostname",
    						v1.LabelTopologyZone:            "old-zone-failure-domain",
    						v1.LabelTopologyRegion:          "old-zone-region",
    						v1.LabelFailureDomainBetaZone:   "old-zone-failure-domain",
    						v1.LabelFailureDomainBetaRegion: "old-zone-region",
    						v1.LabelInstanceTypeStable:      "old-instance-type",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    func TestNumberConversion(t *testing.T) {
    	testcases := map[string]struct {
    		Old            string
    		New            string
    		ExpectedPatch  string
    		ExpectedResult string
    	}{
    		"empty": {
    			Old:            `{}`,
    			New:            `{}`,
    			ExpectedPatch:  `{}`,
    			ExpectedResult: `{}`,
    		},
    		"int32 medium": {
    			Old:            `{"int32":1000000}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

        - [DELETE operation in REST API](#delete-operation-in-rest-api)
      - [Action Required Before Upgrading](#action-required-before-upgrading)
    - [optionally, remove the old secret](#optionally-remove-the-old-secret)
      - [Previous Releases Included in v1.4.0](#previous-releases-included-in-v140)
    - [v1.4.0-beta.11](#v140-beta11)
      - [Downloads](#downloads-6)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // source directories corresponding to the import paths:
    //
    //	_obj/            old object directory, left from Makefiles
    //	_test/           old test directory, left from Makefiles
    //	_testmain.go     old gotest file, left from Makefiles
    //	test.out         old test log, left from Makefiles
    //	build.out        old test log, left from Makefiles
    //	*.[568ao]        object files, left from Makefiles
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    		// old status from apiserver.
    		{
    			containers: []v1.Container{{Name: "without-old-record"}, {Name: "with-old-record"}},
    			statuses:   []*kubecontainer.Status{},
    			reasons:    map[string]error{},
    			oldStatuses: []v1.ContainerStatus{{
    				Name:                 "with-old-record",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    up his head--Brandy now--Don't choke him--How was it, old fellow?
    What happened to you?  Tell us all about it!'
    
      Last came a little feeble, squeaking voice, (`That's Bill,'
    thought Alice,) `Well, I hardly know--No more, thank ye; I'm
    better now--but I'm a deal too flustered to tell you--all I know
    is, something comes at me like a Jack-in-the-box, and up I goes
    like a sky-rocket!'
    
      `So you did, old fellow!' said the others.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top