Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,025 for input0 (0.13 sec)

  1. tensorflow/cc/framework/while_gradients_test.cc

      CreateLoop(
          [](const Scope& s, const std::vector<Output>& inputs, Output* output) {
            *output = ops::Less(s, inputs[0], 10);
            return s.status();
          },
          [](const Scope& s, const std::vector<Output>& inputs,
             std::vector<Output>* outputs) {
            outputs->push_back(ops::AddN(s, {inputs[0], inputs[1]}));
            outputs->push_back(ops::AddN(s, {inputs[1], 1}));
            outputs->push_back(inputs[2]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 27 20:32:17 UTC 2017
    - 7.7K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/util.cc

        }
    
        inputs.emplace_back(feed_name, tensor);
      }
    
      if (!request_inputs.empty() &&
          seen_request_inputs.size() != request_inputs.size()) {
        return absl::InvalidArgumentError(absl::StrCat(
            "Inputs contains invalid name. Used request inputs: ",
            absl::StrJoin(seen_request_inputs, ","),
            ", request input: ", absl::StrJoin(GetMapKeys(request_inputs), ",")));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractTaskOutputPackagingBenchmark.java

            }
            return inputs.build();
        }
    
        private static DataSource packSample(String name, List<DataSource> inputs, Packer packer, DataAccessor accessor) throws IOException {
            long sumLength = 0;
            for (DataSource input : inputs) {
                sumLength += input.getLength();
            }
            DataTarget target = accessor.createTarget(name, Level.Trial);
            packer.pack(inputs, target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/JTarPacker.java

        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            TarOutputStream tarOutput = new TarOutputStream(output.openOutput());
            for (DataSource input : inputs) {
                @SuppressWarnings("OctalInteger")
                TarHeader header = TarHeader.createHeader(input.getName(), input.getLength(), 0, false, 0644);
                TarEntry entry = new TarEntry(header);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputs.java

         *
         * @return The input files. Returns an empty collection if this task has no input files.
         */
        FileCollection getFiles();
    
        /**
         * Registers some input files for this task.
         *
         * @param paths The input files. The given paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         * @return a property builder to further configure the property.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 16:09:35 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/CommonsTarPacker.java

        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            TarArchiveOutputStream tarOutput = new TarArchiveOutputStream(output.openOutput());
            for (DataSource input : inputs) {
                TarArchiveEntry entry = new TarArchiveEntry(input.getName());
                entry.setSize(input.getLength());
                tarOutput.putArchiveEntry(entry);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/normalization/InputNormalization.java

     * limitations under the License.
     */
    
    package org.gradle.normalization;
    
    /**
     * Input normalization configuration.
     *
     * Input normalization is used when Gradle tries to determine if two task inputs are different.
     * Gradle normalizes both inputs and the inputs are considered different if and only if the normalizations are different.
     *
     * @since 4.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 975 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/empty-input-shapes.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir %s
    
    node {
      name: "input"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_BOOL
        }
      }
    }
    
    node {
      name: "func0"
      op: "func_name"
      input: "input"
    }
    
    library {
      function {
        signature {
          name: "func_name"
          input_arg {
            name: "arg0"
            type: DT_BOOL
          }
        }
        ret {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 01 22:43:47 UTC 2021
    - 491 bytes
    - Viewed (0)
  9. docs/debugging/inspect/main.go

    		}
    	}
    
    	var inputs []string
    
    	// Parse parameters
    	switch {
    	case *stdin:
    		// Parse 'mc support inspect --json' output
    		input := struct {
    			File string `json:"file"`
    			Key  string `json:"key"`
    		}{}
    		got, err := io.ReadAll(os.Stdin)
    		if err != nil {
    			fatalErr(err)
    		}
    		fatalErr(json.Unmarshal(got, &input))
    		inputs = []string{input.File}
    		*keyHex = input.Key
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion_test.go

    	}
    }
    
    func TestConvertSliceStringToDeletionPropagation(t *testing.T) {
    	tcs := []struct {
    		Input  []string
    		Output v1.DeletionPropagation
    	}{
    		{
    			Input:  nil,
    			Output: "",
    		},
    		{
    			Input:  []string{},
    			Output: "",
    		},
    		{
    			Input:  []string{"foo"},
    			Output: "foo",
    		},
    		{
    			Input:  []string{"bar", "foo"},
    			Output: "bar",
    		},
    	}
    
    	for _, tc := range tcs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 3.2K bytes
    - Viewed (0)
Back to top