Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 5,567 for basic (0.05 sec)

  1. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            }
        }
    
        /**
         * Check if a connection is unhealthy using comprehensive checks
         */
        private boolean isConnectionUnhealthy(SmbTransportImpl transport) {
            try {
                // Basic disconnection check
                if (transport.isDisconnected()) {
                    return true;
                }
    
                // Check if transport is failed
                if (transport.isFailed()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java

                assertTrue(length > 0);
                verify(mockDigest).sign(eq(buffer), eq(0), eq(length), eq(testBlock), any());
            }
    
            @Test
            @DisplayName("Test decode basic message")
            void testDecodeBasicMessage() throws SMBProtocolDecodingException {
                byte[] buffer = new byte[1024];
                System.arraycopy(SMBUtil.SMB_HEADER, 0, buffer, 0, SMBUtil.SMB_HEADER.length);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  3. docs/en/data/external_links.yml

    the-fastapi-python-framework-2n10 title: Introduction to the fastapi python framework - author: Nils de Bruin author_link: https://medium.com/@nilsdebruin link: https://medium.com/data-rebels/fastapi-how-to-add-basic-and-cookie-authentication-a45c85ef47d3 title: FastAPI — How to add basic and cookie authentication - author: Nils de Bruin author_link: https://medium.com/@nilsdebruin link: https://medium.com/data-rebels/fastapi-google-as-an-external-authentication-provider-3a527672cf33 title: FastAPI...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 23K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

                return instanceCount;
            }
    
            public static void resetInstanceCount() {
                instanceCount = 0;
            }
        }
    
        /**
         * Test basic object creation
         */
        public void test_create_basic() throws Exception {
            factory.setComponentName("testComponent");
    
            TestComponent component = factory.create();
            assertNotNull(component);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

        }
    
        /**
         * Creates a string buffer for logging statistics information.
         *
         * @param keyObj the crawler object
         * @param time the timestamp to include
         * @return a StringBuilder with basic log information
         */
        private StringBuilder createStringBuffer(final Object keyObj, final long time) {
            final StringBuilder buf = new StringBuilder(1000);
            buf.append("url:").append(getUrl(keyObj));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  6. docs/pt/docs/features.md

    ### Segurança e autenticação
    
    Segurança e autenticação integradas. Sem nenhum compromisso com bancos de dados ou modelos de dados.
    
    Todos os esquemas de seguranças definidos no OpenAPI, incluindo:
    
    * HTTP Basic.
    * **OAuth2** (também com **tokens JWT**). Confira o tutorial em [OAuth2 com JWT](tutorial/security/oauth2-jwt.md){.internal-link target=_blank}.
    * Chaves de API em:
        * Headers.
        * parâmetros da Query.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. docs/security/README.md

                        | object_metadata_1 |               | object_metadata_2 |
                        +-------------------+               +-------------------+
    ```
    
    #### Key rotation - Basic Operation
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Feb 26 09:25:50 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/dcerpc/DcerpcBindTest.java

                    defaultBind.encode_in(mockBuffer);
                }, "Should throw NullPointerException with default constructor values");
            }
    
            @Test
            @DisplayName("encode_in should write basic buffer operations")
            void testEncodeInBasicOperations() throws Exception {
                // Given
                int maxXmit = 1024;
                int maxRecv = 2048;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

            request.setRequestURI("/api");
            assertFalse(manager.matches(request));
        }
    
        public void test_process_basicExecution() throws IOException, ServletException {
            // Test basic process execution
            TestWebApiManager manager = new TestWebApiManager("/api");
    
            TestHttpServletRequest request = new TestHttpServletRequest();
            request.setRequestURI("/api/test");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  10. docs/smb3-features/04-directory-leasing-design.md

        
        // READ_CACHING for directories means:
        // - Can cache directory enumeration results
        // - Can cache file existence queries
        // - Can cache basic file attributes
        
        // HANDLE_CACHING for directories means:
        // - Can keep directory handle open
        // - Can cache subdirectory handles
        
        // WRITE_CACHING for directories means:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
Back to top