Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 6,414 for optionA (0.21 sec)

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

        @Override
        public void configure(CommandLineParser parser) {
            CommandLineOption option = parser.option(getPropertyOption(), getPropertyOptionDetailed());
            option = option.hasArguments();
            option.hasDescription(getPropertyOptionDescription());
        }
    
        @Override
        public Map<String, String> convert(ParsedCommandLine options, Map<String, String> properties) throws CommandLineArgumentException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tools/docker-builder/dockerfile/parse.go

    	"istio.io/istio/tools/docker-builder/builder"
    )
    
    // Option is a functional option for remote operations.
    type Option func(*options) error
    
    type options struct {
    	args       map[string]string
    	ignoreRuns bool
    	baseDir    string
    }
    
    // WithArgs sets the input args to the dockerfile
    func WithArgs(a map[string]string) Option {
    	return func(o *options) error {
    		o.args = a
    		return nil
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      // If unset, should be treated as "True".
      // +optional
      optional string status = 6;
    
      // brief reason for the request state
      // +optional
      optional string reason = 2;
    
      // human readable message with details about the request state
      // +optional
      optional string message = 3;
    
      // timestamp for the last update to this condition
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 4;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/commandLineOption-optionValues/groovy/buildSrc/src/main/java/UrlProcess.java

    import org.gradle.api.tasks.options.Option;
    import org.gradle.api.tasks.options.OptionValues;
    
    public abstract class UrlProcess extends DefaultTask {
        private String url;
        private OutputType outputType;
    
        @Input
        @Option(option = "http", description = "Configures the http protocol to be allowed.")
        public abstract Property<Boolean> getHttp();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/AbstractOptionElement.java

                return new MultipleValueOptionElement(optionName, option, elementType, setter, notationParserFactory);
            }
            return new SingleValueOptionElement(optionName, option, setter.getRawType(), setter, notationParserFactory);
        }
    
        private static String readDescription(Option option, String optionName, Class<?> declaringClass) {
            try {
                return option.description();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/FileUtils.java

        /**
         * Checks if the channel created with the given options will have read access of the file content.
         * See the contract of {@link Files#newByteChannel(Path, Set, FileAttribute[])}.
         */
        public static boolean optionsAllowReading(OpenOption[] options) {
            boolean hasNonReadMode = false;
    
            for (OpenOption option : options) {
                if (option == StandardOpenOption.READ) {
                    return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 01:37:44 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

        /**
         * Creates a {@link Choice} that can ask the user to select an option from the given list and returns the answer.
         * Uses the {@link Object#toString()} representation of the options to format the prompt, the returned {@link Choice} can be used to change this.
         * Does not prompt the user when there is only one option in the given list.
         *
         * @param question The text of the question.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

            return optionFile.addPathOption(option);
        }
    
        public JavadocOptionFileOption<List<File>> addPathOption(String option, String joinBy) {
            return optionFile.addPathOption(option, joinBy);
        }
    
        public JavadocOptionFileOption<List<String>> addStringsOption(String option) {
            return optionFile.addStringsOption(option);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec holds information about the request being evaluated
      optional TokenReviewSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the token can be authenticated.
      // +optional
      optional TokenReviewStatus status = 3;
    }
    
    // TokenReviewSpec is a description of the token authentication request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/BuildOptionSet.java

                    for (BuildOption<? super T> option : getAllOptions()) {
                        option.applyFromCommandLine(args, target);
                    }
                    return target;
                }
    
                @Override
                public void configure(CommandLineParser parser) {
                    for (BuildOption<? super T> option : getAllOptions()) {
                        option.configure(parser);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top