Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for Everything (0.46 sec)

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

    			prefix:      "/pods",
    			pred:        storage.Everything,
    			rv:          "abc",
    			expectError: true,
    		},
    		{
    			name:   "rejects resource version and continue token",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Label:    labels.Everything(),
    				Field:    fields.Everything(),
    				Limit:    1,
    				Continue: secondContinuation,
    			},
    			rv:          "1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                }
            """
    
            given:
            configurationCacheRun(":resolve")
    
            when:
            configurationCacheRun(":resolve")
    
            then: // everything is up-to-date
            configurationCache.assertStateLoaded()
            result.assertTaskOrder(":additionalFile", ":resolve")
            result.assertTaskOrder(":a:producer", ":resolve")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		watchTests: []*testWatchStruct{{basePod, true, watch.Added}},
    		pred:       storage.Everything,
    	}, {
    		name:       "key updated to match predicate",
    		namespace:  fmt.Sprintf("test-ns-2-%t", recursive),
    		watchTests: []*testWatchStruct{{basePod, false, ""}, {basePodAssigned, true, watch.Added}},
    		pred: storage.SelectionPredicate{
    			Label: labels.Everything(),
    			Field: fields.ParseSelectorOrDie("spec.nodeName=bar"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		ResourceVersion: "0",
    		Predicate:       storage.Everything,
    	})
    	if err != nil {
    		t.Errorf("Watch with RV=0 should be served from cache: %v", err)
    	}
    
    	_, err = cacher.Watch(context.TODO(), "pod/ns", storage.ListOptions{
    		ResourceVersion: "",
    		Predicate:       storage.Everything,
    	})
    	if err != nil {
    		t.Errorf("Watch with RV=0 should be served from cache: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. cmd/erasure-healing_test.go

    			Parity: 4,
    		},
    	})
    
    	nDisks := 16
    	fsDirs, err := getRandomDisks(nDisks)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	defer removeRoots(fsDirs)
    
    	// Everything is fine, should return nil
    	objLayer, _, err := initObjectLayer(ctx, mustGetPoolEndpoints(0, fsDirs...))
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	setObjectLayer(objLayer)
    
    	bucket := getRandomBucketName()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/types.go

    	//   ]
    	// }
    	//
    	// See
    	// https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
    	// for more examples of label selectors.
    	//
    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    	NamespaceSelector *metav1.LabelSelector
    	// ObjectSelector decides whether to run the validation based on if the
    	// object has matching labels. objectSelector is evaluated against both
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    	}
    
    	nodeList, err := dsc.nodeLister.List(labels.Everything())
    	if err != nil {
    		return fmt.Errorf("couldn't get list of nodes when syncing daemon set %#v: %v", ds, err)
    	}
    
    	everything := metav1.LabelSelector{}
    	if reflect.DeepEqual(ds.Spec.Selector, &everything) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // }
      //
      // See
      // https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
      // for more examples of label selectors.
      //
      // Default to the empty LabelSelector, which matches everything.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector namespaceSelector = 1;
    
      // ObjectSelector decides whether to run the validation based on if the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // }
      //
      // See
      // https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
      // for more examples of label selectors.
      //
      // Default to the empty LabelSelector, which matches everything.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector namespaceSelector = 1;
    
      // ObjectSelector decides whether to run the validation based on if the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	//   ]
    	// }
    	//
    	// See
    	// https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
    	// for more examples of label selectors.
    	//
    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    	NamespaceSelector *metav1.LabelSelector `json:"namespaceSelector,omitempty" protobuf:"bytes,1,opt,name=namespaceSelector"`
    	// ObjectSelector decides whether to run the validation based on if the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top