Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,921 for optionA (0.12 sec)

  1. platforms/core-runtime/wrapper-main/src/main/java/org/gradle/wrapper/GradleWrapperMain.java

        private static File gradleUserHome(ParsedCommandLine options) {
            if (options.hasOption(GRADLE_USER_HOME_OPTION)) {
                return new File(options.option(GRADLE_USER_HOME_OPTION).getValue());
            }
            return GradleUserHomeLookup.gradleUserHome();
        }
    
        private static Logger logger(ParsedCommandLine options) {
            return new Logger(options.hasOption(GRADLE_QUIET_OPTION));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskConfigurer.java

                    String optionName = optionDescriptor.getName();
                    org.gradle.cli.CommandLineOption option = parser.option(optionName);
                    option.hasDescription(optionDescriptor.getDescription());
                    option.hasArgument(optionDescriptor.getArgumentType());
                }
                taskOptions.addMutualExclusions(parser);
    
                ParsedCommandLine parsed;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

      // when the context is in eager mode. This will be forcibly set to true when
      // using DebuggerOptions.
      bool force_graph_mode_calibration = 14;
    
      // Defines calibration options for quantization. This option is only used for
      // activation of static range quantization (SRQ). Quantization calibration
      // method is set to MIN_MAX by default.
      stablehlo.quantization.CalibrationOptions calibration_options = 15;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pkg/scheduler/scheduler.go

    			return nil, err
    		}
    		options.profiles = cfg.Profiles
    	}
    
    	registry := frameworkplugins.NewInTreeRegistry()
    	if err := registry.Merge(options.frameworkOutOfTreeRegistry); err != nil {
    		return nil, err
    	}
    
    	metrics.Register()
    
    	extenders, err := buildExtenders(logger, options.extenders, options.profiles)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelReader.java

        /**
         * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code
         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.model.io.isStrict";
    
        /**
         * The key for the option to enable tracking of line/column numbers. This option is of type
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/passes.td

      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
      let options = [
        Option<"default_min_", "default-min", "double", "-1.0",
                   "Default minimum value for TFLite quantization">,
        Option<"default_max_", "default-max", "double", "1.0",
                   "Default maximum value for TFLite quantization">,
        Option<"is_signed_", "is-signed", "bool", "false",
                   "Is the corresponding integer signed">,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top