Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for 1000L (0.04 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

                assertNotNull(testProvider);
            }
        }
    
        // Test getTimeAdjustTimeMillisAsLong values
        public void test_getTimeAdjustTimeMillisAsLong_values() {
            Long[] testValues = { 0L, 1L, -1L, 1000L, -1000L, 60000L, -60000L, 3600000L, -3600000L, Long.MAX_VALUE, Long.MIN_VALUE };
    
            for (Long value : testValues) {
                FessConfig testConfig = new FessConfig.SimpleImpl() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            assertEquals(10L, callback1.getDocumentSize());
            assertEquals(500L, callback1.getExecuteTime());
    
            assertEquals(20L, callback2.getDocumentSize());
            assertEquals(1000L, callback2.getExecuteTime());
    
            // Test store operations
            DataStoreParams params = new DataStoreParams();
            Map<String, Object> data = new HashMap<>();
    
            callback1.store(params, data);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            searchRenderData.setRequestedTime(timestamp);
            assertEquals(timestamp, searchRenderData.getRequestedTime());
    
            // Test with negative value
            searchRenderData.setRequestedTime(-1000L);
            assertEquals(-1000L, searchRenderData.getRequestedTime());
        }
    
        public void test_setAndGetQueryId() {
            // Test with null
            searchRenderData.setQueryId(null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

            // Test setting negative values
            webFsIndexHelper.setMaxAccessCount(-1L);
            assertEquals(-1L, webFsIndexHelper.maxAccessCount);
    
            webFsIndexHelper.setCrawlingExecutionInterval(-1000L);
            assertEquals(-1000L, webFsIndexHelper.crawlingExecutionInterval);
    
            // Test setting out of normal thread priority range
            webFsIndexHelper.setIndexUpdaterPriority(0);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt

        assertThat(parseCookie(0L, url, "a=b; Max-Age=1; Expires=Thu, 01 Jan 1970 00:00:02 GMT")!!.expiresAt)
          .isEqualTo(1000L)
        assertThat(parseCookie(0L, url, "a=b; Expires=Thu, 01 Jan 1970 00:00:02 GMT; Max-Age=1")!!.expiresAt)
          .isEqualTo(1000L)
        // Max-Age = 2, Expires = 1. In either order.
        assertThat(parseCookie(0L, url, "a=b; Max-Age=2; Expires=Thu, 01 Jan 1970 00:00:01 GMT")!!.expiresAt)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  6. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

                        value = "cash.app",
                      ),
                    ),
                  ),
                validity =
                  Validity(
                    notBefore = 0L,
                    notAfter = 1000L,
                  ),
                subject =
                  listOf(
                    listOf(
                      AttributeTypeAndValue(
                        type = COMMON_NAME,
                        value = "cash.app",
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 43.9K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/RealWebSocketTest.kt

        server.webSocket!!.close(1000, "Hello!")
        client.processNextFrame()
        client.listener.assertClosing(1000, "Hello!")
        assertThat(client.webSocket!!.close(1000, "Bye!")).isTrue()
        client.webSocket!!.finishReader()
        taskFaker.runTasks()
        client.listener.assertClosed(1000, "Hello!")
        server.processNextFrame()
        server.listener.assertClosing(1000, "Bye!")
        server.webSocket!!.finishReader()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java

            assertEquals(1, results.length);
            assertEquals("Content for testing", results[0]);
        }
    
        public void test_inheritance_setReloadInterval() {
            assertEquals(1000L, relatedContentHelper.reloadInterval);
    
            relatedContentHelper.setReloadInterval(5000L);
            assertEquals(5000L, relatedContentHelper.reloadInterval);
        }
    
        public void test_inheritance_update() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

            assertThat(map.get("aaa"), is((Object) 1000L));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testCopyBeanToMap_converter3() throws Exception {
            final Bean2 bean2 = new Bean2();
            bean2.aaa = Integer.valueOf(1000);
            final Map<String, Object> map = newHashMap();
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 34.5K bytes
    - Viewed (0)
  10. mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt

        assertThat(inputStream.read()).isEqualTo(-1)
        val elapsedNanos = System.nanoTime() - startNanos
        val elapsedMillis = TimeUnit.NANOSECONDS.toMillis(elapsedNanos)
        assertThat(elapsedMillis).isBetween(500L, 1000L)
      }
    
      /**
       * Throttle the response body by sleeping 500ms after every 3 bytes. With a 6-byte response, this
       * should yield one sleep for a total delay of 500ms.
       */
      @Test
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 13:16:34 UTC 2025
    - 22.3K bytes
    - Viewed (0)
Back to top