- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 2,059 for Booleans (0.05 sec)
-
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
* the sessionBinding to set */ public void setSessionBinding(final boolean sessionBinding) { this.sessionBinding = sessionBinding; } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#chain(jcifs.internal.smb2.ServerMessageBlock2) */ @Override public boolean chain(final ServerMessageBlock2 n) { n.setSessionId(Smb2Constants.UNSPECIFIED_SESSIONID);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingImmutableMap.java
} @Override boolean isPartialView() { return false; } @Override public final boolean isEmpty() { return delegate.isEmpty(); } @Override public final boolean containsKey(@Nullable Object key) { return Maps.safeContainsKey(delegate, key); } @Override public final boolean containsValue(@Nullable Object value) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/SystemPropertyProfileActivator.java
properties = (Properties) context.get("SystemProperties"); } @Override protected boolean canDetectActivation(Profile profile) { return profile.getActivation() != null && profile.getActivation().getProperty() != null; } @Override public boolean isActive(Profile profile) throws ProfileActivationException { Activation activation = profile.getActivation();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsScheduledJob.java
/** available */ protected Boolean available; /** crawler */ protected Boolean crawler; /** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** cronExpression */ protected String cronExpression; /** jobLogging */ protected Boolean jobLogging; /** name */ protected String name;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/MinimalCollection.java
* wasn't going to be any actual work to do anyway */ @Override public boolean addAll(Collection<? extends E> elementsToAdd) { throw up(); } @Override public boolean removeAll(Collection<?> elementsToRemove) { throw up(); } @Override public boolean retainAll(Collection<?> elementsToRetain) { throw up(); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/filter/InversionArtifactFilter.java
this.toInvert = toInvert; } @Override public boolean include(Artifact artifact) { return !toInvert.include(artifact); } @Override public int hashCode() { int hash = 17; hash = hash * 31 + toInvert.hashCode(); return hash; } @Override public boolean equals(Object obj) { if (this == obj) { return true; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
} int getSetupCount() { return setupCount; } boolean isParametersDone() { return (boolean) getFieldValue("parametersDone"); } boolean isDataDone() { return (boolean) getFieldValue("dataDone"); } boolean isHasMore() { return hasMore; } void setErrorCode(int code) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
// When boolean smb2Only = delegatingConfig.isUseSMB2OnlyNegotiation(); boolean secureNegotiate = delegatingConfig.isRequireSecureNegotiate(); boolean ntlmTargetName = delegatingConfig.isSendNTLMTargetName(); boolean port139Failover = delegatingConfig.isPort139FailoverEnabled(); boolean dfsStrictView = delegatingConfig.isDfsStrictView(); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java
* * @return an {@link Optional} containing the boolean flag, or empty if not set */ @Nonnull Optional<Boolean> showVersionAndExit(); /** * Indicates whether to show the version information. * * @return an {@link Optional} containing the boolean flag, or empty if not set */ @Nonnull Optional<Boolean> showVersion(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jan 13 16:14:35 UTC 2025 - 6.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java
*/ public static boolean deployBuildPom(@Nullable Map<String, ?> userProperties) { return doGet(userProperties, Constants.MAVEN_DEPLOY_BUILD_POM, true); } private static boolean doGet(Properties userProperties, String key, boolean def) { return doGet(userProperties != null ? userProperties.get(key) : null, def); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 04 19:42:23 UTC 2025 - 2.5K bytes - Viewed (0)