Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 579 for a_value (0.03 sec)

  1. src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeTest.java

            // Assert
            assertNotNull(transPeekNamedPipe);
            assertNull(transPeekNamedPipe.name);
        }
    
        @ParameterizedTest
        @ValueSource(ints = { 0, 1, -1, Integer.MAX_VALUE, Integer.MIN_VALUE, 0xFFFF })
        @DisplayName("Constructor should handle various FID values")
        void testConstructorWithVariousFids(int fid) {
            // Act
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_zh_TW.properties

    labels.crawling_thread_count=同時爬蟲設定
    labels.incremental_crawling=檢查上次修改時間
    labels.search_log_enabled=搜尋日誌
    labels.user_info_enabled=使用者日誌
    labels.user_favorite_enabled=收藏日誌
    labels.web_api_json_enabled=JSON響應
    labels.app_value=系統屬性
    labels.default_label_value=預設標籤值
    labels.default_sort_value=預設排序值
    labels.virtual_host_value=虛擬主機
    labels.append_query_param_enabled=新增搜尋參數
    labels.login_required=需要登入
    labels.result_collapsed=折疊重複結果
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java

            @ValueSource(ints = { 0, -1, Integer.MIN_VALUE, Integer.MAX_VALUE })
            @DisplayName("Should handle various values in stripPathConsumed")
            void testStripPathConsumedWithVariousValues(int value) {
                // Test with mock
                doNothing().when(mockReferralData).stripPathConsumed(value);
                mockReferralData.stripPathConsumed(value);
                verify(mockReferralData, times(1)).stripPathConsumed(value);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            assertTrue(str.contains("facetResponse="));
        }
    
        public void test_largeRecordCount() {
            // Test with large record count
            long largeCount = Long.MAX_VALUE;
            SearchResult result = SearchResult.create().allRecordCount(largeCount).build();
    
            assertEquals(largeCount, result.getAllRecordCount());
        }
    
        public void test_negativeQueryTime() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java

            @Test
            @DisplayName("Should have correct SMB_INFO_ALLOCATION constant value")
            void testSmbInfoAllocationConstant() {
                assertEquals((byte) -1, FileSystemInformation.SMB_INFO_ALLOCATION);
            }
    
            @Test
            @DisplayName("Should have correct FS_SIZE_INFO constant value")
            void testFsSizeInfoConstant() {
                assertEquals((byte) 3, FileSystemInformation.FS_SIZE_INFO);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMaker.java

       * accommodate as many threads as will ever concurrently modify the table. Using a significantly
       * higher value than you need can waste space and time, and a significantly lower value can lead
       * to thread contention. But overestimates and underestimates within an order of magnitude do not
       * usually have much noticeable impact. A value of one permits only one thread to modify the map
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/netbios/SessionServicePacketTest.java

        void testWriteInt4Various(int value) {
            byte[] dst = new byte[4];
            SessionServicePacket.writeInt4(value, dst, 0);
    
            assertEquals((byte) ((value >> 24) & 0xFF), dst[0]);
            assertEquals((byte) ((value >> 16) & 0xFF), dst[1]);
            assertEquals((byte) ((value >> 8) & 0xFF), dst[2]);
            assertEquals((byte) (value & 0xFF), dst[3]);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  8. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

          var readBody = true
          for ((name, value) in streamHeaders) {
            if (name == Header.TARGET_METHOD_UTF8) {
              method = value
            } else if (name == Header.TARGET_PATH_UTF8) {
              path = value
            } else if (protocol === Protocol.HTTP_2 || protocol === Protocol.H2_PRIOR_KNOWLEDGE) {
              httpHeaders.add(name, value)
            } else {
              throw IllegalStateException()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 20:36:00 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        Iterator<String> iterator = list.iterator();
        assertThat(tryFind(iterator, equalTo("cool"))).hasValue("cool");
      }
    
      public void testTryFind_lastElement() {
        Iterable<String> list = Lists.newArrayList("cool", "pants");
        Iterator<String> iterator = list.iterator();
        assertThat(tryFind(iterator, equalTo("pants"))).hasValue("pants");
      }
    
      public void testTryFind_alwaysTrue() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java

        }
    
        public void test_execute_withVeryLargeBoost() {
            // Test execute method with very large boost value
            QueryContext context = new QueryContext("*:*", false);
            MatchAllDocsQuery query = new MatchAllDocsQuery();
            float boost = Float.MAX_VALUE;
    
            QueryBuilder result = matchAllQueryCommand.execute(context, query, boost);
    
            assertNotNull(result);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.7K bytes
    - Viewed (0)
Back to top