Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 5,272 for Option (0.12 sec)

  1. platforms/documentation/docs/src/snippets/buildlifecycle/taskExecutionEvents/tests-groovy/taskExecutionEvents.groovy.out

    * Where:
    Build file '/home/user/gradle/samples/build.gradle' line: 6
    
    * What went wrong:
    Execution failed for task ':broken'.
    > broken
    
    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 471 bytes
    - Viewed (0)
  2. .idea/codeStyles/codeStyleConfig.xml

    <component name="ProjectCodeStyleConfiguration">
      <state>
        <option name="USE_PER_PROJECT_SETTINGS" value="true" />
        <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
      </state>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:10:36 UTC 2024
    - 210 bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/CharSinkTest.java

      }
    
      public void testClosesOnErrors_copyingFromCharSourceThatThrows() {
        for (TestOption option : EnumSet.of(OPEN_THROWS, READ_THROWS, CLOSE_THROWS)) {
          TestCharSource failSource = new TestCharSource(STRING, option);
          TestCharSink okSink = new TestCharSink();
          assertThrows(IOException.class, () -> failSource.copyTo(okSink));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-configuration/src/main/java/org/gradle/buildconfiguration/tasks/UpdateDaemonJvm.java

        public abstract RegularFileProperty getPropertiesFile();
    
        /**
         * The version of the JVM required to run the Gradle Daemon.
         *
         * @since 8.8
         */
        @Input
        @Optional
        @Option(option = "jvm-version", description = "The version of the JVM required to run the Gradle Daemon.")
        @Incubating
        public abstract Property<JavaVersion> getJvmVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/CommandLineOptionConfigurationTest.groovy

        }
    
        def "can mark option as incubating"() {
            when:
            CommandLineOptionConfiguration configuration = CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, DESCRIPTION)
            configuration.incubating()
    
            then:
            configuration.incubating
        }
    
        def "can mark option as deprecated"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/EnumJavadocOptionFileOption.java

    import org.gradle.util.internal.TextUtil;
    
    import java.io.IOException;
    
    /**
     * @param <T> The type which this option represents.
     */
    public class EnumJavadocOptionFileOption<T> extends AbstractJavadocOptionFileOption<T> {
        public EnumJavadocOptionFileOption(String option, T value) {
            super(option, value);
        }
    
        @Override
        public void write(JavadocOptionFileWriterContext writerContext) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/AbstractReferenceShortenerForWholeFileTest.kt

                        this += ShortenStrategy.entries.associateWith { option ->
                            val shorteningsForOption = collectPossibleReferenceShortenings(
                                mainFile,
                                mainFile.textRange,
                                classShortenStrategy = { option },
                                callableShortenStrategy = { option }
                            )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. tensorflow/cc/saved_model/image_format/README.md

    If you are a TensorFlow Python user, you can try this format by setting the
    `experimental_image_format` option:
    
    ```
    tf.savedmodel.save(
        model, path,
        options=tf.saved_model.SaveOptions(experimental_image_format=True)
    )
    ```
    
    When this option is enabled, exported SavedModels with proto size > 2GB will
    automatically save with the new format (`.cpb` instead of `.pb`).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 22:11:19 UTC 2023
    - 674 bytes
    - Viewed (0)
Back to top