Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 157 for NamespaceId (0.57 sec)

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

      // +listType=set
      repeated string resources = 3;
    
      // `clusterScope` indicates whether to match requests that do not
      // specify a namespace (which happens either because the resource
      // is not namespaced or the request targets all namespaces).
      // If this field is omitted or false then the `namespaces` field
      // must contain a non-empty list.
      // +optional
      optional bool clusterScope = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

              },
              "scope": {
                "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	name := event.ObjFields["metadata.name"]
    	if len(namespace) > 0 {
    		if len(name) > 0 {
    			// namespaced watchers scoped by name
    			for _, watcher := range c.watchers.allWatchers[namespacedName{namespace: namespace, name: name}] {
    				c.watchersBuffer = append(c.watchersBuffer, watcher)
    			}
    		}
    		// namespaced watchers not scoped by name
    		for _, watcher := range c.watchers.allWatchers[namespacedName{namespace: namespace}] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"namespaced": {
    						SchemaProps: spec.SchemaProps{
    							Description: "namespaced indicates if a resource is namespaced or not.",
    							Default:     false,
    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"group": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // Name is the name of resource being referenced.
      optional string name = 3;
    
      // Namespace that contains the referenced resource. Must be empty
      // for cluster-scoped resources and non-empty for namespaced
      // resources.
      // +optional
      optional string namespace = 4;
    }
    
    // ResourceFilter is a filter for resources from one particular driver.
    message ResourceFilter {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. cmd/config-current.go

    					configLogIf(ctx, fmt.Errorf("Unable to initialize DNS config for %s: %w",
    						globalDomainNames, err))
    				}
    			}
    		}
    	}
    
    	// Bucket federation is 'true' only when IAM assets are not namespaced
    	// per tenant and all tenants interested in globally available users
    	// if namespace was requested such as specifying etcdPathPrefix then
    	// we assume that users are interested in global bucket support
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    	}
    
    	var extraCompilationResults []authenticationcel.CompilationResult
    	seenExtraKeys := sets.NewString()
    
    	for i, mapping := range m.Extra {
    		fldPath := fldPath.Child("extra").Index(i)
    		// Key should be namespaced to the authenticator or authenticator/authorizer pair making use of them.
    		// For instance: "example.org/foo" instead of "foo".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    
    [[configuring-tasks]]
    == Configuring tasks
    
    The syntax for configuring tasks is where the Groovy and Kotlin DSLs start to differ significantly.
    
    .In Kotlin, Tasks are namespaced into the `tasks` container
    ====
    include::sample[dir="snippets/kotlinDsl/configuring-tasks-basics/kotlin",files="build.gradle.kts[tags=namespace]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// Name is the name of resource being referenced.
    	Name string `json:"name" protobuf:"bytes,3,name=name"`
    	// Namespace that contains the referenced resource. Must be empty
    	// for cluster-scoped resources and non-empty for namespaced
    	// resources.
    	// +optional
    	Namespace string `json:"namespace,omitempty" protobuf:"bytes,4,opt,name=namespace"`
    }
    
    // ResourceClaimParametersReference contains enough information to let you
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. pkg/volume/util/util.go

    		}
    	}
    	return true
    }
    
    // SplitUniqueName splits the unique name to plugin name and volume name strings. It expects the uniqueName to follow
    // the format plugin_name/volume_name and the plugin name must be namespaced as described by the plugin interface,
    // i.e. namespace/plugin containing exactly one '/'. This means the unique name will always be in the form of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top