Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,821 for output0 (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

                println "src dir 1: " + srcDir.get()
                println "output dir 1: " + outputDir.get()
                buildDir = "output/some-dir"
                childDirName = "other-child"
                println "src dir 2: " + srcDir.get()
                println "output dir 2: " + outputDir.get()
    """
    
            when:
            run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            TaskWithOutputFile  | 'outputs' | [null] as Object[]
            TaskWithOutputFiles | 'outputs' | [null] as Object[]
            TaskWithOutputFiles | 'outputs' | [] as List
            TaskWithInputFiles  | 'inputs'  | [null] as Object[]
            TaskWithOutputDir   | 'outputs' | [null] as Object[]
            TaskWithOutputDirs  | 'outputs' | [null] as Object[]
            TaskWithOutputDirs  | 'outputs' | [] as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/optional_input.json

                32,
                16
              ],
              "name": "output",
              "quantization": {
              }
            }
          ],
          "inputs": [
            0,
            1
          ],
          "outputs": [
            2
          ],
          "operators": [
            {
              "inputs": [
                0,
                1
              ],
              "outputs": [
                2
              ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

      //    operators. We also convert the XlaClusterOutput output nodes of the
      //    function call into the outputs of the XlaLaunch operator.
      static Status BuildXlaLaunchOps(Graph* graph);
    
      struct XlaFunctionInfo {
        int variable_start_index = -1;
        std::string function_name;
      };
    
      // We need to introduce this version to adapt to the output of gpu inference
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/transforms/CopyPublicApiClassesTransform.kt

        @get:InputArtifact
        @get:Classpath
        abstract val inputArtifact: Provider<FileSystemLocation>
    
        override fun transform(outputs: TransformOutputs) {
            val jarFile = inputArtifact.get().asFile
            val zipFile = ZipFile(jarFile)
            val outputRoot = outputs.dir("public-api")
            zipFile.stream().forEach { entry ->
                if (entry.shouldInclude()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

                outputFile = "${sourceSets.main.get().output.resourcesDir}/output.js"
                sourceMap = true
            }
        }
        val unpackKotlinJsStdlib by registering {
            group = "build"
            description = "Unpack the Kotlin JavaScript standard library"
            val outputDir = file("$buildDir/$name")
            inputs.property("compileClasspath", configurations.compileClasspath.get())
            outputs.dir(outputDir)
            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                mark(classId, testId, stdout);
    
                output.writeBoolean(stdout);
                output.writeSmallLong(classId);
                output.writeSmallLong(testId);
    
                byte[] bytes;
                try {
                    bytes = outputEvent.getMessage().getBytes(messageStorageCharset.name());
                } catch (UnsupportedEncodingException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top