- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 2,158 for Boolean (0.09 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
private File localRepositoryPath; private boolean offline = false; private boolean interactiveMode = true; private boolean cacheTransferError = false; private boolean cacheNotFound = false; private boolean ignoreMissingArtifactDescriptor = true; private boolean ignoreInvalidArtifactDescriptor = true; private boolean ignoreTransitiveRepositories; private List<Proxy> proxies;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 31.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
@Nonnull Session getSession(); @Nonnull Optional<Path> getPath(); @Nonnull Optional<Source> getSource(); boolean isAllowStubModel(); boolean isRecursive(); boolean isProcessPlugins(); @Nullable List<RemoteRepository> getRepositories(); @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 5.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
} @Override public Optional<Boolean> offline() { if (commandLine.hasOption(CLIManager.OFFLINE)) { return Optional.of(Boolean.TRUE); } return Optional.empty(); } @Override public Optional<Boolean> nonRecursive() { if (commandLine.hasOption(CLIManager.NON_RECURSIVE)) { return Optional.of(Boolean.TRUE); } return Optional.empty();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
} public boolean isVersionedVertices() { return versionedVertices; } public void setVersionedVertices(boolean versionedVertices) { this.versionedVertices = versionedVertices; } public boolean isScopedVertices() { return scopedVertices; } public void setScopedVertices(boolean scopedVertices) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.1K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/SynonymLoader.java
private final Settings settings; private final boolean expand; private long reloadInterval = 0; private final Environment env; private volatile long lastModified; private volatile long lastChecked; private volatile SynonymMap synonymMap; public SynonymLoader(final Environment env, final Settings settings, final boolean expand, final Analyzer analyzer) { this.env = env;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 6.7K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy
List<String> errors = [] def inspectParametersNullabilityOf = { CtBehavior oldBehavior, CtBehavior newBehavior -> List<Boolean> oldParametersNullability = parametersNullabilityOf(oldBehavior) List<Boolean> newParametersNullability = parametersNullabilityOf(newBehavior) for (int idx = 0; idx < oldParametersNullability.size(); idx++) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Apr 13 10:04:28 UTC 2024 - 5.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/TestByteSink.java
private final ImmutableSet<TestOption> options; private boolean outputStreamOpened; private boolean outputStreamClosed; public TestByteSink(TestOption... options) { this.options = ImmutableSet.copyOf(options); } byte[] getBytes() { return bytes.toByteArray(); } @Override public boolean wasStreamOpened() { return outputStreamOpened; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Sep 15 13:47:32 UTC 2016 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
* this transport. */ protected abstract boolean doDisconnect ( boolean hard, boolean inUse ) throws IOException; /** * Connect the transport * * @param timeout * @return whether the transport was connected * @throws TransportException */ public synchronized boolean connect ( long timeout ) throws TransportException { int st = this.state;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 01 18:12:21 UTC 2020 - 24.1K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java
} } public boolean isEnabled() { return enabled; } public String getUpdatePolicy() { return updatePolicy; } public String getChecksumPolicy() { return checksumPolicy; } public boolean checkOutOfDate(Date lastModified) { boolean checkForUpdates = false;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionRequest.java
private Map managedVersionMap; /** result type - flat list; the default */ private boolean asList = true; /** result type - dirty tree */ private boolean asDirtyTree = false; /** result type - resolved tree */ private boolean asResolvedTree = false; /** result type - graph */ private boolean asGraph = false; public MetadataResolutionRequest() {}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.3K bytes - Viewed (0)