- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 2,344 for TRUE (1.24 sec)
-
src/main/java/org/codelibs/core/beans/FieldDesc.java
*/ <T> Class<T> getFieldType(); /** * Returns {@literal true} if the field is {@literal public}. * * @return {@literal true} if the field is {@literal public} */ boolean isPublic(); /** * Returns {@literal true} if the field is {@literal static}. * * @return {@literal true} if the field is {@literal static} */ boolean isStatic(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
this.allPageCount = allPageCount; } /** * Returns true if a previous page exists. * * @return True if a previous page exists. */ public boolean isExistPrePage() { return existPrePage; } /** * Sets whether a previous page exists. * * @param existPrePage True if a previous page exists. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/jcifs/spnego/NegTokenInitTest.java
v.add(m); } fields.add(new DERTaggedObject(true, 0, new DERSequence(v))); } if (flags != null && flags != 0) { fields.add(new DERTaggedObject(true, 1, new DERBitString(flags))); } if (mechToken != null) { fields.add(new DERTaggedObject(true, 2, new DEROctetString(mechToken))); } if (mic != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java
oplockLevelField.setAccessible(true); assertEquals(expectedOplockLevel, oplockLevelField.get(notification)); Field fileIdField = Smb2OplockBreakNotification.class.getDeclaredField("fileId"); fileIdField.setAccessible(true); assertArrayEquals(expectedFileId, (byte[]) fileIdField.get(notification)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java
@CsvSource({ "true, true, SMB311, 2", // DFS + Encryption "false, true, SMB311, 1", // Encryption only "true, false, SMB311, 1", // DFS only "false, false, SMB311, 0", // Neither "true, true, SMB210, 1", // DFS only (no encryption for SMB2) "false, true, SMB210, 0" // Neither (no encryption for SMB2) })
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/CollectionsUtilTest.java
* . */ @Test public void testIsEmptyCollectionOfQ() { Collection<String> c = null; assertThat(CollectionsUtil.isEmpty(c), is(true)); c = new ArrayList<String>(); assertThat(CollectionsUtil.isEmpty(c), is(true)); } /** * Test method for * {@link org.codelibs.core.collection.CollectionsUtil#isNotEmpty(java.util.Collection)} * . */ @Test
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} // Test offer with valid generator public void test_offer_withValidGenerator() { TestThumbnailGenerator generator = new TestThumbnailGenerator(); generator.available = true; generator.target = true; generator.task = new Tuple3<>("generator1", "docid1", "path1"); thumbnailManager.add(generator); Map<String, Object> docMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Booleans.java
* @return a positive number if only {@code a} is {@code true}, a negative number if only {@code * b} is true, or zero if {@code a == b} */ @InlineMe(replacement = "Boolean.compare(a, b)") public static int compare(boolean a, boolean b) { return Boolean.compare(a, b); } /** * Returns {@code true} if {@code target} is present as an element anywhere in {@code array}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Booleans.java
* @return a positive number if only {@code a} is {@code true}, a negative number if only {@code * b} is true, or zero if {@code a == b} */ @InlineMe(replacement = "Boolean.compare(a, b)") public static int compare(boolean a, boolean b) { return Boolean.compare(a, b); } /** * Returns {@code true} if {@code target} is present as an element anywhere in {@code array}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0)