Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 724 for Option (0.1 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            return Optional.ofNullable(option);
        }
    
        /**
         * Returns the option followed by a string representation of the given path elements.
         * For example, if this type is {@link #MODULES}, then the option is {@code "--module-path"}
         * followed by the specified path elements.
         *
         * @param paths the path to format as a tool option
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

         * Set the project name.
         *
         * @since 5.0
         */
        @Option(option = "project-name", description = "Set the project name.")
        public void setProjectName(String projectName) {
            this.projectName = projectName;
        }
    
        /**
         * Set the package name.
         *
         * @since 5.0
         */
        @Option(option = "package", description = "Set the package for source files.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. pkg/bootstrap/config.go

    				opts = append(opts,
    					option.Localhost(option.LocalhostIPv6),
    					option.AdditionalLocalhost(option.LocalhostIPv4),
    					option.Wildcard(option.WildcardIPv6),
    					option.AdditionalWildCard(option.WildcardIPv4),
    					option.DNSLookupFamily(option.DNSLookupFamilyIPS))
    			} else {
    				opts = append(opts,
    					option.Localhost(option.LocalhostIPv4),
    					option.AdditionalLocalhost(option.LocalhostIPv6),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

        }
    
        def "can render option with help for Java task with property"() {
            given:
            file('buildSrc/src/main/java/SampleTask.java') << taskWithSinglePropertyOption('Property', 'String')
            buildFile << sampleTask()
    
            when:
            succeeds('help', '--task', 'sample')
    
            then:
            outputContains("""
    Options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

        }
    
        def "generates -target option when current Jvm Version is used"() {
            spec.targetCompatibility = JavaVersion.current().toString()
    
            expect:
            builder.build() == ["-target", JavaVersion.current().toString()] + defaultOptions
        }
    
        def "generates -target option when compatibility differs current Jvm version"() {
            spec.targetCompatibility = "1.4"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. .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)
  7. 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)
  8. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

            def action = Mock(Function)
    
            when:
            def input = userInputHandler.askUser(action)
    
            then:
            0 * action._
            0 * outputEventBroadcaster._
            0 * userInputHandler._
    
            when:
            def result = input.get()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Quantize composite functions with QDQ input / outputs.";
      let options = [
        Option<"enable_per_channel_quantized_weight_",
            "enable-per-channel-quantized-weight",
            "bool", /*default=*/"true",
            "Whether to enable per-channel quantized weights.">,
        Option<"mlir_dump_file_name_", "mlir-dump-file-name",
            "std::optional<std::string>", /*default=*/"std::nullopt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pkg/scheduler/scheduler.go

    	dynInformerFactory dynamicinformer.DynamicSharedInformerFactory,
    	recorderFactory profile.RecorderFactory,
    	opts ...Option) (*Scheduler, error) {
    
    	logger := klog.FromContext(ctx)
    	stopEverything := ctx.Done()
    
    	options := defaultSchedulerOptions
    	for _, opt := range opts {
    		opt(&options)
    	}
    
    	if options.applyDefaultProfile {
    		var versionedCfg configv1.KubeSchedulerConfiguration
    		scheme.Scheme.Default(&versionedCfg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top