Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for optionsByString (0.19 sec)

  1. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/ListBuildOptionTest.groovy

            when:
            def testOption = new TestOption(GRADLE_PROPERTY)
            testOption.configure(commandLineParser)
    
            then:
            !commandLineParser.optionsByString.containsKey(LONG_OPTION)
            !commandLineParser.optionsByString.containsKey(SHORT_OPTION)
    
            when:
            testOption = new TestOption(GRADLE_PROPERTY, CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, DESCRIPTION))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/BooleanBuildOptionTest.groovy

            when:
            def testOption = new TestOption(GRADLE_PROPERTY)
            testOption.configure(commandLineParser)
    
            then:
            !commandLineParser.optionsByString.containsKey(LONG_OPTION)
            !commandLineParser.optionsByString.containsKey(SHORT_OPTION)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOptionTest.groovy

            when:
            def testOption = new TestOption(GRADLE_PROPERTY)
            testOption.configure(commandLineParser)
    
            then:
            !commandLineParser.optionsByString.containsKey(LONG_OPTION)
            !commandLineParser.optionsByString.containsKey(SHORT_OPTION)
    
            when:
            testOption = new TestOption(GRADLE_PROPERTY, CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, DESCRIPTION))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/IntegerBuildOptionTest.groovy

            when:
            def testOption = new TestOption(GRADLE_PROPERTY)
            testOption.configure(commandLineParser)
    
            then:
            !commandLineParser.optionsByString.containsKey(LONG_OPTION)
            !commandLineParser.optionsByString.containsKey(SHORT_OPTION)
    
            when:
            testOption = new TestOption(GRADLE_PROPERTY, CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, DESCRIPTION))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/StringBuildOptionTest.groovy

            when:
            def testOption = new TestOption(GRADLE_PROPERTY)
            testOption.configure(commandLineParser)
    
            then:
            !commandLineParser.optionsByString.containsKey(LONG_OPTION)
            !commandLineParser.optionsByString.containsKey(SHORT_OPTION)
    
            when:
            testOption = new TestOption(GRADLE_PROPERTY, CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, DESCRIPTION))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

        private static final Pattern OPTION_NAME_PATTERN = Pattern.compile("(\\?|\\p{Alnum}[\\p{Alnum}-_]*)");
    
        private static final String DISABLE_OPTION_PREFIX = "no-";
    
        private Map<String, CommandLineOption> optionsByString = new HashMap<String, CommandLineOption>();
        private boolean allowMixedOptions;
        private boolean allowUnknownOptions;
    
        /**
         * Parses the given command-line.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/cli/src/main/java/org/gradle/cli/ParsedCommandLine.java

     * limitations under the License.
     */
    package org.gradle.cli;
    
    import java.util.*;
    
    public class ParsedCommandLine {
        private final Map<String, ParsedCommandLineOption> optionsByString = new HashMap<String, ParsedCommandLineOption>();
        private final Set<String> presentOptions = new HashSet<String>();
        private final Set<String> removedOptions = new HashSet<String>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. .teamcity/.mvn/wrapper/maven-wrapper.jar

    rserState onArgument(String); public CommandLineParser$ParserState onComplete(); } org/apache/maven/wrapper/cli/CommandLineParser.class package org.apache.maven.wrapper.cli; public synchronized class CommandLineParser { private java.util.Map optionsByString; private boolean allowMixedOptions; private boolean allowUnknownOptions; private final java.io.PrintWriter deprecationPrinter; static void <clinit>(); public void CommandLineParser(); public void CommandLineParser(java.io.Writer); public transient...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  9. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    org/gradle/cli/CommandLineParser.class package org.gradle.cli; public synchronized class CommandLineParser { private static final java.util.regex.Pattern OPTION_NAME_PATTERN; private static final String DISABLE_OPTION_PREFIX = no-; private java.util.Map optionsByString; private boolean allowMixedOptions; private boolean allowUnknownOptions; public void CommandLineParser(); public transient ParsedCommandLine parse(String[]) throws CommandLineArgumentE; public ParsedCommandLine parse(Iterable) throws CommandLineArgumentE;...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  10. gradle/wrapper/gradle-wrapper.jar

    static final java.util.regex.Pattern OPTION_NAME_PATTERN; public final java.util.HashMap optionsByString; public boolean allowUnknownOptions; public void CommandLineParser(); static void <clinit>(); public final transient CommandLineOption option(String[]); } org/gradle/cli/ParsedCommandLine.class package org.gradle.cli; public final synchronized class ParsedCommandLine { public final java.util.HashMap optionsByString; public final java.util.HashSet presentOptions; public final java.util.HashSet removedOptions;...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 42.4K bytes
    - Viewed (0)
Back to top