Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,267 for Outputs (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/c/eager/c_api_unified_experimental_graph.cc

        }
        inputs_.push_back(t->output_);
        *output = tensorflow::down_cast<TracingTensorHandle*>(outputs[0]);
        return absl::OkStatus();
      }
    
      Status Finalize(OutputList* outputs, AbstractFunction** f) override {
        std::vector<TF_Output> graph_outputs;
        graph_outputs.reserve(outputs->outputs.size());
        for (auto* abstract_output : outputs->outputs) {
          GraphTensor* output = dyn_cast<GraphTensor>(abstract_output);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K 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/core-execution/execution/src/main/java/org/gradle/internal/execution/BuildOutputCleanupRegistry.java

        /**
         * Registers outputs to be cleaned up as {@link org.gradle.api.Project#files(Object...)}.
         */
        void registerOutputs(Object files);
    
        /**
         * Determines if an output file is owned by this build and therefore can be safely removed.
         *
         * A file is owned by the build if it is registered as an output directly or within a directory registered as an output.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top