Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for optionsByString (0.42 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/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)
Back to top