Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,424 for pubdate (0.16 sec)

  1. pkg/registry/flowcontrol/ensurer/flowschema_test.go

    		},
    		{
    			name:              "auto update is enabled, first generation, spec matches - no update expected",
    			current:           newFlowSchema("fs1", "pl1", 100).WithAutoUpdateAnnotation("true").WithGeneration(1).Object(),
    			bootstrap:         newFlowSchema("fs1", "pl1", 100).Object(),
    			newObjectExpected: nil,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	update := gottenObj.(*unstructured.Unstructured)
    	updateContent := update.Object
    	updateContent["status"] = map[string]interface{}{
    		"replicas": int64(7),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclaim_test.go

    	scenarios := map[string]struct {
    		oldClaim     *resource.ResourceClaim
    		update       func(claim *resource.ResourceClaim) *resource.ResourceClaim
    		wantFailures field.ErrorList
    	}{
    		"valid-no-op-update": {
    			oldClaim: validClaim,
    			update:   func(claim *resource.ResourceClaim) *resource.ResourceClaim { return claim },
    		},
    		"invalid-update-class": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. pkg/kubelet/config/config_test.go

    	for i := range expected {
    		update := <-ch
    		sort.Sort(sortedPods(update.Pods))
    		sort.Sort(sortedPods(expected[i].Pods))
    		// Make copies of the expected/actual update to compare all fields
    		// except for "Pods", which are compared separately below.
    		expectedCopy, updateCopy := expected[i], update
    		expectedCopy.Pods, updateCopy.Pods = nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/clusterrole.yaml

        verbs: ["update"]
        # TODO: should be on just */status but wildcard is not supported
        resources: ["*"]
    
      # Needed because status reporter sets the config map owner reference to the istiod pod
      - apiGroups: [""]
        verbs: ["update"]
        resources: ["pods/finalizers"]
    {{- end }}
      - apiGroups: ["networking.istio.io"]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. pkg/kube/multicluster/secretcontroller_test.go

    			update: secret0AddCluster,
    			want:   []result{{"config", 1}, {"c0", 3}, {"c0-1", 4}},
    		},
    		{
    			name: "Update secret s0 and delete cluster c0-1 but keep the kubeconfig of cluster c0 unchanged, " +
    				"which will delete remote cluster c0-1 but will not update remote cluster c0",
    			update: secret0DeleteCluster,
    			want:   []result{{"config", 1}, {"c0", 3}},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. pkg/registry/storage/csistoragecapacity/strategy_test.go

    		name        string
    		expectError bool
    		old, update *storage.CSIStorageCapacity
    	}{
    		{
    			name:   "before: no capacity, update: 1Gi capacity",
    			old:    getValidCSIStorageCapacity("test", ""),
    			update: getValidCSIStorageCapacity("test", "1Gi"),
    		},
    		{
    			name:   "before: 1Gi capacity, update: no capacity",
    			old:    getValidCSIStorageCapacity("test", "1Gi"),
    			update: getValidCSIStorageCapacity("test", ""),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    	badName := "!@#$%^"
    
    	scenarios := map[string]struct {
    		oldScheduling *resource.PodSchedulingContext
    		update        func(schedulingCtx *resource.PodSchedulingContext) *resource.PodSchedulingContext
    		wantFailures  field.ErrorList
    	}{
    		"valid-no-op-update": {
    			oldScheduling: validScheduling,
    			update: func(schedulingCtx *resource.PodSchedulingContext) *resource.PodSchedulingContext {
    				return schedulingCtx
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ObjectHolder.java

         *
         * An exclusive lock is held while the update action is executing.
         * The result of the update is returned.
         */
        T update(UpdateAction<T> updateAction);
    
        interface UpdateAction<T> {
            T update(T oldValue);
        }
    
        /**
         * Potentially replaces the value for this cache
         *
         * The value returned by the update action will only be written to the cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/results/results_manager_test.go

    		case u := <-m.Updates():
    			t.Errorf("Unexpected update %v: %s", u, msg)
    		default:
    			// Pass
    		}
    	}
    
    	// New result should always push an update.
    	m.Set(fooID, Success, pod)
    	expectUpdate(Update{fooID, Success, pod.UID}, "new success")
    
    	m.Set(barID, Failure, pod)
    	expectUpdate(Update{barID, Failure, pod.UID}, "new failure")
    
    	// Unchanged results should not send an update.
    	m.Set(fooID, Success, pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 02 10:55:41 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top