Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 6,414 for optionA (0.2 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.cc

                                        bool skip_partitioned_calls) {
      TFToStablehloOptions options;
      options.skip_quantization_ops = skip_quantization_ops;
      options.skip_resize = skip_resize;
      options.skip_partitioned_calls = skip_partitioned_calls;
      PopulateLegalizeTFToStablehloPipeline(pm, options);
    }
    
    }  // namespace odml
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

        public static void main(final String[] args) {
            final Options options = new Options();
            final CmdLineParser parser = new CmdLineParser(options);
            try {
                parser.parseArgument(args);
            } catch (final CmdLineException e) {
                System.err.println(e.getMessage());
                System.err.println("java " + SuggestCreator.class.getCanonicalName() + " [options...] arguments...");
                parser.printUsage(System.err);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    To learn how to declare command-line options for your own tasks, see <<custom_tasks.adoc#sec:declaring_and_using_command_line_options,Declaring and Using Command Line Options>>.
    
    [[sec:builtin_task_options]]
    === Built-in task options
    Built-in task options are options available as task options for all tasks. At this time, the following built-in task options exist:
    
    `--rerun`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/ListBuildOptionTest.groovy

            def option = new CommandLineOption([LONG_OPTION])
            options << option
            parsedCommandLine = new ParsedCommandLine(options)
            def parsedCommandLineOption = parsedCommandLine.addOption(LONG_OPTION, option)
            parsedCommandLineOption.addArgument('val1')
            parsedCommandLineOption.addArgument('val2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/SingleValueOptionElement.java

     */
    
    package org.gradle.api.internal.tasks.options;
    
    import org.gradle.api.tasks.options.Option;
    import org.gradle.internal.exceptions.ValueCollectingDiagnosticsVisitor;
    import org.gradle.internal.typeconversion.NotationParser;
    import org.gradle.internal.typeconversion.TypeConversionException;
    
    import java.util.List;
    import java.util.Set;
    
    /**
     * An option with a single argument.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/BooleanBuildOption.java

    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    
    import java.util.Map;
    
    /**
     * A build option that takes a boolean value.
     * <p>
     * If a command line option is provided, this build option automatically creates a disabled option out-of-the-box e.g. {@code "--no-daemon"} for the provided option {@code "--daemon"}.
     *
     * @since 4.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    		{
    			object:   testPod,
    			options:  PrintOptions{},
    			expected: "NAME            AGE\ntest-pod-name   <unknown>\n",
    		},
    		// Test non-table default printing for a pod with "NoHeaders" option.
    		{
    			object:   testPod,
    			options:  PrintOptions{NoHeaders: true},
    			expected: "test-pod-name   <unknown>\n",
    		},
    		// Test non-table default printing for a pod with "WithNamespace" option.
    		{
    			object:   testPod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/options/OptionValues.java

     * or {@code List<String>} {@link Option}. At most one option values method may be provided for a
     * particular option.</p>
     *
     * <p>This annotation should be attached to a getter method that returns a {@link java.util.Collection} of
     * possible values. The entries in the collection may be of any type. If necessary, they are transformed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 28 20:18:07 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  10. pkg/kubelet/network/dns/dns.go

    func appendOptions(options []string, newOption ...string) []string {
    	var optionMap = make(map[string]string)
    	for _, option := range options {
    		optName := strings.Split(option, ":")[0]
    		optionMap[optName] = option
    	}
    	for _, option := range newOption {
    		optName := strings.Split(option, ":")[0]
    		optionMap[optName] = option
    	}
    
    	options = []string{}
    	for _, v := range optionMap {
    		options = append(options, v)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top