Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,210 for output0 (0.11 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

      }
      if (!tensorflow::ParseOutputArrayInfo(output_arrays_flag, &outputs).ok()) {
        return emitError(loc, "parsing output array info failed ")
                   << output_arrays_flag,
               nullptr;
      }
      return tflite::FlatBufferToMlir(
          absl::string_view(input->getBufferStart(), input->getBufferSize()),
          context, loc, use_external_constant, inputs, outputs,
          experimental_prune_unreachable_nodes_unconditionally,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskTypeUpToDateIntegrationTest.groovy

            buildFile """
                task copy(type: SimpleCopy) {
                    input = file("input.txt")
                    output = file("output.txt")
                }
            """
    
            when:
            succeeds "copy"
            then:
            executedAndNotSkipped ":copy"
    
            file("output.txt").makeOlder()
    
            when:
            succeeds "copy"
            then:
            skipped ":copy"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  3. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

            1 * task.getOutputs() >> outputs
            1 * outputs.getFiles() >> fileCollection
            1 * fileCollection.getSingleFile() >> Stub(File)
            0 * _
        }
    
        def "fails resolving lazy MavenArtifact for Provider<Task> notation when task has a multiple output files"() {
            def task = Mock(Task)
            def taskProvider = Mock(TestTaskProvider)
            def outputs = Mock(TaskOutputsInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaSourceIncrementalCompilationIntegrationTest.groovy

            textFile.text = "text file as root"
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
            file("extra/B.${language.name}").text = "class B { String change; }"
            executer.withArgument "--info"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "B", "C")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProcessOutputProviderIntegrationTest.groovy

            when:
            run("-q", ":printScriptOutput")
    
            then:
            outputContains("Script output")
        }
    
        def "task with providers.exec provider input is up to date for second run"() {
            given:
            def testScript = ShellScript.builder()
                .printText("Script output")
                .writeTo(testDirectory, "script")
    
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/define_op_template.py

      if FLAGS.gen_register_op:
        assert FLAGS.output.endswith('.cc')
        generated_code = gen_register_op(sys.modules[__name__], '_composite_')
      else:
        assert FLAGS.output.endswith('.mlir')
        generated_code = tfr_gen_from_module(sys.modules[__name__], '_composite_')
    
      dirname = os.path.dirname(FLAGS.output)
      if not os.path.exists(dirname):
        os.makedirs(dirname)
      with open(FLAGS.output, 'w') as f:
        f.write(generated_code)
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/JULRedirectorTest.groovy

                logger3.log(it, "Test");
            }
            redirector.stop()
    
            then:
            0 * _
    
            System.out == outputs.stdOutPrintStream
            System.err == outputs.stdErrPrintStream
        }
    
        def "start and stop output with redirection and default logging"() {
            when:
            redirector.redirectStandardOutputTo(stdOutListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/CacheableTaskOutcomeCrossVersionSpec.groovy

                    def outputFile = new File(buildDir, "output")
                    inputs.file("input")
                    outputs.file(outputFile)
                    outputs.cacheIf { true }
    
                    doLast {
                        outputFile.parentFile.mkdirs()
                        outputFile.text = "done"
                    }
                }
    """
            def cacheDir = file("task-output-cache")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/UpToDateIntegTest.groovy

            result.assertTaskSkipped(":createEmpty")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13554")
        def "removing an empty output directory is detected even when it existed before the first task execution"() {
            buildFile """
                task createEmptyDir {
                    outputs.dir("empty")
                    doLast {
                        // do nothing, since Gradle does create the empty directory for us.
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 12:00:09 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionOutputState.java

         * as this does not include overlapping outputs not produced by the work.
         */
        ImmutableSortedMap<String, FileSystemSnapshot> getOutputFilesProducedByWork();
    
        /**
         * The origin metadata of the outputs captured.
         */
        OriginMetadata getOriginMetadata();
    
        /**
         * Whether the outputs come from a previous execution.
         */
        boolean isReused();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top