- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 1,929 for Booleans (0.1 sec)
-
api/maven-api-plugin/src/main/mdo/plugin.mdo
<version>1.0.0+</version> <description></description> <type>boolean</type> <defaultValue>false</defaultValue> </field> <field> <name>inheritedByDefault</name> <version>1.0.0+</version> <description></description> <type>boolean</type> <defaultValue>true</defaultValue> </field> <field>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Aug 16 14:16:22 UTC 2024 - 24.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
private static boolean isExternalAuth ( CIFSContext tc, NtlmPasswordAuthenticator npa ) { return npa instanceof jcifs.smb.NtlmPasswordAuthentication && ( (NtlmPasswordAuthentication) npa ).areHashesExternal() && tc.getConfig().getDefaultPassword() != null; } boolean logoff ( boolean inError, boolean inUse ) { boolean wasInUse = false;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
* @see jcifs.Configuration#isUseSMB2OnlyNegotiation() */ @Override public boolean isUseSMB2OnlyNegotiation () { return this.delegate.isUseSMB2OnlyNegotiation(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isRequireSecureNegotiate() */ @Override public boolean isRequireSecureNegotiate () { return this.delegate.isRequireSecureNegotiate(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepositoryFactory.java
String id, String url, String layoutId, boolean uniqueVersion) throws UnknownRepositoryLayoutException { return injectSession(factory.createDeploymentArtifactRepository(id, url, layoutId, uniqueVersion), false); } public ArtifactRepository createDeploymentArtifactRepository( String id, String url, ArtifactRepositoryLayout repositoryLayout, boolean uniqueVersion) { return injectSession(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java
return sync.get(); } @Override public boolean isDone() { return sync.isDone(); } @Override public boolean isCancelled() { return sync.isCancelled(); } @CanIgnoreReturnValue @Override public boolean cancel(boolean mayInterruptIfRunning) { if (!sync.cancel(mayInterruptIfRunning)) { return false;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 13.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/android/BouncyCastleSocketAdapter.kt
/** * Simple non-reflection SocketAdapter for BouncyCastle. */ class BouncyCastleSocketAdapter : SocketAdapter { override fun matchesSocket(sslSocket: SSLSocket): Boolean = sslSocket is BCSSLSocket override fun isSupported(): Boolean = BouncyCastlePlatform.isSupported override fun getSelectedProtocol(sslSocket: SSLSocket): String? { val s = sslSocket as BCSSLSocket
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbTreeHandle.java
*/ String getConnectedShare (); /** * @param th * @return whether the handles refer to the same tree */ boolean isSameTree ( SmbTreeHandle th ); /** * @return whether this tree handle uses SMB2+ */ boolean isSMB2 (); /** * @return the remote host name */ String getRemoteHostName (); /** * @return the tree type
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected boolean smb2OnlyNegotiation = false; protected boolean port139FailoverEnabled = false; protected boolean useNTSmbs = true; protected boolean useLargeReadWrite = true; protected int lanmanCompatibility = 3; protected boolean allowNTLMFallback = true; protected boolean useRawNTLM = false; protected boolean disableSpnegoIntegrity = false;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java
*/ static class IteratorWithSunJavaBug6529795<T> implements Iterator<T> { Iterator<T> iterator; boolean nextThrewException; IteratorWithSunJavaBug6529795(Iterator<T> iterator) { this.iterator = iterator; } @Override public boolean hasNext() { return iterator.hasNext(); } @Override public T next() { try {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 10.3K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java
@Override public final boolean cancel(boolean mayInterruptIfRunning) { return super.cancel(mayInterruptIfRunning); } } private static final Logger log = Logger.getLogger(AbstractFuture.class.getName()); private State state; private V value; private @Nullable Future<? extends V> delegate; private @Nullable Throwable throwable; private boolean mayInterruptIfRunning;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 19:37:41 UTC 2024 - 12.3K bytes - Viewed (0)