Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,040 for userTime (0.36 sec)

  1. tests/test_tutorial/test_response_model/test_tutorial003_py310.py

                        "required": IsOneOf(
                            ["username", "email", "full_name"],
                            # TODO: remove when deprecating Pydantic v1
                            ["username", "email"],
                        ),
                        "type": "object",
                        "properties": {
                            "username": {"title": "Username", "type": "string"},
                            "email": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 04 20:47:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/net/smtp/auth.go

    }
    
    type plainAuth struct {
    	identity, username, password string
    	host                         string
    }
    
    // PlainAuth returns an [Auth] that implements the PLAIN authentication
    // mechanism as defined in RFC 4616. The returned Auth uses the given
    // username and password to authenticate to host and act as identity.
    // Usually identity should be the empty string, to act as username.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/repository/Proxy.java

        }
    
        /**
         * Get the proxy username.
         *
         * @return username for the proxy server
         */
        public String getUserName() {
            return userName;
        }
    
        /**
         * Set the proxy username.
         *
         * @param userName username for the proxy server
         */
        public void setUserName(String userName) {
            this.userName = userName;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. cluster/gce/windows/testonly/user-profile.psm1

            {
                $staus = "$username Not Found"
                write-verbose "$username creation result: $result"
            }
           elseif($result -eq 0)
           {
               $status = "$username Profile has been created"
               write-verbose "$username Creation Result: $result"
           }
           else
           {
              $status = "$UserName unknown return result: $result"
           }
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    func MatchesUsername(namespace, name string, username string) bool {
    	if !strings.HasPrefix(username, ServiceAccountUsernamePrefix) {
    		return false
    	}
    	username = username[len(ServiceAccountUsernamePrefix):]
    
    	if !strings.HasPrefix(username, namespace) {
    		return false
    	}
    	username = username[len(namespace):]
    
    	if !strings.HasPrefix(username, ServiceAccountUsernameSeparator) {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

        private final String username;
    
        public SpnegoCredential(final String username) {
            this.username = username;
        }
    
        @Override
        public String getUserId() {
            return username;
        }
    
        @Override
        public String toString() {
            return "{" + username + "}";
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_security/test_tutorial005_an_py310.py

                        "required": IsOneOf(
                            ["username", "email", "full_name", "disabled"],
                            # TODO: remove when deprecating Pydantic v1
                            ["username"],
                        ),
                        "type": "object",
                        "properties": {
                            "username": {"title": "Username", "type": "string"},
                            "email": IsDict(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			in:                            api.ClaimMappings{Username: api.PrefixedClaimOrExpression{}},
    			structuredAuthnFeatureEnabled: true,
    			want:                          "issuer.claimMappings.username: Required value: claim or expression is required",
    		},
    		{
    			name: "username prefix set when expression is set",
    			in: api.ClaimMappings{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  9. tests/test_security_oauth2_optional.py

            }
        },
        auto_error=False,
    )
    
    
    class User(BaseModel):
        username: str
    
    
    def get_current_user(oauth_header: Optional[str] = Security(reusable_oauth2)):
        if oauth_header is None:
            return None
        user = User(username=oauth_header)
        return user
    
    
    @app.post("/login")
    def login(form_data: OAuth2PasswordRequestFormStrict = Depends()):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. docs_src/bigger_applications/app_an_py39/routers/users.py

    
    @router.get("/users/", tags=["users"])
    async def read_users():
        return [{"username": "Rick"}, {"username": "Morty"}]
    
    
    @router.get("/users/me", tags=["users"])
    async def read_user_me():
        return {"username": "fakecurrentuser"}
    
    
    @router.get("/users/{username}", tags=["users"])
    async def read_user(username: str):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 407 bytes
    - Viewed (0)
Back to top