- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 2,449 for Boolean (0.05 sec)
-
src/main/java/jcifs/context/CIFSContextWrapper.java
} return this.wrappedHandler; } @Override public SidResolver getSIDResolver() { return this.delegate.getSIDResolver(); } @Override public boolean hasDefaultCredentials() { return this.delegate.hasDefaultCredentials(); } @Override public CIFSContext withCredentials(final Credentials creds) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
/** * Returns a new array with the specified boolean value appended to the end of the boolean array. * * @param array * the array. Must not be {@literal null} * @param value * the value to add * @return a new array with the value appended */ public static boolean[] add(final boolean[] array, final boolean value) { assertArgumentNotNull("array", array);Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 41.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Synchronized.java
} } @Override public boolean contains(@Nullable Object o) { synchronized (mutex) { return delegate().contains(o); } } @Override public boolean containsAll(Collection<?> c) { synchronized (mutex) { return delegate().containsAll(c); } } @Override public boolean isEmpty() { synchronized (mutex) {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Aug 08 15:11:10 UTC 2025 - 53K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphVertex.java
ArtifactMetadata md; // indications to use these in comparison private boolean compareVersion = false; private boolean compareScope = false; public MetadataGraphVertex(ArtifactMetadata md) { super(); this.md = md; } public MetadataGraphVertex(ArtifactMetadata md, boolean compareVersion, boolean compareScope) { this(md); this.compareVersion = compareVersion;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
this.signingPreferred = Boolean.parseBoolean(value); } value = props.getProperty("jcifs.smb.client.signingEnforced"); if (value != null) { this.signingEnforced = Boolean.parseBoolean(value); } value = props.getProperty("jcifs.smb.client.encryptionEnforced"); if (value != null) { this.encryptionEnabled = Boolean.parseBoolean(value); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
} protected TransferListener determineTransferListener(MavenContext context, boolean noTransferProgress) { boolean quiet = context.options().quiet().orElse(false); boolean logFile = context.options().logFile().isPresent(); boolean quietCI = context.invokerRequest.ciInfo().isPresent() && !context.options().forceInteractive().orElse(false);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 28.2K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuilder.java
try { Map<String, ?> options = Collections.singletonMap(SettingsReader.IS_STRICT, Boolean.TRUE); try { settings = settingsReader.read(settingsSource.getInputStream(), options); } catch (SettingsParseException e) { options = Collections.singletonMap(SettingsReader.IS_STRICT, Boolean.FALSE);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 9.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelperTest.java
// First access helper.setProperty(bean1, "directField", String.class, config); boolean accessibilityAfterFirst = field.canAccess(bean1); // Second access with different bean config.setValue("value2"); helper.setProperty(bean2, "directField", String.class, config); boolean accessibilityAfterSecond = field.canAccess(bean2);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 12 14:59:46 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
@Override public boolean hasCapability(int cap) throws SmbException { return delegate.hasCapability(cap); } @Override public boolean isDisconnected() { return delegate.isDisconnected(); } @Override public boolean disconnect(boolean hard, boolean inuse) throws IOException { synchronized (connectionLock) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/PushObserver.kt
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.6K bytes - Viewed (0)