Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 156 for 300s (1.64 sec)

  1. docs/es/docs/tutorial/response-status-code.md

        * Un caso especial es `204`, "No Content". Este response se usa cuando no hay contenido para devolver al cliente, por lo tanto, el response no debe tener un body.
    * **`300`** y superiores son para "Redirección". Los responses con estos códigos de estado pueden o no tener un body, excepto `304`, "Not Modified", que no debe tener uno.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        protected int netbiosRevcBufferSize = 576;
        /** NetBIOS retry count */
        protected int netbiosRetryCount = 2;
        /** NetBIOS retry timeout in milliseconds */
        protected int netbiosRetryTimeout = 3000;
        /** NetBIOS scope identifier */
        protected String netbiosScope;
        /** Local port for NetBIOS communications */
        protected int netbiosLocalPort = 0;
        /** Local address for NetBIOS communications */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            createJob();
            logger.info("Job is created: {}", webConfigId);
            refresh();
    
            startJob(NAME_PREFIX);
    
            waitJob(NAME_PREFIX);
            refresh();
    
            ThreadUtil.sleep(3000);
        }
    
        @BeforeEach
        protected void init() {
            refresh();
        }
    
        @AfterEach
        protected void tearDown() {
        }
    
        @AfterAll
        protected static void tearDownAll() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            execJob.sessionId("complex-session")
                    .logFilePath("/var/log/fess")
                    .logLevel("INFO")
                    .logSuffix("daily job")
                    .timeout(300)
                    .useLocalFesen(false)
                    .lastaEnv("production")
                    .jvmOptions("-Xmx2g", "-Xms1g")
                    .remoteDebug()
                    .gcLogging();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        assertTrue(Sets.intersection(cache.asMap().keySet(), removalNotifications.keySet()).isEmpty());
        threadPool.shutdown();
        threadPool.awaitTermination(300, SECONDS);
      }
    
      /**
       * Calls get() repeatedly from many different threads, and tests that all of the removed entries
       * (removed because of size limits or expiration) trigger appropriate removal notifications.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        assertTrue(Sets.intersection(cache.asMap().keySet(), removalNotifications.keySet()).isEmpty());
        threadPool.shutdown();
        threadPool.awaitTermination(300, SECONDS);
      }
    
      /**
       * Calls get() repeatedly from many different threads, and tests that all of the removed entries
       * (removed because of size limits or expiration) trigger appropriate removal notifications.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java

            int headerStart = 50;
    
            // Set structure size to 9
            SMBUtil.writeInt2(9, buffer, bufferIndex);
            // Set buffer offset (relative to header start)
            SMBUtil.writeInt2(300, buffer, bufferIndex + 2);
            // Set buffer length
            SMBUtil.writeInt4(8, buffer, bufferIndex + 4);
    
            response = spy(response);
            when(response.getHeaderStart()).thenReturn(headerStart);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  8. gradle/libs.versions.toml

    lintGradle = "1.0.0-alpha05"
    mockserverClient = "5.15.0"
    org-bouncycastle = "1.81"
    org-conscrypt = "2.5.2"
    org-jetbrains-coroutines = "1.10.2"
    org-jetbrains-kotlin = "2.2.10"
    org-junit-jupiter = "5.13.4"
    retrofit = "3.0.0"
    startupRuntime = "1.2.0"
    testcontainers = "1.21.3"
    
    [libraries]
    amazonCorretto = "software.amazon.cryptools:AmazonCorrettoCryptoProvider:2.5.0"
    androidx-activity = "androidx.activity:activity-ktx:1.10.1"
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 31 17:41:20 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/util/ResourceManagerTest.java

            resourceManager.registerResource(resource);
    
            assertFalse(resource.isClosed());
    
            // Wait for automatic cleanup to kick in
            Thread.sleep(300);
    
            // Perform cleanup
            resourceManager.performCleanup();
    
            // Old resource should be auto-closed
            assertTrue(resource.isClosed());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

                SrvCopychunk[] chunks = new SrvCopychunk[chunkCount];
                for (int i = 0; i < chunkCount; i++) {
                    chunks[i] = new SrvCopychunk(i * 100, i * 200, i * 300);
                }
                SrvCopychunkCopy copy = new SrvCopychunkCopy(sourceKey, chunks);
    
                // When
                int size = copy.size();
    
                // Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.1K bytes
    - Viewed (0)
Back to top