- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 2,435 for False (0.06 sec)
-
src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java
} public void test_loginFailure() { activityHelper.useEcsFormat = false; activityHelper.loginFailure(OptionalThing.empty()); assertEquals("action:LOGIN_FAILURE", localLogMsg.get()); } public void test_logout() { activityHelper.useEcsFormat = false; activityHelper.logout(OptionalThing.empty());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java
assertTrue(ldapManager.allowEmptyGroupAndRole(user)); allowEmptyPermission.set(false); assertFalse(ldapManager.allowEmptyGroupAndRole(user)); permissionList.add("2aaa"); allowEmptyPermission.set(true); assertTrue(ldapManager.allowEmptyGroupAndRole(user)); allowEmptyPermission.set(false); assertTrue(ldapManager.allowEmptyGroupAndRole(user));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ArrayTableRowMapTest.java
import org.jspecify.annotations.NullUnmarked; @GwtIncompatible // TODO(hhchan): ArrayTable @NullUnmarked public class ArrayTableRowMapTest extends RowMapTests { public ArrayTableRowMapTest() { super(true, false, false, false); } @Override Table<String, Integer, Character> makeTable() { return ArrayTable.create(asList("foo", "bar", "dog"), asList(1, 2, 3)); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 1.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
assertTrue(user.isEditable()); // Test custom implementation that returns false user = new TestEditableFessUser("testuser", false); assertFalse(user.isEditable()); } public void test_refresh_default() { // Test default implementation returns false FessUser user = new TestFessUser("testuser", new String[] {}, new String[] {}, new String[] {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeHandleImplTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java
private static List<FileEntry[]> staticPages; private static boolean staticThrowOnOpen; private int pageIdx = -1; // Start before first page private boolean done = false; private boolean throwOnFetch; private boolean throwOnCloseInternal; // Use static factory method to work around constructor ordering
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
void isSMB2_variants() throws Exception { // 1) smb2 flag set setField(transport, "smb2", true); assertTrue(transport.isSMB2()); // 2) smb2 false but negotiated is SMB2 response setField(transport, "smb2", false); Smb2NegotiateResponse smb2 = new Smb2NegotiateResponse(cfg); setField(transport, "negotiated", smb2); assertTrue(transport.isSMB2());
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/main/java/jcifs/smb/SecurityBlob.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.5K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
<defaultValue>false</defaultValue> </field> <field> <name>offline</name> <version>1.0.0+</version> <required>false</required> <description> Indicate whether maven should operate in offline mode full-time. </description> <type>boolean</type> <defaultValue>false</defaultValue> </field>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
remove(key); return true; } return false; } @Override public boolean replace(K key, V oldValue, V newValue) { if (oldValue.equals(get(key))) { alertListenerIfPresent(key, oldValue, RemovalCause.REPLACED); put(key, newValue); return true; } return false; } @Override public V replace(K key, V value) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.8K bytes - Viewed (0)