Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,272 for Option (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/FieldOptionElement.java

            }
            return new PropertyFieldSetter(getGetter(field), field);
        }
    
        private static String calOptionName(Option option, Field field) {
            if (option.option().length() == 0) {
                return field.getName();
            } else {
                return option.option();
            }
        }
    
        private static Method getSetter(Field field) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 11:28:20 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

        String id();
    
        /**
         * Returns the name of the tool option for this path. For example, if this path type
         * is {@link JavaPathType#MODULES}, then this method returns {@code "--module-path"}.
         * The option does not include the {@linkplain JavaPathType.Modular#moduleName() module name}
         * on which it applies.
         *
         * @return the name of the tool option for this path type
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/listsEnumAndBooleanCmdOptionValues/build.gradle

    import org.gradle.api.tasks.options.Option
    
    allprojects{
        task hello(type: CustomTask)
    }
    
    class CustomTask extends DefaultTask {
        @TaskAction
        void doSomething() {
        }
    
        @Option(option = "enumValue", description = "Configures an enum value in CustomTask.")
        public void setEnumValue(TestEnum value) {
        }
    
        @Option(option = "booleanValue", description = "Configures a boolean flag in CustomTask.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 10:43:03 UTC 2023
    - 517 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/commandLineOption-optionValues/kotlin/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)
  10. schema/index.go

    					idx.Type = index.Type
    				}
    				if idx.Where == "" {
    					idx.Where = index.Where
    				}
    				if idx.Comment == "" {
    					idx.Comment = index.Comment
    				}
    				if idx.Option == "" {
    					idx.Option = index.Option
    				}
    
    				idx.Fields = append(idx.Fields, index.Fields...)
    				sort.Slice(idx.Fields, func(i, j int) bool {
    					return idx.Fields[i].priority < idx.Fields[j].priority
    				})
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top