Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DeepDerivative (0.42 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	}
    	testCheckResultFunc(t, tooOldWatcher, func(actualEvent watch.Event) {
    		expectNoDiff(t, "incorrect event type", watch.Error, actualEvent.Type)
    		if !apiequality.Semantic.DeepDerivative(&expiredError, actualEvent.Object) && !apiequality.Semantic.DeepDerivative(&internalError, actualEvent.Object) {
    			t.Errorf("expected: %#v; got %#v", &expiredError, actualEvent.Object)
    		}
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils_test.go

    			var actualPod = &v1.Pod{}
    			err = json.Unmarshal([]byte(fakeHandler.RequestBody), actualPod)
    			assert.NoError(t, err, "unexpected error: %v", err)
    			assert.True(t, apiequality.Semantic.DeepDerivative(test.wantPod, actualPod),
    				"Body: %s", fakeHandler.RequestBody)
    		})
    	}
    }
    
    func TestDeletePodsAllowsMissing(t *testing.T) {
    	fakeClient := fake.NewSimpleClientset()
    	podControl := RealPodControl{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set_test.go

    		if !exists || err != nil {
    			t.Errorf("Expected to find replica set under key %v", key)
    		}
    		rsSpec := *obj.(*apps.ReplicaSet)
    		if !apiequality.Semantic.DeepDerivative(rsSpec, testRSSpec) {
    			t.Errorf("Expected %#v, but got %#v", testRSSpec, rsSpec)
    		}
    		close(received)
    		return nil
    	}
    	// Start only the ReplicaSet watcher and the workqueue, send a watch event,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			}
    
    			list, err := registry.ListPredicate(ctx, item.m, nil)
    			if err != nil {
    				t.Fatalf("Unexpected error %v", err)
    			}
    
    			// DeepDerivative e,a is needed here b/c the storage layer sets ResourceVersion
    			if e, a := item.out, list; !apiequality.Semantic.DeepDerivative(e, a) {
    				t.Fatalf("%v: Expected %#v, got %#v", name, e, a)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    					break
    				}
    				if e, a := tt.expectedEvent.Type, event.Type; e != a {
    					t.Errorf("Expected: %s, got: %s", e, a)
    				}
    				if e, a := tt.expectedEvent.Object, event.Object; !apiequality.Semantic.DeepDerivative(e, a) {
    					t.Errorf("Expected: %#v, got: %#v", e, a)
    				}
    			case <-time.After(1 * time.Second):
    				// the watch was established otherwise
    				// we would be blocking on cache.Watch(...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    		}
    		job, err := manager.jobLister.Jobs(ns).Get(name)
    		if err != nil || job == nil {
    			t.Errorf("Expected to find job under key %v: %v", key, err)
    			return nil
    		}
    		if !apiequality.Semantic.DeepDerivative(*job, testJob) {
    			t.Errorf("Expected %#v, but got %#v", testJob, *job)
    		}
    		return nil
    	}
    	// Start only the job watcher and the workqueue, send a watch event,
    	// and make sure it hits the sync method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top