Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 169 for userInfo (0.86 sec)

  1. staging/src/k8s.io/api/authentication/v1/zz_generated.deepcopy.go

    			}
    			(*out)[key] = outVal
    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserInfo.
    func (in *UserInfo) DeepCopy() *UserInfo {
    	if in == nil {
    		return nil
    	}
    	out := new(UserInfo)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/authentication/v1beta1/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 k8s.io.api.authentication.v1.UserInfo userInfo = 1;
    }
    
    // TokenReview attempts to authenticate a token to a known user.
    // Note: TokenReview requests may be cached by the webhook token authenticator
    // plugin in the kube-apiserver.
    message TokenReview {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1beta1/generated.pb.go

    var xxx_messageInfo_TokenReviewStatus proto.InternalMessageInfo
    
    func (m *UserInfo) Reset()      { *m = UserInfo{} }
    func (*UserInfo) ProtoMessage() {}
    func (*UserInfo) Descriptor() ([]byte, []int) {
    	return fileDescriptor_fdc2de40fd7f3b21, []int{6}
    }
    func (m *UserInfo) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *UserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. src/net/url/url.go

    }
    
    // User returns a [Userinfo] containing the provided username
    // and no password set.
    func User(username string) *Userinfo {
    	return &Userinfo{username, "", false}
    }
    
    // UserPassword returns a [Userinfo] containing the provided username
    // and password.
    //
    // This functionality should only be used with legacy web sites.
    // RFC 2396 warns that interpreting Userinfo this way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top