Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 118 for flows (0.01 sec)

  1. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpSession;
    
    /**
     * Microsoft Entra ID SSO authenticator implementation.
     * Handles OAuth2/OpenID Connect authentication flow with Entra ID.
     */
    public class EntraIdAuthenticator implements SsoAuthenticator {
    
        private static final Logger logger = LogManager.getLogger(EntraIdAuthenticator.class);
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

    
    ## Version 3.14.3
    
    _2019-09-10_
    
     *  Fix: Don't lose HTTP/2 flow control bytes when incoming data races with a stream close. If this
        happened enough then eventually the connection would stall.
    
     *  Fix: Acknowledge and apply inbound HTTP/2 settings atomically. Previously we had a race where we
        could use new flow control capacity before acknowledging it, causing strict HTTP/2 servers to
        fail the call.
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. docs/de/docs/_llm-test.md

    * Deep Learning
    * Machine Learning
    * Dependency Injection
    * HTTP Basic-Authentifizierung
    * HTTP Digest
    * ISO-Format
    * der JSON-Schema-Standard
    * das JSON-Schema
    * die Schema-Definition
    * Password Flow
    * Mobile
    
    * deprecatet
    * designt
    * ungültig
    * on the fly
    * Standard
    * Default
    * Groß-/Klein­schrei­bung ist relevant
    * Groß-/Klein­schrei­bung ist nicht relevant
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 07:17:04 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java

            assertDoesNotThrow(() -> spiedConnection.getInputStream());
        }
    
        /**
         * Test a successful NTLM authentication handshake.
         * This is a simplified test that verifies the basic flow without full NTLM protocol simulation.
         * @throws IOException
         * @throws SecurityException
         */
        @Test
        void testSuccessfulHandshake() throws IOException, SecurityException {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/info/Smb2SetInfoRequestTest.java

            // This method should always return 0 as the request doesn't read responses
            assertEquals(0, bytesRead);
        }
    
        @Test
        @DisplayName("Test complete flow with all setters")
        void testCompleteFlow() {
            request = new Smb2SetInfoRequest(mockConfig);
    
            // Set all fields
            byte[] newFileId = new byte[16];
            for (int i = 0; i < 16; i++) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/security/first-steps.md

    Pode ser usada por aplicações e sistemas de terceiros.
    
    E também pode ser usada por você mesmo, para depurar, verificar e testar a mesma aplicação.
    
    ## O fluxo de `password` { #the-password-flow }
    
    Agora vamos voltar um pouco e entender o que é isso tudo.
    
    O "fluxo" `password` é uma das formas ("fluxos") definidas no OAuth2 para lidar com segurança e autenticação.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/security/first-steps.md

    Puede ser utilizada por aplicaciones y sistemas de terceros.
    
    Y también puede ser utilizada por ti mismo, para depurar, revisar y probar la misma aplicación.
    
    ## El flujo `password` { #the-password-flow }
    
    Ahora retrocedamos un poco y entendamos qué es todo eso.
    
    El "flujo" `password` es una de las formas ("flujos") definidas en OAuth2, para manejar la seguridad y la autenticación.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/DirFileEntryEnumIterator2Test.java

            f.setAccessible(true);
            f.set(resp, results);
        }
    
        /**
         * Reflectively set the 'status' on a SMB2 response to drive control flow.
         */
        private static void setStatus(jcifs.internal.smb2.ServerMessageBlock2Response resp, int status) throws Exception {
            Field f = jcifs.internal.smb2.ServerMessageBlock2.class.getDeclaredField("status");
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/security/simple-oauth2.md

    ## Получение `username` и `password` { #get-the-username-and-password }
    
    Для получения `username` и `password` мы будем использовать утилиты безопасности **FastAPI**.
    
    OAuth2 определяет, что при использовании "password flow" (аутентификация по паролю - именно его мы используем) клиент/пользователь должен передавать поля `username` и `password` в полях формы.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 11:24:39 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  10. internal/grid/handlers.go

    	// StatelessHandler is handlers for one to many requests,
    	// where responses may be dropped.
    	// Stateless requests provide no incoming stream and there is no flow control
    	// on outgoing messages.
    	StatelessHandler struct {
    		Handle StatelessHandlerFn
    		// OutCapacity is the output capacity on the caller.
    		// If <= 0 capacity will be 1.
    		OutCapacity int
    	}
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Feb 18 16:25:55 UTC 2025
    - 27.7K bytes
    - Viewed (0)
Back to top