Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NodeIdentifier (0.16 sec)

  1. plugin/pkg/admission/noderestriction/admission.go

    func NewPlugin(nodeIdentifier nodeidentifier.NodeIdentifier) *Plugin {
    	return &Plugin{
    		Handler:        admission.NewHandler(admission.Create, admission.Update, admission.Delete),
    		nodeIdentifier: nodeIdentifier,
    	}
    }
    
    // Plugin holds state for and implements the admission plugin.
    type Plugin struct {
    	*admission.Handler
    	nodeIdentifier nodeidentifier.NodeIdentifier
    	podsGetter     corev1lister.PodLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	graph      *Graph
    	identifier nodeidentifier.NodeIdentifier
    	nodeRules  []rbacv1.PolicyRule
    
    	// allows overriding for testing
    	features featuregate.FeatureGate
    }
    
    var _ = authorizer.Authorizer(&NodeAuthorizer{})
    var _ = authorizer.RuleResolver(&NodeAuthorizer{})
    
    // NewAuthorizer returns a new node authorizer
    func NewAuthorizer(graph *Graph, identifier nodeidentifier.NodeIdentifier, rules []rbacv1.PolicyRule) *NodeAuthorizer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

    import org.gradle.api.internal.artifacts.ComponentSelectorConverter;
    import org.gradle.api.internal.artifacts.ComponentVariantNodeIdentifier;
    import org.gradle.api.internal.artifacts.NodeIdentifier;
    import org.gradle.api.internal.artifacts.ResolvedVersionConstraint;
    import org.gradle.api.internal.artifacts.configurations.ConflictResolution;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/component-base/featuregate"
    	"k8s.io/kubernetes/pkg/auth/nodeidentifier"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac/bootstrappolicy"
    )
    
    func TestAuthorizer(t *testing.T) {
    	g := NewGraph()
    
    	opts := &sampleDataOpts{
    		nodes:                              2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  5. src/text/template/parse/node.go

    	nodeElse                       // An else action. Not added to tree.
    	nodeEnd                        // An end action. Not added to tree.
    	NodeField                      // A field or method name.
    	NodeIdentifier                 // An identifier; always a function name.
    	NodeIf                         // An if action.
    	NodeList                       // A list of Nodes.
    	NodeNil                        // An untyped nil constant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top