Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 983 for patching (0.13 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/generated.proto

      // `resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the
      // target resource.
      // At least one of `resourceRules` and `nonResourceRules` has to be non-empty.
      // +listType=atomic
      // +optional
      repeated ResourcePolicyRule resourceRules = 2;
    
      // `nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // `resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the
      // target resource.
      // At least one of `resourceRules` and `nonResourceRules` has to be non-empty.
      // +listType=atomic
      // +optional
      repeated ResourcePolicyRule resourceRules = 2;
    
      // `nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    	"verbs":        "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.",
    	"apiGroups":    "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    	"verbs":        "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.",
    	"apiGroups":    "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. cmd/admin-handlers-pools.go

    			var err error
    			idx, err = strconv.Atoi(pool)
    			if err != nil {
    				// We didn't find any matching pools, invalid input
    				writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errInvalidArgument), r.URL)
    				return
    			}
    		} else {
    			idx = globalEndpoints.GetPoolIdx(pool)
    			if idx == -1 {
    				// We didn't find any matching pools, invalid input
    				writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errInvalidArgument), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    	if err != nil {
    		return framework.Queue, err
    	}
    
    	// Pod is updated. Return Queue when the updated pod matching the target pod's affinity or not matching anti-affinity.
    	// Note that, we don't need to check each affinity individually when the Pod has more than one affinity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. pkg/controller/resourcequota/resource_quota_controller_test.go

    		items             []runtime.Object
    		quota             v1.ResourceQuota
    		status            v1.ResourceQuotaStatus
    		expectedError     string
    		expectedActionSet sets.String
    	}{
    		"non-matching-best-effort-scoped-quota": {
    			gvr: v1.SchemeGroupVersion.WithResource("pods"),
    			quota: v1.ResourceQuota{
    				ObjectMeta: metav1.ObjectMeta{Name: "quota", Namespace: "testing"},
    				Spec: v1.ResourceQuotaSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util_test.go

    		locality *core.Locality
    		rule     string
    		match    bool
    	}{
    		{
    			name: "wildcard matching",
    			locality: &core.Locality{
    				Region:  "region1",
    				Zone:    "zone1",
    				SubZone: "subzone1",
    			},
    			rule:  "*",
    			match: true,
    		},
    		{
    			name: "wildcard matching",
    			locality: &core.Locality{
    				Region:  "region1",
    				Zone:    "zone1",
    				SubZone: "subzone1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdater.java

                    }
                }
            });
    
            LOGGER.debug("Watching {} directories to track changes", watchedDirectories.entrySet().size());
    
            try {
                if (!directoriesToStopWatching.isEmpty()) {
                    if (!fileWatcher.stopWatching(directoriesToStopWatching)) {
                        LOGGER.debug("Couldn't stop watching directories: {}", directoriesToStopWatching);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 04:59:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.proto

        // For instance, with `[NETWORK, REGION, ZONE]`, we will send to:
        // 1. Endpoints matching `[NETWORK, REGION, ZONE]`
        // 2. Endpoints matching `[NETWORK, REGION]`
        // 3. Endpoints matching `[NETWORK]`
        // 4. Any endpoints
        FAILOVER = 2;
      }
    
      // routing_preference defines what scopes we want to keep traffic within.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top