Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for Matcher (0.15 sec)

  1. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				TpPairToMatchNum: map[topologyPair]int{
    					{key: "zone", value: "zone1"}: 0,
    					{key: "zone", value: "zone2"}: 0,
    				},
    			},
    			enableMatchLabelKeys: true,
    		},
    		{
    			name: "no pod is matched when LabelSelector is nil when feature gate disabled",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, nil, nil, nil, nil, []string{"bar"}).
    				Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			// To avoid rewriting all tests, we wait for watchcache to initialize.
    			if err := cacher.Wait(context.Background()); err != nil {
    				t.Fatal(err)
    			}
    		}
    		d := destroyFunc
    		s = cacher
    		destroyFunc = func() {
    			cacher.Stop()
    			d()
    		}
    	}
    
    	return destroyFunc, &Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	podCache kubecontainer.Cache
    
    	// os is a facade for various syscalls that need to be mocked during testing.
    	os kubecontainer.OSInterface
    
    	// Watcher of out of memory events.
    	oomWatcher oomwatcher.Watcher
    
    	// Monitor resource usage
    	resourceAnalyzer serverstats.ResourceAnalyzer
    
    	// Whether or not we should have the QOS cgroup hierarchy for resource management
    	cgroupsPerQOS bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

              },
              "resourceRules": {
                "description": "ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches. The policy cares about an operation if it matches _any_ Rule.",
                "items": {
                  "allOf": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // the corresponding parts of a request case-sensitively.
    //
    // A pattern with no method matches every method. A pattern
    // with the method GET matches both GET and HEAD requests.
    // Otherwise, the method must match exactly.
    //
    // A pattern with no host matches every host.
    // A pattern with a host matches URLs on that host only.
    //
    // A path can include wildcard segments of the form {NAME} or {NAME...}.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    			Number:   7443,
    			Name:     "grpc-core",
    			Protocol: "GRPC",
    		},
    	}
    	svc := findOrCreateService(instances, ingress, "sidecar", "sidecarns")
    	if svc == nil || svc.Hostname.Matches("sidecar.sidecarns") {
    		t.Fatal("Expected to return a valid instance, but got nil/default instance")
    	}
    	if !reflect.DeepEqual(svc, service) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * the original {@code ClosingFuture} instance.
       *
       * @param exceptionType the exception type that triggers use of {@code fallback}. The exception
       *     type is matched against this step's exception. "This step's exception" means the cause of
       *     the {@link ExecutionException} thrown by {@link Future#get()} on the {@link Future}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_OperandHasAtleastRank<0, 2>,
        PredOpTrait<"input and result must have the same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        Pure]> {
      let summary = [{
        Returns a batched matrix tensor with new batched diagonal values.
      }];
    
      let description = [{
    Given `input` and `diagonal`, this operation returns a tensor with the
    same shape and values as `input`, except for the main diagonal of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * the original {@code ClosingFuture} instance.
       *
       * @param exceptionType the exception type that triggers use of {@code fallback}. The exception
       *     type is matched against this step's exception. "This step's exception" means the cause of
       *     the {@link ExecutionException} thrown by {@link Future#get()} on the {@link Future}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

       * of reads may not be immediately reflected on the algorithm's data structures. These structures
       * are guarded by a lock and operations are applied in batches to avoid lock contention. The
       * penalty of applying the batches is spread across threads so that the amortized cost is slightly
       * higher than performing just the operation without enforcing the capacity constraint.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top