- Sort Score
- Result 10 results
- Languages All
Results 621 - 630 of 2,449 for Boolean (1.03 sec)
-
okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt
private var uncaughtException: Throwable? = null private lateinit var testName: String private var defaultUncaughtExceptionHandler: Thread.UncaughtExceptionHandler? = null private var taskQueuesWereIdle: Boolean = false private val connectionListener = RecordingConnectionListener() var logger: Logger? = null var recordEvents = true var recordTaskRunner = false var recordFrames = false
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Nov 04 19:13:52 UTC 2025 - 10.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/ConcurrentLifecycleStarter.java
} } return taskSegments; } private boolean projectIsNotPresent(MavenSession session) { return !session.getRequest().isProjectPresent(); } private boolean requiresProject(MavenSession session) { List<String> goals = session.getGoals(); if (goals != null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java
* * @return the supportSearchBits */ public final boolean isSupportSearchBits() { return this.supportSearchBits; } /** * @return the shareIsInDfs */ @Override public final boolean isShareDfs() { return this.shareIsInDfs; } /** * {@inheritDoc} *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java
*/ public static DependencyScope forId(String id) { return IDS.get(id); } private final String id; private final boolean transitive; DependencyScope(String id, boolean transitive) { this.id = id; this.transitive = transitive; } /** * The {@code id} uniquely represents a value for this extensible enum.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 19 14:33:26 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/Smb2LeaseState.java
* @return true if read caching is enabled */ public static boolean hasReadCaching(int state) { return (state & SMB2_LEASE_READ_CACHING) != 0; } /** * Check if state has handle caching * @param state lease state * @return true if handle caching is enabled */ public static boolean hasHandleCaching(int state) { return (state & SMB2_LEASE_HANDLE_CACHING) != 0; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/test/resources-project-builder/boolean-interpolation/pom.xml
Verify that POM fields that are of type boolean can be interpolated with expressions. </description> <properties> <filter.resources>true</filter.resources> <releasesEnabled>true</releasesEnabled> </properties> <repositories> <repository> <id>maven-core-it</id> <url>file:///${basedir}/repo</url> <releases> <!-- That's the boolean POM field we would like to interpolate -->
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/graph/FilteredProjectDependencyGraphTest.java
private final MavenProject bProject = createProject("B"); private final MavenProject cProject = createProject("C"); @ParameterizedTest @ValueSource(booleans = {true, false}) void downstreamProjectsShouldBeCached(boolean transitive) { FilteredProjectDependencyGraph graph = new FilteredProjectDependencyGraph(projectDependencyGraph, List.of(aProject));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 04 20:56:29 UTC 2025 - 3K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
} public InetAddress getAddress() { return address; } public int getFlags() { return flags; } public boolean isIPv4() { return (flags & IPV4) != 0; } public boolean isIPv6() { return (flags & IPV6) != 0; } } public void addNewIPAddress(InetAddress address) { newIPAddresses.add(new WitnessIPAddress(address)); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
* @return true if SIDs should be resolved, false otherwise */ public boolean isResolveSids() { return resolveSids; } /** * Sets whether SIDs (Security Identifiers) should be resolved. * * @param resolveSids true to resolve SIDs, false otherwise */ public void setResolveSids(final boolean resolveSids) { this.resolveSids = resolveSids; } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.3K bytes - Viewed (0)