Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Userinfo (0.17 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/configureObject/groovy/build.gradle

    class UserInfo {
        String name
        String email
    }
    
    tasks.register('greet') {
        def user = configure(new UserInfo()) {
            name = "Isaac Newton"
            email = "******@****.***"
        }
        doLast {
            println user.name
            println user.email
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 09:57:48 UTC 2024
    - 266 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/configureObject/kotlin/build.gradle.kts

    class UserInfo(
        var name: String? = null,
        var email: String? = null
    )
    
    tasks.register("greet") {
        val user = UserInfo().apply {
            name = "Isaac Newton"
            email = "******@****.***"
        }
        doLast {
            println(user.name)
            println(user.email)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 09:57:48 UTC 2024
    - 285 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/api/admission/v1/types.go

    	// requested. e.g. a patch can result in either a CREATE or UPDATE Operation.
    	Operation Operation `json:"operation" protobuf:"bytes,7,opt,name=operation"`
    	// UserInfo is information about the requesting user
    	UserInfo authenticationv1.UserInfo `json:"userInfo" protobuf:"bytes,8,opt,name=userInfo"`
    	// Object is the object from the incoming request.
    	// +optional
    	Object runtime.RawExtension `json:"object,omitempty" protobuf:"bytes,9,opt,name=object"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    				"request.name == 'fake-name'",
    				"request.namespace == 'fake-namespace'",
    				"request.operation == 'CREATE'",
    				"request.userInfo.username == 'admin'",
    				"request.userInfo.uid == '014fbff9a07c'",
    				"request.userInfo.groups == ['system:authenticated', 'my-admin-group']",
    				"request.userInfo.extra == {'some-key': ['some-value1', 'some-value2']}",
    				"request.dryRun == false",
    				"request.options == {'whatever': 'you want'}",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1.SelfSubjectReview.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "status": {
        "userInfo": {
          "username": "usernameValue",
          "uid": "uidValue",
          "groups": [
            "groupsValue"
          ],
          "extra": {
            "extraKey": [
              "extraValue"
            ]
          }
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top