Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 243 for authenticated (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/groovy/elasticsearch.authenticated-testclusters.gradle

    Rene Groeschke <******@****.***> 1632137154 +0200
    Created: 2026-04-08 16:19
    - Last Modified: 2021-09-20 11:25
    - 1.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java

        }
    
        /**
         * Redirects an authenticated user to the appropriate admin interface based on their roles.
         * Users with admin roles are redirected to the dashboard, while other users are redirected
         * to their designated admin action class or to the root if no specific action is available.
         *
         * @param user the authenticated user bean containing role information
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 2.6K bytes
    - Click Count (0)
  3. tests/test_security_http_basic_realm_description.py

    
    def test_security_http_basic_no_credentials():
        response = client.get("/users/me")
        assert response.json() == {"detail": "Not authenticated"}
        assert response.status_code == 401, response.text
        assert response.headers["WWW-Authenticate"] == 'Basic realm="simple"'
    
    
    def test_security_http_basic_invalid_credentials():
        response = client.get(
    Created: 2026-04-05 07:19
    - Last Modified: 2026-02-08 10:18
    - 2.9K bytes
    - Click Count (0)
  4. docs_src/authentication_error_status_code/tutorial001_an_py310.py

            return HTTPException(
                status_code=status.HTTP_403_FORBIDDEN, detail="Not authenticated"
            )
    
    
    CredentialsDep = Annotated[HTTPAuthorizationCredentials, Depends(HTTPBearer403())]
    
    
    @app.get("/me")
    def read_me(credentials: CredentialsDep):
    Created: 2026-04-05 07:19
    - Last Modified: 2026-02-12 13:19
    - 618 bytes
    - Click Count (0)
  5. tests/test_security_http_basic_optional.py

            "/users/me", headers={"Authorization": "Basic notabase64token"}
        )
        assert response.status_code == 401, response.text
        assert response.headers["WWW-Authenticate"] == "Basic"
        assert response.json() == {"detail": "Not authenticated"}
    
    
    def test_security_http_basic_non_basic_credentials():
        payload = b64encode(b"johnsecret").decode("ascii")
        auth_header = f"Basic {payload}"
    Created: 2026-04-05 07:19
    - Last Modified: 2026-02-17 09:59
    - 2.7K bytes
    - Click Count (0)
  6. tests/test_security_http_bearer.py

        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    def test_security_http_bearer_incorrect_scheme_credentials():
        response = client.get("/users/me", headers={"Authorization": "Basic notreally"})
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    Created: 2026-04-05 07:19
    - Last Modified: 2026-02-08 10:18
    - 2.3K bytes
    - Click Count (0)
  7. tests/test_security_http_digest_description.py

        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Digest"
    
    
    def test_security_http_digest_incorrect_scheme_credentials():
        response = client.get(
            "/users/me", headers={"Authorization": "Other invalidauthorization"}
        )
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Not authenticated"}
    Created: 2026-04-05 07:19
    - Last Modified: 2026-02-08 10:18
    - 2.5K bytes
    - Click Count (0)
  8. src/main/java/jcifs/pac/kerberos/KerberosCredentials.java

                        serverKey = (KerberosKey) credential;
                    }
                }
            }
    
            return serverKey;
        }
    
        /**
         * Returns the authenticated JAAS Subject.
         *
         * @return the authenticated Subject
         */
        public Subject getSubject() {
            return this.subject;
        }
    
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 3.3K bytes
    - Click Count (0)
  9. tests/test_security_http_bearer_description.py

        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    def test_security_http_bearer_incorrect_scheme_credentials():
        response = client.get("/users/me", headers={"Authorization": "Basic notreally"})
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    Created: 2026-04-05 07:19
    - Last Modified: 2026-02-08 10:18
    - 2.5K bytes
    - Click Count (0)
  10. src/main/java/jcifs/ntlmssp/NtlmFlags.java

         */
        int NTLMSSP_REQUEST_TARGET = 0x00000004;
    
        /**
         * Specifies that communication across the authenticated channel
         * should carry a digital signature (message integrity).
         */
        int NTLMSSP_NEGOTIATE_SIGN = 0x00000010;
    
        /**
         * Specifies that communication across the authenticated channel
         * should be encrypted (message confidentiality).
         */
        int NTLMSSP_NEGOTIATE_SEAL = 0x00000020;
    
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 5.5K bytes
    - Click Count (0)
Back to Top