- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 2,189 for boolean (0.05 sec)
-
guava-tests/test/com/google/common/primitives/PrimitivesTest.java
assertThat(primitives) .containsExactly( boolean.class, byte.class, char.class, double.class, float.class, int.class, long.class, short.class, void.class); assertThrows(UnsupportedOperationException.class, () -> primitives.remove(boolean.class)); } public void testAllWrapperTypes() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 3K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt
fun String.canParseAsIpAddress(): Boolean = VERIFY_AS_IP_ADDRESS.matches(this) /** * Returns true if the length is not valid for DNS (empty or greater than 253 characters), or if any * label is longer than 63 characters. Trailing dots are okay. */ internal fun String.containsInvalidLabelLengths(): Boolean { if (length !in 1..253) return true var labelStart = 0 while (true) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 11.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
/** * * @return whether the SID is empty (no sub-authorities) */ public boolean isEmpty () { return this.sub_authority_count == 0; } /** * * @return whether the SID is blank (all sub-authorities zero) */ public boolean isBlank () { boolean blank = true; for ( int sub : this.sub_authority ) blank = blank && ( sub == 0 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
} } public Date getStartTime() { return request.getStartTime(); } public boolean isParallel() { return parallel; } public void setParallel(boolean parallel) { this.parallel = parallel; } public RepositorySystemSession getRepositorySession() { return repositorySystemSession; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
} } /** * @return the resolveSids */ public boolean isResolveSids() { return resolveSids; } /** * @param resolveSids * the resolveSids to set */ public void setResolveSids(final boolean resolveSids) { this.resolveSids = resolveSids; } /** * @return the charset */
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
final boolean nextPage = data.isExistNextPage(); final boolean prevPage = data.isExistPrevPage(); final long startRecordNumber = data.getCurrentStartRecordNumber(); final long endRecordNumber = data.getCurrentEndRecordNumber(); final List<String> pageNumbers = data.getPageNumberList(); final boolean partial = data.isPartialResults();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java
public void setProxy(Proxy proxy) { this.proxy = proxy; } public boolean isBlacklisted() { return false; } public void setBlacklisted(boolean blackListed) { // no op } public boolean isUniqueVersion() { return true; } public boolean isProjectAware() { return false; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java
ListenableFuture<@Nullable Void> unused = serializer.submit(blockingCallable, executor); ListenableFuture<Boolean> future2 = serializer.submit( new Callable<Boolean>() { @Override public Boolean call() { return blockingCallable.isRunning(); } }, directExecutor());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 16.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
} private NtlmPasswordAuthenticator auth; private int ntlmsspFlags; private String workstation; private boolean isEstablished = false; private byte[] serverChallenge = null; private byte[] masterKey = null; private String netbiosName = null; private final boolean requireKeyExchange; private final AtomicInteger signSequence = new AtomicInteger(0);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
list = (ListItem) stack.pop(); list.normalize(); } } private static Item parseItem(boolean isDigit, String buf) { return parseItem(false, isDigit, buf); } private static Item parseItem(boolean isCombination, boolean isDigit, String buf) { if (isCombination) { return new CombinationItem(buf.replace("-", "")); } else if (isDigit) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 26K bytes - Viewed (0)