- Sort Score
- Num 10 results
- Language All
Results 181 - 190 of 2,451 for Booleans (0.06 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java
} private static boolean doGet(Map<String, ?> userProperties, String key, boolean def) { return doGet(userProperties != null ? userProperties.get(key) : null, def); } private static boolean doGet(Object val, boolean def) { if (val instanceof Boolean bool) { return bool; } else if (val != null) { return Boolean.parseBoolean(val.toString()); } else {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 31 11:36:12 GMT 2025 - 2.6K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java
private final Artifact artifact; private final long pomHash; private final boolean resolveManagedVersions; private final List<ArtifactRepository> repositories = new ArrayList<>(); private final int hashCode; public CacheKey( Artifact artifact, boolean resolveManagedVersions, ArtifactRepository localRepository,Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 11.8K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
public class SmbFileOutputStream extends OutputStream { private static final Logger log = LoggerFactory.getLogger(SmbFileOutputStream.class); private final SmbFile file; private final boolean append; private boolean useNTSmbs; private int openFlags; private final int access; private int writeSize; private int writeSizeFile; private long fp; private byte[] tmp = new byte[1];Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 12.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
*/ boolean isProcessPlugins(); /** * Controls the processing of plugin executions and configurations. * * @param processPlugins {@code true} to enable plugin processing, {@code false} otherwise. * @return This request, never {@code null}. */ ModelBuildingRequest setProcessPlugins(boolean processPlugins); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 12.8K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java
private volatile String version; private VersionRange versionRange; private volatile boolean resolved; private boolean release; private List<ArtifactVersion> availableVersions; private Map<Object, ArtifactMetadata> metadataMap; private boolean optional; public DefaultArtifact( String groupId, String artifactId,Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 14.6K bytes - Click Count (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; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 1.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/SuppliersTest.java
@SuppressWarnings("DoNotCall") public void testExpiringMemoizedSupplierThreadSafe() throws Throwable { Function<Supplier<Boolean>, Supplier<Boolean>> memoizer = new Function<Supplier<Boolean>, Supplier<Boolean>>() { @Override public Supplier<Boolean> apply(Supplier<Boolean> supplier) { return Suppliers.memoizeWithExpiration(supplier, Long.MAX_VALUE, NANOSECONDS); } };Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 28 16:03:47 GMT 2025 - 17.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/SuppliersTest.java
@SuppressWarnings("DoNotCall") public void testExpiringMemoizedSupplierThreadSafe() throws Throwable { Function<Supplier<Boolean>, Supplier<Boolean>> memoizer = new Function<Supplier<Boolean>, Supplier<Boolean>>() { @Override public Supplier<Boolean> apply(Supplier<Boolean> supplier) { return Suppliers.memoizeWithExpiration(supplier, Long.MAX_VALUE, NANOSECONDS); } };Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 28 16:03:47 GMT 2025 - 17.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/timer/TimeoutTask.java
private final TimeoutTarget timeoutTarget; private final long timeoutMillis; private final boolean permanent; private long startTime; private int status = ACTIVE; TimeoutTask(final TimeoutTarget timeoutTarget, final int timeout, final boolean permanent) { this.timeoutTarget = timeoutTarget; this.timeoutMillis = timeout * 1000L; this.permanent = permanent;Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 2.7K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java
ClassWorld classWorld; String workingDirectory; File multiModuleProjectDirectory; Path rootDirectory; Path topDirectory; boolean verbose; boolean quiet; boolean showErrors = true; Properties userProperties = new Properties(); Properties systemProperties = new Properties(); MavenExecutionRequest request;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 08 08:49:11 GMT 2024 - 2.8K bytes - Click Count (0)