- Sort Score
- Result 10 results
- Languages All
Results 441 - 450 of 1,924 for Booleans (0.08 sec)
-
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
} public void deleteElevateWord(String word, boolean apply) { // Mock implementation } public void addElevateWord(org.codelibs.fess.suggest.entity.ElevateWord elevateWord, boolean apply) { // Mock implementation } public void addBadWord(String word, boolean apply) { // Mock implementation }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilJvm.kt
@JvmField internal val UTC: TimeZone = TimeZone.getTimeZone("GMT")!! internal fun threadFactory( name: String, daemon: Boolean, ): ThreadFactory = ThreadFactory { runnable -> Thread(runnable, name).apply { isDaemon = daemon } } internal fun HttpUrl.toHostHeader(includeDefaultPort: Boolean = false): String { val host = if (":" in host) { "[$host]" } else { host }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 10.2K bytes - Viewed (1) -
android/guava/src/com/google/common/base/Equivalence.java
*/ public final boolean equivalent(@Nullable T a, @Nullable T b) { if (a == b) { return true; } if (a == null || b == null) { return false; } return doEquivalent(a, b); } /** * @since 10.0 (previously, subclasses would override equivalent()) */ @ForOverride protected abstract boolean doEquivalent(T a, T b); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 10 01:47:55 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java
* * This command is used to connect to a shared resource * on the server, such as a file share or printer. */ public class SmbComTreeConnectAndX extends AndXServerMessageBlock { private final boolean disconnectTid = false; private final String service; private byte[] password; private int passwordLength; private final CIFSContext ctx; private final ServerData server; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/CIFSContextTest.java
@DisplayName("Should check for default credentials") void testHasDefaultCredentials() { // Given when(mockContext.hasDefaultCredentials()).thenReturn(true); // When boolean hasCreds = mockContext.hasDefaultCredentials(); // Then assertTrue(hasCreds); verify(mockContext).hasDefaultCredentials(); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ForwardingFluentFuture.java
delegate.addListener(listener, executor); } @Override public boolean cancel(boolean mayInterruptIfRunning) { return delegate.cancel(mayInterruptIfRunning); } @Override public boolean isCancelled() { return delegate.isCancelled(); } @Override public boolean isDone() { return delegate.isDone(); } @Override @ParametricNullness
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java
* @param originalRepository to compare for a match. * @param pattern used for match. * @return true if the repository is a match to this pattern. */ static boolean matchPattern(ArtifactRepository originalRepository, String pattern) { boolean result = false; String originalId = originalRepository.getId(); // simple checks first to short circuit processing below.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
this.nodeType = nodeType; } NbtAddress(final Name hostName, final int address, final boolean groupName, final int nodeType, final boolean isBeingDeleted, final boolean isInConflict, final boolean isActive, final boolean isPermanent, final byte[] macAddress) { /* * The NodeStatusResponse.readNodeNameArray method may also set this
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
*/ boolean hasReadMethod(); /** * Returns the setter method. * * @return the setter method */ Method getWriteMethod(); /** * Returns whether the property has a setter method. * * @return whether the property has a setter method */ boolean hasWriteMethod(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SSPContext.java
* @return whether the specified mechanism is supported */ boolean isSupported(ASN1ObjectIdentifier mechanism); /** * Checks whether the specified mechanism is the preferred mechanism. * @param selectedMech the selected mechanism OID * @return whether the specified mechanism is preferred */ boolean isPreferredMech(ASN1ObjectIdentifier selectedMech); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0)