- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 1,191 for BOOLEAN (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/base/Verify.java
*/ public static void verify(boolean expression) { if (!expression) { throw new VerifyException(); } } /** * Ensures that {@code expression} is {@code true}, throwing a {@code VerifyException} with a * custom message otherwise. * * @param expression a boolean expression
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 18.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/BooleansTest.java
testRotate(new boolean[] {true}, -2, new boolean[] {true}); testRotate(new boolean[] {true}, -1, new boolean[] {true}); testRotate(new boolean[] {true}, 0, new boolean[] {true}); testRotate(new boolean[] {true}, 1, new boolean[] {true}); testRotate(new boolean[] {true}, 2, new boolean[] {true}); testRotate(new boolean[] {true, false}, -3, new boolean[] {false, true});Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 22:56:33 GMT 2025 - 25.2K bytes - Click Count (0) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
{ return sv.getClassifier() + ":" + sv.getExtension(); } public boolean merge( Metadata sourceMetadata ) { boolean changed = false; for ( Plugin plugin : sourceMetadata.getPlugins() ) { boolean found = false; for ( Plugin preExisting : getPlugins() ) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed May 15 17:32:27 GMT 2024 - 15.8K bytes - Click Count (0) -
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;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 32.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/factory/DefaultArtifactFactory.java
String groupId, String artifactId, VersionRange versionRange, String type, String classifier, String scope, boolean optional) { return createArtifact(groupId, artifactId, versionRange, type, classifier, scope, null, optional); } @Override public Artifact createDependencyArtifact( String groupId,Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 7.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingNavigableSet.java
public NavigableSet<E> subSet( @ParametricNullness E fromElement, boolean fromInclusive, @ParametricNullness E toElement, boolean toInclusive) { return delegate().subSet(fromElement, fromInclusive, toElement, toInclusive); } /** * A sensible definition of {@link #subSet(Object, boolean, Object, boolean)} in terms of the
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 8.8K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
} @Override public Optional<Boolean> nonRecursive() { if (commandLine.hasOption(CLIManager.NON_RECURSIVE)) { return Optional.of(Boolean.TRUE); } return Optional.empty(); } @Override public Optional<Boolean> updateSnapshots() { if (commandLine.hasOption(CLIManager.UPDATE_SNAPSHOTS)) { return Optional.of(Boolean.TRUE); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 25 17:39:57 GMT 2025 - 14.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java
return true; } private boolean ensureAtLeastOneNonNull(ActivationOS os) { return os.getArch() != null || os.getFamily() != null || os.getName() != null || os.getVersion() != null; } private boolean determineVersionMatch(String expectedVersion, String actualVersion) { String test = expectedVersion; boolean reverse = false; final boolean result;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 5.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/artifact/PluginArtifact.java
@Override public String getPackaging() { return "maven-plugin"; } @Override @Deprecated public boolean isAddedToClasspath() { return true; } @Override public boolean isIncludesDependencies() { return false; } }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.7K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/DocBookBuilder.java
} return elements; } public void appendChild(String text) { appendChild(document.createTextNode(text)); } public void appendChild(Node node) { boolean inPara = false; if (node instanceof Element) { Element element = (Element) node; if (element.getTagName().equals("para") && stack.getFirst().getTagName().equals("para")) { pop();Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.8K bytes - Click Count (0)