Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 957 for output0 (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

        ss << "\n\t" << it.first << " -> "
           << DataTypeString(it.second.imported_dtype) << " "
           << it.second.shape.DebugString();
      }
      ss << "\noutputs:";
      for (auto& output : outputs) ss << " " << output;
      ss << "\ncontrol_outputs:";
      for (auto& output : control_outputs) ss << " " << output;
      ss << "\nprune_unused_nodes: " << prune_unused_nodes;
      ss << "\nconvert_legacy_fed_inputs: " << convert_legacy_fed_inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            commandLineExecution.execute(executionListener)
    
            then:
            outputs.stdErr.contains('--broken')
            outputs.stdErr.contains('USAGE: gradle [option...] [task...]')
            outputs.stdErr.contains('--help')
            outputs.stdErr.contains('--some-option')
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

    """
            and:
            outputs.snapshot { run "mainExecutable" }
    
            when:
            otherHeaderFile << """
                // Some extra content
    """
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped compileTask
    
            and:
            outputs.recompiledFile sourceFile
            and:
            !output.contains("should not be used")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            run "compileJava"
            a.text = "@Helper class A { public void foo() {} }"
            outputs.snapshot { run "compileJava" }
    
            when:
            b.text = " class B { }"
            run "compileJava"
    
            then:
            outputs.deletedFiles("BHelper", "BHelperResource")
            outputs.recompiledFiles("B")
        }
    
        def "generated files are recompiled when annotated file is affected by a change"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/LoggingServiceRegistryTest.groovy

            then:
            outputs.stdOut == ''
            outputs.stdErr == ''
    
            when:
            loggingManager.levelInternal = LogLevel.WARN
            loggingManager.start()
            logger.warn("warning")
            logger.error("error")
    
            then:
            outputs.stdOut == TextUtil.toPlatformLineSeparators('warning\n')
            outputs.stdErr == TextUtil.toPlatformLineSeparators('error\n')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            source("class A {}", "class B {}")
            outputs.snapshot { run language.compileTaskName }
            source("class A { garbage }")
            runAndFail language.compileTaskName
            outputs.noneRecompiled()
    
            when:
            source("class A { }")
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A")
            outputs.hasFiles(file("A.class"), file("B.class"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                withArgument("--max-workers=$threadCount")
            }
        }
    
        def "overlapping outputs prevent parallel execution"() {
            given:
            withParallelThreads(2)
    
            and:
            buildFile << """
                aPing.outputs.dir "dir"
                bPing.outputs.file "dir/file"
            """
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            when:
            executer.withStacktraceEnabled()
            executer.withStackTraceChecksDisabled()
            withBuildCache().run "jar"
    
            then:
            output.contains("java.net.UnknownHostException")
            output.contains("invalid.invalid")
            output.contains("The remote build cache was disabled during the build due to errors.")
        }
    
        def "storing to cache does follow method preserving redirects"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

        }
    
        def "relative paths are canonicalized for output files"() {
            def fixture = new StaleOutputFixture(buildDir: 'build/output/../other-output')
            buildScript(fixture.buildScript)
            buildFile << """
                task writeToRealOutput() {
                    outputs.dir 'build/other-output'
                    def outputFile = file('build/other-output/output-file.txt')
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

                }
    
                task producer {
                    def outputFile = new File(buildDir, "some/file/in/buildDir/output.txt")
                    outputs.file(outputFile)
                    doLast {
                        outputFile.parentFile.mkdirs()
                        outputFile.text = "Output"
                    }
                }
            """
    
            when:
            withWatchFs().run "producer"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top