Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,961 for output0 (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskOutputs.java

        /**
         * Returns true if this task has declared any outputs. Note that a task may be able to produce output files and
         * still have an empty set of output files.
         *
         * @return true if this task has declared any outputs, otherwise false.
         */
        boolean getHasOutput();
    
        /**
         * Returns the output files of this task.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 11:37:21 UTC 2019
    - 7.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

            [_AsClassName(x) for x in ctx.attr.srcs],
        )
        ctx.actions.write(output = ctx.outputs.out, content = _OUTPUT % (
            classes,
            ctx.attr.outname,
        ))
    
    _GenSuite = rule(
        attrs = {
            "srcs": attr.label_list(allow_files = True),
            "outname": attr.string(),
        },
        outputs = {"out": "%{name}.java"},
        implementation = _impl,
    )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "processing [\${input.name}]"
                        assert ${lenient} || input.file
                        def output = outputs.file(input.name + "." + parameters.targetColor.get())
                        if (input.file) {
                            output.text = input.text + "-" + parameters.targetColor.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    For the aforementioned reasons, task output caching is automatically disabled for tasks whose output directories overlap with another task.
    
    Build scans show tasks where caching was disabled due to overlapping outputs in the timeline:
    
    [.screenshot]
    image::build-cache/overlapping-outputs-timeline.png[]
    
    == Reuse of outputs between different tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/caching/internal/packaging/BuildCacheEntryPackingIntegrationTest.groovy

                    outputs.file("output.txt")
                        .withPropertyName("$NON_ASCII_NAME")
                    outputs.cacheIf { true }
                    doLast {
                        file("output.txt").text = "output"
                    }
                }
            """
    
            when:
            withBuildCache().run("createFile", "-Dfile.encoding=$fileEncoding")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. test/copy.go

    	input8, output8 = output8, input8
    	input16, output16 = output16, input16
    	input32, output32 = output32, input32
    	input64, output64 = output64, input64
    	in := 0
    	out := 13
    	for i := range input8 {
    		input8[i] = u8(in)
    		output8[i] = u8(out)
    		outputS[i] = u8(out)
    		input16[i] = u16(in)
    		output16[i] = u16(out)
    		input32[i] = u32(in)
    		output32[i] = u32(out)
    		input64[i] = u64(in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/end2end/custom_opdef.pbtxt

    # CHECK-NEXT: %[[CUSTOM:.*]] = "tfl.custom_tf"(%arg0, %arg1) ({
    # CHECK-NEXT: ^bb0(%arg2: tensor<4xi32>, %arg3: tensor<4xi32>):
    # CHECK-NEXT:   %[[OUTPUTS:.*]] = "tf.BannaPotatoSaladWithColeslaw"(%arg2, %arg3) {T = i32, device = ""} : (tensor<4xi32>, tensor<4xi32>) -> tensor<*xi32>
    # CHECK-NEXT:   "tfl.yield"(%[[OUTPUTS]]) : (tensor<*xi32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 21 11:04:11 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            output.contains "Task 'b' file 'output.txt' with 'output-file'"
            output.contains "Task 'b2' file 'output.txt' with 'output-file'"
    
            when:
            succeeds "b", "b2"
    
            then:
            result.assertTasksSkipped(':a')
            result.assertTasksNotSkipped(':b', ':b2')
            output.contains "Task 'b' file 'output.txt' with 'output-file'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. pkg/log/default.go

    // Fatal outputs a message at fatal level.
    func Fatal(fields any) {
    	defaultScope.Fatal(fields)
    }
    
    // Fatalf uses fmt.Sprintf to construct and log a message at fatal level.
    func Fatalf(format string, args ...any) {
    	defaultScope.Fatalf(format, args...)
    }
    
    // FatalEnabled returns whether output of messages using this scope is currently enabled for fatal-level output.
    func FatalEnabled() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/add.pbtxt

    # UNKNOWN:           %[[add:.*]], %[[add_control:.*]] = tf_executor.island wraps "tf.Add"(%[[ARG_0]], %[[ARG_1]])
    # UNKNOWN:           fetch %[[add]]
    
    # DYNAMIC-LABEL: func @main
    # DYNAMIC-SAME:  (%[[ARG_0:[a-z0-9]+]]: tensor<?x1x?xi32>, %[[ARG_1:[a-z0-9]+]]: tensor<1x?x1xi32>) -> tensor<*xi32>
    # DYNAMIC-SAME:  control_outputs = ""
    # DYNAMIC-SAME:  inputs = "input0,input1"
    # DYNAMIC-SAME:  outputs = "Add"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 17 08:38:39 UTC 2020
    - 3.4K bytes
    - Viewed (0)
Back to top