Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,251 for noOutputs (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

        }
    }
    ----
    =====
    ====
    
    == Understanding inputs and outputs
    
    Task inputs and outputs are important for:
    
    1. *Up-to-date checks* - Gradle’s incremental build feature helps your build avoid doing the same work more than once by looking at changes for task inputs and outputs.
    2. *Linking task inputs and outputs* - When outputs of one task are linked to the inputs of another, Gradle can automatically create task dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/JULRedirectorTest.groovy

                logger2.log(it, "Test");
                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. tensorflow/cc/tools/freeze_saved_model.cc

        } else {
          tensor_names.push_back(node_name + ":0");
        }
      }
      std::vector<Tensor> outputs;
      TF_RETURN_IF_ERROR(
          session->Run(/* inputs */ {}, tensor_names, /* targets */ {}, &outputs));
      for (size_t i = 0; i < variable_names.size(); i++) {
        (*variable_name_to_value_map)[variable_names[i]] = outputs[i];
      }
      return OkStatus();
    }
    
    // Converts a Variable NodeDef into a Constant NodeDef.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/build.gradle.kts

        delete(layout.buildDirectory.file("outputs/1.txt"))
    }
    // end::removed-output[]
    
    // tag::reverse[]
    tasks.register<IncrementalReverseTask>("incrementalReverse") {
        inputDir = file("inputs")
        outputDir = layout.buildDirectory.dir("outputs")
        inputProperty = project.findProperty("taskInputProperty") as String? ?: "original"
    }
    // end::reverse[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/IncrementalSwiftCompiler.java

        private final Compiler<SwiftCompileSpec> compiler;
        private final TaskOutputsInternal outputs;
        private final CompilerOutputFileNamingSchemeFactory compilerOutputFileNamingSchemeFactory;
        private final Deleter deleter;
    
        public IncrementalSwiftCompiler(
            Compiler<SwiftCompileSpec> compiler,
            TaskOutputsInternal outputs,
            CompilerOutputFileNamingSchemeFactory compilerOutputFileNamingSchemeFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    	var (
    		gp01      = regInfo{inputs: nil, outputs: []regMask{gp}}
    		gp11      = regInfo{inputs: []regMask{gpsp}, outputs: []regMask{gp}}
    		gp21      = regInfo{inputs: []regMask{gpsp, gpsp}, outputs: []regMask{gp}}
    		gp31      = regInfo{inputs: []regMask{gpsp, gpsp, gpsp}, outputs: []regMask{gp}}
    		fp32_01   = regInfo{inputs: nil, outputs: []regMask{fp32}}
    		fp32_11   = regInfo{inputs: []regMask{fp32}, outputs: []regMask{fp32}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/batch_use_same_function/saved_model.pbtxt

            }
          }
          outputs: {
            key: "outputs"
            value: {
              name: "batch_func:0"
            }
          }
        }
      }
      signature_def: {
        key: "predict1"
        value: {
          inputs: {
            key: "tf_example_input"
            value: {
              name: "input0"
              dtype: DT_STRING
            }
          }
          outputs: {
            key: "outputs"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 09 16:20:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/MainTest.groovy

            given:
            def thrownFailure = new RuntimeException('broken')
            action { throw thrownFailure }
    
            when:
            main.run()
    
            then:
            outputs.stdErr.contains('FAILURE: Build failed with an exception')
            outputs.stdErr.contains('broken')
            completedWithFailure
            failure == thrownFailure
        }
    
        def reportsActionCreationFailure() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/stablehlo_quantizer_odml_oss.ipynb

          "execution_count": null,
          "metadata": {
            "id": "RXZUHZQoQZOo"
          },
          "outputs": [],
          "source": [
            "!pip uninstall tensorflow --yes"
          ]
        },
        {
          "cell_type": "code",
          "execution_count": null,
          "metadata": {
            "id": "aYz36YEKPYRk"
          },
          "outputs": [],
          "source": [
            "!pip3 install tf-nightly\n",
            "!pip3 install keras-core"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 12 03:40:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInput()
    
                    void transform(TransformOutputs outputs) {
                        File inputFile = input.get().asFile
                        println "processing \${inputFile.name}"
                        def output = outputs.file(inputFile.name + "." + parameters.extension)
                        output.text = "ok"
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
Back to top