Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,673 for user4 (0.28 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    		t.Fatal(err)
    	}
    
    	aliceAttr := authorizer.AttributesRecord{User: &user.DefaultInfo{Name: "alice"}, ResourceRequest: true, Namespace: "kittensandponies"}
    	bobAttr := authorizer.AttributesRecord{User: &user.DefaultInfo{Name: "bob"}, ResourceRequest: true, Namespace: "kittensandponies"}
    	aliceRidiculousAttr := authorizer.AttributesRecord{
    		User:            &user.DefaultInfo{Name: "alice"},
    		ResourceRequest: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/manifests.go

    	klog.V(1).Infoln("[control-plane] getting StaticPodSpecs")
    	specs := GetStaticPodSpecs(cfg, endpoint, nil)
    
    	var usersAndGroups *users.UsersAndGroups
    	var err error
    	if features.Enabled(cfg.FeatureGates, features.RootlessControlPlane) {
    		if isDryRun {
    			fmt.Printf("[control-plane] Would create users and groups for %+v to run as non-root\n", componentNames)
    		} else {
    			usersAndGroups, err = staticpodutil.GetUsersAndGroups()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    When the `requested` provider value is:
    
    - `true` -- the user opted in for using the feature
    - `false` -- the user opted out from using the feature
    - `undefined` -- the user neither opted in nor opted out from using the feature
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    	r := &authorizationv1.SubjectAccessReview{}
    	if user := attr.GetUser(); user != nil {
    		r.Spec = authorizationv1.SubjectAccessReviewSpec{
    			User:   user.GetName(),
    			UID:    user.GetUID(),
    			Groups: user.GetGroups(),
    			Extra:  convertToSARExtra(user.GetExtra()),
    		}
    	}
    
    	if attr.IsResourceRequest() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/VfsRelativePath.java

         *
         * E.g.:
         *    'C:/' -> 'C:'
         *    '/home/user/project' -> 'home/user/project'
         *    '/' -> ''
         *    '//uncpath/relative/path' -> 'uncpath/relative/path'
         *    'C:/Users/user/project' -> 'C:/Users/user/project'
         */
        public static VfsRelativePath of(String absolutePath) {
            String normalizedRoot = normalizeRoot(absolutePath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      optional string level = 1;
    
      // The users (by authenticated user name) this rule applies to.
      // An empty list implies every user.
      // +optional
      // +listType=atomic
      repeated string users = 2;
    
      // The user groups this rule applies to. A user is considered matching
      // if it is a member of any of the UserGroups.
      // An empty list implies every user group.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_PolicyRule_To_audit_PolicyRule(in *PolicyRule, out *audit.PolicyRule, s conversion.Scope) error {
    	out.Level = audit.Level(in.Level)
    	out.Users = *(*[]string)(unsafe.Pointer(&in.Users))
    	out.UserGroups = *(*[]string)(unsafe.Pointer(&in.UserGroups))
    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.Resources = *(*[]audit.GroupResources)(unsafe.Pointer(&in.Resources))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 06 19:08:27 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/DefaultGradleRunnerTest.groovy

            createRunner().pluginClasspath << new URI('file:///Users/foo/bar/test.jar')
    
            then:
            thrown(UnsupportedOperationException)
        }
    
        def "creates defensive copy of passed in argument lists"() {
            given:
            def originalArguments = ['arg1', 'arg2']
            def originalJvmArguments = ['arg3', 'arg4']
            def originalClasspath = [new File('/Users/foo/bar/test.jar').absoluteFile]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. pkg/credentialprovider/plugin/plugin_test.go

    				"image1": {
    					Username: "user1",
    					Password: "pass1",
    				},
    			},
    			cacheEntry: cacheEntry{
    				key:       "image1",
    				expiresAt: fakeClock.Now().Add(1 * time.Minute),
    				credentials: map[string]credentialprovider.DockerConfigEntry{
    					"image1": {
    						Username: "user1",
    						Password: "pass1",
    					},
    				},
    			},
    		},
    
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

                "type": "string"
              }
            },
            "type": "object"
          },
          "io.k8s.api.authentication.v1beta1.SelfSubjectReview": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
Back to top