Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 351 for inputs_1 (0.1 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskActionIntegrationTest.groovy

                    def output = file("build/task-a/output.txt")
                    inputs.file input
                    outputs.file output
                    outputs.cacheIf { true }
                    doFirst action
                }
    
                task taskB {
                    def output = file("build/task-b/output.txt")
                    inputs.file input
                    outputs.file output
                    outputs.cacheIf { true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion_test.go

    )
    
    func TestMapToLabelSelectorRoundTrip(t *testing.T) {
    	// We should be able to round-trip a map-only selector through LabelSelector.
    	inputs := []map[string]string{
    		nil,
    		{},
    		{"one": "foo"},
    		{"one": "foo", "two": "bar"},
    	}
    	for _, in := range inputs {
    		ls := &v1.LabelSelector{}
    		if err := v1.Convert_Map_string_To_string_To_v1_LabelSelector(&in, ls, nil); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/svdf.mlir

    // CHECK-EMPTY:
    // CHECK-NEXT:         },
    // CHECK-NEXT:         has_rank: true
    // CHECK-NEXT:       } ],
    // CHECK-NEXT:       inputs: [ 0, 1, 2, 3 ],
    // CHECK-NEXT:       outputs: [ 5 ],
    // CHECK-NEXT:       operators: [ {
    // CHECK-NEXT:         inputs: [ 0, 1, 2, 3, 4 ],
    // CHECK-NEXT:         outputs: [ 5 ],
    // CHECK-NEXT:         builtin_options_type: SVDFOptions,
    // CHECK-NEXT:         builtin_options: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/unidirectional_sequence_rnn.mlir

    // CHECK-EMPTY:
    // CHECK-NEXT:         },
    // CHECK-NEXT:         has_rank: true
    // CHECK-NEXT:       } ],
    // CHECK-NEXT:       inputs: [ 0, 1, 2, 3 ],
    // CHECK-NEXT:       outputs: [ 5 ],
    // CHECK-NEXT:       operators: [ {
    // CHECK-NEXT:         inputs: [ 0, 1, 2, 3, 4 ],
    // CHECK-NEXT:         outputs: [ 5 ],
    // CHECK-NEXT:         builtin_options_type: SequenceRNNOptions,
    // CHECK-NEXT:         builtin_options: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/c/eager/gradients_internal.h

    Status Reset(AbstractOperation*, const char* op, const char* raw_device_name,
                 ForwardOperation*);
    
    // Records the inputs in the `ForwardOperation`.
    Status AddInput(AbstractOperation*, AbstractTensorHandle*, ForwardOperation*);
    Status AddInputList(AbstractOperation*,
                        absl::Span<AbstractTensorHandle* const> inputs,
                        ForwardOperation*);
    
    // Sets the attrs in the `ForwardOperation`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:27:35 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ClosingFuture.java

        private final boolean allMustSucceed;
        protected final ImmutableList<ClosingFuture<?>> inputs;
    
        private Combiner(boolean allMustSucceed, Iterable<? extends ClosingFuture<?>> inputs) {
          this.allMustSucceed = allMustSucceed;
          this.inputs = ImmutableList.copyOf(inputs);
          for (ClosingFuture<?> input : inputs) {
            input.becomeSubsumedInto(closeables);
          }
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.td

        $equation, $args, $einsum),
      [(IsInt32ElementType $einsum),
       // Constraint to check:
       // 1. The einsum has two inputs and one output.
       // 2. The einsum is not created by the convert function itself.
       // 3. Both inputs are int32 tensor.
       // 4. Both inputs have the graph ancestor of either const-(sub), or cast-sub.
       // 5. The type of the const tensor (or input of the cast operation) is int8.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

                                                 const char* prefix2 = nullptr) {
        TF_Output inputs[2];
        TF_Output outputs[1];
        TF_Output grad_outputs[2];
    
        BuildSuccessGraph(inputs, outputs);
    
        AddGradients(false, prefix1, inputs, 2, outputs, 1, grad_outputs);
        if (prefix2 != nullptr) {
          AddGradients(false, prefix2, inputs, 2, outputs, 1, grad_outputs);
        }
      }
    
      TF_Status* s_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyVerification-disablingVerification/groovy/build.gradle

                disableDependencyVerification()
            }
        }
    }
    // end::disabling-one-configuration[]
    
    tasks.register("checkDependencies") {
        FileCollection classpath = configurations.myPluginClasspath
        inputs.files(classpath)
        doLast {
            println(classpath.files)
        }
    }
    
    // tag::disabling-detached-configuration[]
    tasks.register("checkDetachedDependencies") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/array_grad.cc

        return errors::Internal("Invalid input index");
      }
      std::vector<Output> inputs;
      inputs.reserve(end_value_index - start_value_index);
      for (int i = start_value_index; i < end_value_index; ++i) {
        inputs.push_back(op.input(i));
      }
    
      auto shapes = ShapeN(scope, inputs);
      const auto unique_name = scope.GetUniqueNameForOp("ConcatOffset");
      auto builder =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
Back to top