Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for Userinfo (0.13 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1.AdmissionReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.yaml

        version: versionValue
      requestSubResource: requestSubResourceValue
      resource:
        group: groupValue
        resource: resourceValue
        version: versionValue
      subResource: subResourceValue
      uid: uidValue
      userInfo:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
        username: usernameValue
    response:
      allowed: true
      auditAnnotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1.AdmissionReview.yaml

        version: versionValue
      requestSubResource: requestSubResourceValue
      resource:
        group: groupValue
        resource: resourceValue
        version: versionValue
      subResource: subResourceValue
      uid: uidValue
      userInfo:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
        username: usernameValue
    response:
      allowed: true
      auditAnnotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

    import com.jcraft.jsch.HostKey;
    import com.jcraft.jsch.HostKeyRepository;
    import com.jcraft.jsch.JSch;
    import com.jcraft.jsch.JSchException;
    import com.jcraft.jsch.Session;
    import com.jcraft.jsch.UserInfo;
    import org.gradle.api.credentials.PasswordCredentials;
    import org.gradle.api.resources.ResourceException;
    import org.gradle.internal.concurrent.CompositeStoppable;
    import org.gradle.internal.concurrent.Stoppable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. internal/config/identity/openid/jwt.go

    	pCfg, ok := r.arnProviderCfgsMap[arn]
    	// If claim user info is enabled, get claims from userInfo
    	// and overwrite them with the claims from JWT.
    	if ok && pCfg.ClaimUserinfo {
    		if accessToken == "" {
    			return errors.New("access_token is mandatory if user_info claim is enabled")
    		}
    		uclaims, err := pCfg.UserInfo(ctx, accessToken, r.transport)
    		if err != nil {
    			return err
    		}
    		for k, v := range uclaims {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 18:10:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    		)
    
    		userInfo, _ := request.UserFrom(ctx)
    		staticCreateAttributes := admission.NewAttributesRecord(
    			nil,
    			nil,
    			scope.Kind,
    			namespace,
    			name,
    			scope.Resource,
    			scope.Subresource,
    			admission.Create,
    			patchToCreateOptions(options),
    			dryrun.IsDryRun(options.DryRun),
    			userInfo)
    		staticUpdateAttributes := admission.NewAttributesRecord(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    		field("group", apiservercel.StringType, true),
    		field("version", apiservercel.StringType, true),
    		field("resource", apiservercel.StringType, true),
    	))
    	userInfoType := apiservercel.NewObjectType("kubernetes.UserInfo", fields(
    		field("username", apiservercel.StringType, false),
    		field("uid", apiservercel.StringType, false),
    		field("groups", apiservercel.NewListType(apiservercel.StringType, -1), false),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    	)
    	for dID, ss := range us {
    		if lastUpdate.IsZero() {
    			lastUpdate = ss.userInfo.UserInfo.UpdatedAt
    			latestID = dID
    			latestUserStat = ss
    		}
    		if !ss.userInfo.UserInfo.UpdatedAt.IsZero() && ss.userInfo.UserInfo.UpdatedAt.After(lastUpdate) {
    			lastUpdate = ss.userInfo.UserInfo.UpdatedAt
    			latestID = dID
    			latestUserStat = ss
    		}
    	}
    	if latestID != globalDeploymentID() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. src/net/http/clone.go

    // See go.dev/issue/67401.
    //
    //go:linkname cloneURL
    func cloneURL(u *url.URL) *url.URL {
    	if u == nil {
    		return nil
    	}
    	u2 := new(url.URL)
    	*u2 = *u
    	if u.User != nil {
    		u2.User = new(url.Userinfo)
    		*u2.User = *u.User
    	}
    	return u2
    }
    
    // cloneMultipartForm should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top