Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 209 for userInfo (0.15 sec)

  1. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

            }
        }
    
        private void addBasicAuthentication(URI address, URLConnection connection) throws IOException {
            String userInfo = calculateUserInfo(address);
            if (userInfo == null) {
                return;
            }
            if (!"https".equals(address.getScheme())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1/generated.proto

    }
    
    // SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.
    message SelfSubjectReviewStatus {
      // User attributes of the user making this request.
      // +optional
      optional UserInfo userInfo = 1;
    }
    
    // TokenRequest requests a token for a given service account.
    message TokenRequest {
      // Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1/types.go

    // SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.
    type SelfSubjectReviewStatus struct {
    	// User attributes of the user making this request.
    	// +optional
    	UserInfo UserInfo `json:"userInfo,omitempty" protobuf:"bytes,1,opt,name=userInfo"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/DefaultHttpBuildCacheServiceFactory.java

            HttpBuildCacheCredentials credentials = new HttpBuildCacheCredentials();
            String userInfo = url.getUserInfo();
            int indexOfSeparator = userInfo.indexOf(':');
            if (indexOfSeparator > -1) {
                String username = userInfo.substring(0, indexOfSeparator);
                String password = userInfo.substring(indexOfSeparator + 1);
                credentials.setUsername(username);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. internal/config/identity/openid/providercfg.go

    	}
    	return p.roleArn.String()
    }
    
    // UserInfo returns claims for authenticated user from userInfo endpoint.
    //
    // Some OIDC implementations such as GitLab do not support
    // claims as part of the normal oauth2 flow, instead rely
    // on service providers making calls to IDP to fetch additional
    // claims available from the UserInfo endpoint
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util_test.go

    			},
    		},
    	}
    
    	for name, test := range tests {
    		t.Run(name, func(t *testing.T) {
    			userInfo := test.info.UserInfo()
    			if !reflect.DeepEqual(userInfo, test.expectedUserInfo) {
    				t.Errorf("expected %#v but got %#v", test.expectedUserInfo, userInfo)
    			}
    		})
    	}
    }
    
    func TestMakeUsername(t *testing.T) {
    
    	testCases := map[string]struct {
    		Namespace   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. pkg/apis/authentication/types.go

    // This type mirrors the authentication.Token interface
    type TokenReviewStatus struct {
    	// Authenticated indicates that the token was associated with a known user.
    	Authenticated bool
    	// User is the UserInfo associated with the provided token.
    	User UserInfo
    	// Audiences are audience identifiers chosen by the authenticator that are
    	// compatible with both the TokenReview and token. An identifier is any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/authentication.k8s.io.v1.SelfSubjectReview.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    status:
      userInfo:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1015 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1.SelfSubjectReview.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    status:
      userInfo:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1015 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1alpha1/generated.proto

    message SelfSubjectReviewStatus {
      // User attributes of the user making this request.
      // +optional
      optional .k8s.io.api.authentication.v1.UserInfo userInfo = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top