Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 104 for NamespaceId (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	original := &unstructured.Unstructured{
    		Object: map[string]interface{}{
    			"apiVersion": "mygroup.example.com/v1beta1",
    			"kind":       "Noxu",
    			"metadata": map[string]interface{}{
    				"namespace": "Namespaced",
    				"name":      "foo",
    			},
    			"spec": map[string]interface{}{
    				"num": "10",
    			},
    		},
    	}
    	patch := `{"spec":{"num":"20"}}`
    	expectedError := "strategic merge patch format is not supported"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    	namespacedAddEvent := 0
    	for namespacedAddEvent < 2 {
    		select {
    		case watchEvent := <-namespacedwatch.ResultChan():
    			// Check that the namespaced watch only has one result
    			if namespacedAddEvent > 0 {
    				t.Fatalf("extra watch event")
    			}
    			if e, a := watch.Added, watchEvent.Type; e != a {
    				t.Fatalf("expected %v, got %v", e, a)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    const (
    	// ClusterScope means that scope is limited to cluster-scoped objects.
    	// Namespace objects are cluster-scoped.
    	ClusterScope ScopeType = v1.ClusterScope
    	// NamespacedScope means that scope is limited to namespaced objects.
    	NamespacedScope ScopeType = v1.NamespacedScope
    	// AllScopes means that all scopes are included.
    	AllScopes ScopeType = v1.AllScopes
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    	uid := string(pod.UID)
    	if len(uid) == 0 {
    		return "", errors.New("cannot get cache key for pod with empty UID")
    	}
    	return uid, nil
    }
    
    // GetNamespacedName returns the string format of a namespaced resource name.
    func GetNamespacedName(namespace, name string) string {
    	return fmt.Sprintf("%s/%s", namespace, name)
    }
    
    // DefaultBindAllHostIP defines the default ip address used to bind to all host.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/interface.go

    var PodsToActivateKey StateKey = "kubernetes.io/pods-to-activate"
    
    // PodsToActivate stores pods to be activated.
    type PodsToActivate struct {
    	sync.Mutex
    	// Map is keyed with namespaced pod name, and valued with the pod.
    	Map map[string]*v1.Pod
    }
    
    // Clone just returns the same state.
    func (s *PodsToActivate) Clone() StateData {
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    	// before any New* calls are made - implementations of plugins may
    	// depend on this.
    	Init(host VolumeHost) error
    
    	// Name returns the plugin's name.  Plugins must use namespaced names
    	// such as "example.com/volume" and contain exactly one '/' character.
    	// The "kubernetes.io" namespace is reserved for plugins which are
    	// bundled with kubernetes.
    	GetPluginName() string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top