Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,965 for Option (0.12 sec)

  1. .idea/inspectionProfiles/Gradle.xml

              <option value="io.reactivex.annotations.Experimental" />
              <option value="org.apache.http.annotation.Beta" />
              <option value="org.gradle.api.Incubating" />
              <option value="org.jetbrains.annotations.ApiStatus.Experimental" />
              <option value="rx.annotations.Beta" />
              <option value="rx.annotations.Experimental" />
            </set>
          </option>
        </inspection_tool>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/AbstractBuildOption.java

            CommandLineOption option = parser.option(options)
                .hasDescription(description);
    
            if(deprecated) {
                option.deprecated();
            }
    
            if (incubating) {
                option.incubating();
            }
    
            return option;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

                    private $optionType myProp;
    
                    @Option(option = "$optionName", description = "$optionDescription")
                    @Option(option = "myProp", description = "Configures command line option 'myProp'.")
                    public void setMyProp($optionType myProp) {
                        this.myProp = myProp;
                    }
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-runtime/build-configuration/src/integTest/groovy/org/gradle/interal/buildconfiguration/tasks/UpdateDaemonJvmIntegrationTest.groovy

            version << ["1.8", "8"]
        }
    
        def "When execute updateDaemonJvm with invalid argument --jvm-version option Then fails with expected exception message"() {
            when:
            fails "updateDaemonJvm", "--jvm-version=$invalidVersion"
    
            then:
            failureDescriptionContains("Problem configuring option 'jvm-version' on task ':updateDaemonJvm' from command line.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_passes.td

        used.
      }];
      let options = [
        Option<"legalize_chlo_", "legalize-chlo", "bool", /*default=*/"true",
            "Legalizes intermediate chlo ops to hlo">,
        Option<"use_tf2xla_fallback_", "use-tf2xla-fallback", "bool",
            /*default=*/"false",
            "Use TF2XLA fallback for legalization">,
        Option<"device_type_", "device-type", "std::string",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 17:44:14 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

    .multi-language-selector {
        display: block;
    }
    
    .multi-language-selector .language-option[data-lang='groovy'] {
        background-position: 20px center;
        padding-left: 32px;
    }
    
    .multi-language-selector .language-option[data-lang='kotlin'] {
        background-position: 30px center;
        padding-left: 27px;
    }
    
    .multi-language-selector .language-option {
        background-color: white;
        border: 1px solid #f7f7f8;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/cpu/cpu_x86.go

    		options = append(options,
    			option{Name: "popcnt", Feature: &X86.HasPOPCNT},
    			option{Name: "sse3", Feature: &X86.HasSSE3},
    			option{Name: "sse41", Feature: &X86.HasSSE41},
    			option{Name: "sse42", Feature: &X86.HasSSE42},
    			option{Name: "ssse3", Feature: &X86.HasSSSE3})
    	}
    	if level < 3 {
    		// These options are required at level 3. At lower levels
    		// they can be turned off.
    		options = append(options,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/Choice.java

    /**
     * Asks the user to select an option from a list of options. Allows the choice to be configured in various ways.
     *
     * @param <T> The type of the options of this choice.
     */
    public interface Choice<T> {
        /**
         * Specifies the option to present to the user as the default selection, and the option to use when not connected to a console.
         * Both of these values default to the first option.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top