Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 6,414 for optionA (0.12 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    // odml_to_stablehlo /path/to/model -o=model.tflite --export-type=tflite
    //
    // TODO(pulkitb): Add more options.
    //  * Verbose - dump intermediate translations.
    //  * Choose specific signatures/functions from a saved model.
    //  * Options for full/partial conversion, Op exceptions list.
    //  * Option to serialize output to TFL flatbuffer format.
    
    using llvm::cl::opt;
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOptionTest.groovy

            testOption = new TestOption(GRADLE_PROPERTY, CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, DESCRIPTION))
            def option = new CommandLineOption([LONG_OPTION])
            options << option
            parsedCommandLine = new ParsedCommandLine(options)
            parsedCommandLine.addOption(LONG_OPTION, option)
            testOption.applyFromCommandLine(parsedCommandLine, testSettings)
    
            then:
            testSettings.flag
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/TestOutputStream.java

      private final ImmutableSet<TestOption> options;
      private boolean closed;
    
      public TestOutputStream(OutputStream out, TestOption... options) throws IOException {
        this(out, Arrays.asList(options));
      }
    
      public TestOutputStream(OutputStream out, Iterable<TestOption> options) throws IOException {
        super(checkNotNull(out));
        this.options = ImmutableSet.copyOf(options);
        throwIf(OPEN_THROWS);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            outputs.stdErr.contains('--broken')
            outputs.stdErr.contains('USAGE: gradle [option...] [task...]')
            outputs.stdErr.contains('--help')
            outputs.stdErr.contains('--some-option')
    
            and:
            1 * actionFactory1.configureCommandLineParser(!null) >> {CommandLineParser parser -> parser.option('some-option')}
            1 * executionListener.onFailure({it instanceof CommandLineArgumentException})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/StringBuildOptionTest.groovy

            def option = new CommandLineOption([LONG_OPTION])
            options << option
            parsedCommandLine = new ParsedCommandLine(options)
            def parsedCommandLineOption = parsedCommandLine.addOption(LONG_OPTION, option)
            parsedCommandLineOption.addArgument(SAMPLE_VALUE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFileWriter.java

                    }
    
                    for (final String option : options.keySet()) {
                        options.get(option).write(writerContext);
                    }
    
                    optionFile.getSourceNames().write(writerContext);
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v1/generated.proto

      // one status to another
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // reason is the reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // message is a human-readable explanation containing details about
      // the transition
      // +optional
      optional string message = 5;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      // one status to another
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // reason is the reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // message is a human-readable explanation containing details about
      // the transition
      // +optional
      optional string message = 5;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/MultipleValueOptionElement.java

     */
    
    package org.gradle.api.internal.tasks.options;
    
    import org.gradle.api.tasks.options.Option;
    import org.gradle.internal.typeconversion.NotationParser;
    import org.gradle.internal.typeconversion.TypeConversionException;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.Set;
    
    /**
     * An option with one or more values.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 09 22:25:25 UTC 2018
    - 2K bytes
    - Viewed (0)
Back to top