Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 147 for exact (0.08 sec)

  1. src/test/java/jcifs/smb/SmbRandomAccessFileTest.java

            raf.writeChar('A');
            raf.writeInt(1);
            raf.writeLong(1L);
            raf.writeFloat(1.0f);
            raf.writeDouble(1.0);
    
            // Verify length counts - using times() to check exact counts
            verify(raf, times(2)).write(any(byte[].class), anyInt(), eq(2)); // short and char
            verify(raf, times(2)).write(any(byte[].class), anyInt(), eq(4)); // int and float
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/ExecJobTest.java

                }
                latch.countDown();
            });
    
            t1.start();
            t2.start();
    
            assertTrue(latch.await(5, TimeUnit.SECONDS));
            // The exact size may vary due to concurrent modifications, just check it's not empty
            assertTrue(execJob.jvmOptions.size() > 0);
        }
    
        // Test pattern matching in custom properties
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableListMultimap.java

       * multimap.asMap()} view.
       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * @throws NullPointerException if any key or value in {@code multimap} is null
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/dfs/ReferralTest.java

            bb.putShort((short) 24);
            bb.putShort((short) 1);
            bb.putShort((short) 0);
            bb.put("NODE".getBytes(StandardCharsets.UTF_16LE));
            bb.putShort((short) 0);
    
            // Decode with exact length
            int decodedSize = referral.decode(testBuffer, 0, 24);
            assertEquals(24, decodedSize);
    
            // Decode with excess length
            Referral referral2 = new Referral();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 22K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_en.properties

    labels.tooltip_onlinehelp=Help
    labels.tooltip_logout=Logout
    labels.advance=Advanced Search
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=with all of the words
    labels.advance_search_phrase_query=with the exact phrase
    labels.advance_search_should_queries=with at least one of the words
    labels.advance_search_not_queries=without the words
    labels.advance_search_filetype=File type
    labels.advance_search_filetype_default=Any format
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

         *
         * @param documentList the list of search result documents
         * @param allRecordCount the total number of records found
         * @param allRecordCountRelation the relationship of the record count (exact, approximate, etc.)
         * @param queryTime the time taken to execute the search query
         * @param partialResults whether the results are partial due to timeout or other constraints
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

            assertTrue(manager.matches(request));
    
            request.setRequestURI("/admin/test");
            assertTrue(manager.matches(request));
        }
    
        public void test_matches_withExactMatch() {
            // Test exact path matching
            WebApiManager manager = new ExactMatchWebApiManager("/api/search");
    
            TestHttpServletRequest request = new TestHttpServletRequest();
            request.setRequestURI("/api/search");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableMultimap.java

       * "key-grouped" iteration order described in the class documentation.
       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * @throws NullPointerException if any key or value in {@code multimap} is null
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 28.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

         * SetView}.
         */
        abstract int minSize();
    
        /**
         * Returns the {@link #minSize()} of {@code set} if it is a {@link SetView}, or the exact {@link
         * #size()} of {@code set} otherwise.
         */
        static int minSize(Set<?> set) {
          return set instanceof SetView ? ((SetView<?>) set).minSize() : set.size();
        }
    
        /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSetMultimap.java

       * ignored.
       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * @throws NullPointerException if any key or value in {@code multimap} is null
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top