Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 437 for Boolean (0.04 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/OperatingSystemProfileActivator.java

        public boolean canDetermineActivation(Profile profile) {
            Activation activation = profile.getActivation();
            return activation != null && activation.getOs() != null;
        }
    
        public boolean isActive(Profile profile) {
            Activation activation = profile.getActivation();
            ActivationOS os = activation.getOs();
    
            boolean result = ensureAtLeastOneNonNull(os);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/Restriction.java

        private final ArtifactVersion lowerBound;
    
        private final boolean lowerBoundInclusive;
    
        private final ArtifactVersion upperBound;
    
        private final boolean upperBoundInclusive;
    
        public static final Restriction EVERYTHING = new Restriction(null, false, null, false);
    
        public Restriction(
                ArtifactVersion lowerBound,
                boolean lowerBoundInclusive,
                ArtifactVersion upperBound,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

        // This is like a filter but overrides all transitive versions
        private Map<String, Artifact> managedVersionMap;
    
        private boolean resolveRoot = true;
    
        private boolean resolveTransitively = false;
    
        private boolean offline;
    
        private boolean forceUpdate;
    
        private List<Server> servers;
    
        private List<Mirror> mirrors;
    
        private List<Proxy> proxies;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LayeredOptions.java

        }
    
        @Override
        public Optional<Boolean> showVersionAndExit() {
            return returnFirstPresentOrEmpty(Options::showVersionAndExit);
        }
    
        @Override
        public Optional<Boolean> showVersion() {
            return returnFirstPresentOrEmpty(Options::showVersion);
        }
    
        @Override
        public Optional<Boolean> quiet() {
            return returnFirstPresentOrEmpty(Options::quiet);
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

        @Override
        public Optional<Boolean> showVersionAndExit() {
            if (commandLine.hasOption(CLIManager.SHOW_VERSION_AND_EXIT)) {
                return Optional.of(Boolean.TRUE);
            }
            return Optional.empty();
        }
    
        @Override
        public Optional<Boolean> showVersion() {
            if (commandLine.hasOption(CLIManager.SHOW_VERSION)) {
                return Optional.of(Boolean.TRUE);
            }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/AbstractScopeArtifactFilter.java

     *
     */
    abstract class AbstractScopeArtifactFilter implements ArtifactFilter {
    
        private boolean compileScope;
    
        private boolean runtimeScope;
    
        private boolean testScope;
    
        private boolean providedScope;
    
        private boolean systemScope;
    
        void addScopeInternal(String scope) {
            if (Artifact.SCOPE_COMPILE.equals(scope)) {
                systemScope = true;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java

    package org.apache.maven.plugin.descriptor;
    
    /**
     */
    public class Parameter implements Cloneable {
        private String alias;
    
        private String name;
    
        private String type;
    
        private boolean required;
    
        private boolean editable = true;
    
        private String description;
    
        private String expression;
    
        private String deprecated;
    
        private String defaultValue;
    
        private String implementation;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. compat/maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java

        }
    
        @Override
        public String getPackaging() {
            return packaging;
        }
    
        public void setIncludesDependencies(boolean includesDependencies) {
            this.includesDependencies = includesDependencies;
        }
    
        @Override
        public boolean isIncludesDependencies() {
            return includesDependencies;
        }
    
        public void setLanguage(String language) {
            this.language = language;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            }
            return mojos;
        }
    
        private boolean extractInheritedByDefault(PlexusConfiguration c) {
            String inheritedByDefault = c.getChild("inheritedByDefault").getValue();
    
            if (inheritedByDefault != null) {
                return Boolean.parseBoolean(inheritedByDefault);
            }
            return false;
        }
    
        private boolean extractIsolatedRealm(PlexusConfiguration c) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenPropertiesLoader.java

            boolean optional = false;
            String retVal = null;
    
            if (st.countTokens() > 0) {
                String tokenList = "?\",";
                StringBuilder tokBuf = new StringBuilder(10);
                String tok;
                boolean inQuote = false;
                boolean tokStarted = false;
                boolean exit = false;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top