Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,040 for userTime (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TestProxyServer.groovy

            portFinder.releasePort(port)
        }
    
        void configureProxy(GradleExecuter executer, String proxyScheme, String userName = null, String password = null) {
            configureProxyHost(executer, proxyScheme)
    
            if (userName) {
                executer.withArgument("-D${proxyScheme}.proxyUser=${userName}")
            }
            if (password) {
                executer.withArgument("-D${proxyScheme}.proxyPassword=${password}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    		s.Review(&review)
    		if s.HTTPStatusCode() < 200 || s.HTTPStatusCode() >= 300 {
    			http.Error(w, "HTTP Error", s.HTTPStatusCode())
    			return
    		}
    		type userInfo struct {
    			Username string              `json:"username"`
    			UID      string              `json:"uid"`
    			Groups   []string            `json:"groups"`
    			Extra    map[string][]string `json:"extra"`
    		}
    		type status struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

            verifyToken(() -> asIndexPage(form));
            final String username = form.username;
            final String password = form.password;
            form.clearSecurityInfo();
            try {
                final HtmlResponse loginRedirect = fessLoginAssist.loginRedirect(new LocalUserCredential(username, password), op -> {}, () -> {
                    activityHelper.login(getUserBean());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_body_multiple_params/test_tutorial003_py310.py

                        },
                    },
                    "User": {
                        "title": "User",
                        "required": ["username"],
                        "type": "object",
                        "properties": {
                            "username": {"title": "Username", "type": "string"},
                            "full_name": IsDict(
                                {
                                    "title": "Full Name",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/PasswordCredentials.java

        @Override
        @Nullable
        String getUsername();
    
        /**
         * Sets the user name to use when authenticating to this repository.
         *
         * @param userName The user name. May be null.
         */
        @Override
        void setUsername(@Nullable String userName);
    
        /**
         * Returns the password to use when authenticating to this repository.
         *
         * @return The password. May be null.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    type ClaimMappings struct {
    	// username represents an option for the username attribute.
    	// The claim's value must be a singular string.
    	// Same as the --oidc-username-claim and --oidc-username-prefix flags.
    	// If username.expression is set, the expression must produce a string value.
    	// If username.expression uses 'claims.email', then 'claims.email_verified' must be used in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/security_context_others_test.go

    			sc: &v1.SecurityContext{
    				RunAsNonRoot: &runAsNonRootTrue,
    			},
    			uid:  &rootUser,
    			fail: true,
    		},
    		{
    			desc: "Fail if image's username is set and RunAsNonRoot is true",
    			sc: &v1.SecurityContext{
    				RunAsNonRoot: &runAsNonRootTrue,
    			},
    			username: "test",
    			fail:     true,
    		},
    		{
    			desc: "Pass if image's user is non-root and RunAsNonRoot is true",
    			sc: &v1.SecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 10:06:54 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. tests/test_security_http_basic_realm_description.py

        return {"username": credentials.username, "password": credentials.password}
    
    
    client = TestClient(app)
    
    
    def test_security_http_basic():
        response = client.get("/users/me", auth=("john", "secret"))
        assert response.status_code == 200, response.text
        assert response.json() == {"username": "john", "password": "secret"}
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. docs_src/response_model/tutorial003_py310.py

    from typing import Any
    
    from fastapi import FastAPI
    from pydantic import BaseModel, EmailStr
    
    app = FastAPI()
    
    
    class UserIn(BaseModel):
        username: str
        password: str
        email: EmailStr
        full_name: str | None = None
    
    
    class UserOut(BaseModel):
        username: str
        email: EmailStr
        full_name: str | None = None
    
    
    @app.post("/user/", response_model=UserOut)
    async def create_user(user: UserIn) -> Any:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 07 13:45:48 UTC 2023
    - 431 bytes
    - Viewed (0)
  10. docker/iptables.yaml

        - libnfnetlink
        - libmnl
        - libgcc
    archs:
      - x86_64
      - aarch64
    paths:
    - path: /run
      type: directory
      permissions: 0o755
    accounts:
      users:
        - username: nonroot
          uid: 65532
        - username: nobody
          uid: 65534
      run-as: 65532
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 541 bytes
    - Viewed (0)
Back to top