- Sort Score
- Result 10 results
- Languages All
Results 1891 - 1900 of 2,048 for BOOLEAN (0.03 sec)
-
src/main/java/org/codelibs/fess/query/QueryCommand.java
} /** * Checks if the specified field is a search field. * @param field The field name to check. * @return True if the field is a search field, false otherwise. */ protected boolean isSearchField(final String field) { for (final String searchField : getQueryFieldConfig().searchFields) { if (searchField.equals(field)) { return true; } }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableRangeMapTest.java
} } public void testOverlapRejection() { for (Range<Integer> range1 : RANGES) { for (Range<Integer> range2 : RANGES) { boolean expectRejection = range1.isConnected(range2) && !range1.intersection(range2).isEmpty(); ImmutableRangeMap.Builder<Integer, Integer> builder = ImmutableRangeMap.builder();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 9.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/PeekingIteratorTest.java
Iterator<E> iterator; public ThrowsAtEndIterator(Iterable<E> iterable) { this.iterator = iterable.iterator(); } @Override public boolean hasNext() { return true; // pretend that you have more... } @Override public E next() { // ...but throw an unchecked exception when you ask for it. if (!iterator.hasNext()) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.6K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
*/ protected List<OnConnectListener> onConnectListenerList = new ArrayList<>(); /** * Flag indicating whether the client is connected. */ private volatile boolean connected; /** * Scroll for delete operations. */ protected Scroll scrollForDelete = new Scroll(TimeValue.timeValueMinutes(1)); /** * Size for delete operations. */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 25.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
*/ protected class ProtwordsUpdater implements Closeable { /** Flag indicating if the update should be committed */ protected boolean isCommit = false; /** Temporary file for storing updates */ protected File newFile; /** Writer for writing to the temporary file */ protected Writer writer;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
/** Number of threads to use for thumbnail generation. */ protected int numOfThreads = 1; /** Flag indicating whether to perform cleanup operations. */ protected boolean cleanup = false; /** * Default constructor for the GenerateThumbnailJob. */ public GenerateThumbnailJob() { super(); } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
System.exit(0); } /** * Checks if the lasta.env system property is not set. * * @return true if lasta.env is not set, false otherwise */ private static boolean isNoneEnv() { return System.getProperty("lasta.env") == null; } /** * Gets the port number for the Tomcat server from system properties. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
} @Override public String getRoleSearchRolePrefix() { return ""; } @Override public boolean isLdapIgnoreNetbiosName() { return true; } }); try { assertEquals("guest", permissionHelper.encode("{role}guest"));Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.7K bytes - Viewed (0) -
guava/src/com/google/common/primitives/UnsignedLong.java
checkNotNull(o); return UnsignedLongs.compare(value, o.value); } @Override public int hashCode() { return Long.hashCode(value); } @Override public boolean equals(@Nullable Object obj) { if (obj instanceof UnsignedLong) { UnsignedLong other = (UnsignedLong) obj; return value == other.value; } return false; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/ArrayMapTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 10.7K bytes - Viewed (0)