Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 404 for separator (0.05 sec)

  1. docs/es/docs/environment-variables.md

    El valor de la variable `PATH` es un string largo que consiste en directorios separados por dos puntos `:` en Linux y macOS, y por punto y coma `;` en Windows.
    
    Por ejemplo, la variable de entorno `PATH` podría verse así:
    
    //// tab | Linux, macOS
    
    ```plaintext
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/hash/HashingTest.java

      public void testSeededHashFunctionEquals() throws Exception {
        assertSeededHashFunctionEquals(Hashing.class);
      }
    
      /**
       * Tests equality of {@link Hashing#goodFastHash} instances. This test must be separate from
       * {@link #testSeededHashFunctionEquals} because the parameter to {@code goodFastHash} is a size,
       * not a seed, and because that size is rounded up. Thus, {@code goodFastHash} instances with
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 26.4K bytes
    - Viewed (2)
  3. docs/en/docs/deployment/https.md

    All this renewal process, while still serving the app, is one of the main reasons why you would want to have a **separate system to handle HTTPS** with a TLS Termination Proxy instead of just using the TLS certificates with the application server directly (e.g. Uvicorn).
    
    ## Proxy Forwarded Headers { #proxy-forwarded-headers }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 19:34:08 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  4. LICENSES/third_party/forked/libcontainer/LICENSE

          this License, without any additional terms or conditions.
          Notwithstanding the above, nothing herein shall supersede or modify
          the terms of any separate license agreement you may have executed
          with Licensor regarding such Contributions.
    
       6. Trademarks. This License does not grant permission to use the trade
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Oct 22 13:56:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

                rateLimiter.recordFailure(username, ip);
            }
        }
    
        @Test
        public void testConcurrentAccess() throws Exception {
            // Test thread safety with concurrent access
            // Use a separate rate limiter instance with higher limits for this test
            AuthenticationRateLimiter concurrentLimiter = new AuthenticationRateLimiter(5, // max attempts per account (higher than default 3)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            assertTrue(pattern.contains("token"));
            assertTrue(pattern.contains("secret"));
        }
    
        // Test array field parsing
        public void test_arrayFieldParsing() {
            // Test parsing of comma-separated values
            String[] arrayFields = fessConfig.getIndexAdminArrayFields().split(",");
            assertNotNull(arrayFields);
            assertEquals(2, arrayFields.length);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  7. docs/es/docs/deployment/concepts.md

    ### Programa Separado
    
    Para lograr esto, normalmente tendrás un **programa separado** que se asegurará de que tu aplicación se ejecute al iniciarse. Y en muchos casos, también se asegurará de que otros componentes o aplicaciones se ejecuten, por ejemplo, una base de datos.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/MediaType.java

      /**
       * <a href="http://www.iana.org/assignments/media-types/text/tab-separated-values">Tab separated
       * values</a>.
       *
       * @since 15.0
       */
      public static final MediaType TSV_UTF_8 = createConstantUtf8(TEXT_TYPE, "tab-separated-values");
    
      public static final MediaType VCARD_UTF_8 = createConstantUtf8(TEXT_TYPE, "vcard");
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  9. src/main/java/jcifs/config/BaseConfiguration.java

         */
        protected Integer doGetBatchLimit(final String cmd) {
            return null;
        }
    
        /**
         * Initializes the resolver order for name resolution.
         *
         * @param ro comma-separated list of resolver types (LMHOSTS, WINS, BCAST, DNS)
         */
        protected void initResolverOrder(final String ro) {
            this.resolverOrder = new ArrayList<>();
            if (ro == null || ro.length() == 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java

            Smb2CloseRequest specialNameRequest = new Smb2CloseRequest(mockConfig, testFileId, specialFileName);
            assertEquals(specialFileName, fileNameField.get(specialNameRequest));
    
            // Test with path separators
            String pathFileName = "path/to/file.txt";
            Smb2CloseRequest pathNameRequest = new Smb2CloseRequest(mockConfig, testFileId, pathFileName);
            assertEquals(pathFileName, fileNameField.get(pathNameRequest));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
Back to top