Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getGroupWith (0.12 sec)

  1. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineOption.java

        }
    
        public boolean isDeprecated() {
            return deprecated;
        }
    
        public boolean isIncubating() {
            return incubating;
        }
    
        Set<CommandLineOption> getGroupWith() {
            return groupWith;
        }
    
        void groupWith(Set<CommandLineOption> options) {
            this.groupWith.addAll(options);
            this.groupWith.remove(this);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

                }
                for (String value : values) {
                    parsedOption.addArgument(value);
                }
    
                for (CommandLineOption otherOption : option.getGroupWith()) {
                    commandLine.removeOption(otherOption);
                }
    
                return state;
            }
        }
    
        private static class UnknownOptionParserState extends OptionParserState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    hasDescription(String); public boolean getAllowsArguments(); public boolean getAllowsMultipleArg(); public CommandLineOption deprecated(); public CommandLineOption incubating(); public boolean isDeprecated(); public boolean isIncubating(); java.util.Set getGroupWith(); void groupWith(java.util.Set); } org/gradle/cli/CommandLineParser$1.class package org.gradle.cli; synchronized class CommandLineParser$1 { } org/gradle/cli/CommandLineParser$AfterFirstSubCommand.class package org.gradle.cli; synchronized class...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
Back to top