Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 598 for inputs_ (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/InputUsingModelAction.java

            super(subject, descriptor, inputs);
            this.action = action;
        }
    
        public static <T> InputUsingModelAction<T> of(ModelReference<T> modelReference, ModelRuleDescriptor descriptor, List<ModelReference<?>> inputs, BiAction<? super T, ? super List<ModelView<?>>> initializer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/node_matchers.h

    inline impl::NodeMatcherProperties Attr(const string& name) {
      return impl::Attr(name);
    }
    
    // Matches a node with inputs `inputs`.
    //
    // `inputs` are ordered; `inputs`[i] must match input i.
    template <typename... Ts>
    impl::NodeMatcherProperties Inputs(Ts... inputs) {
      return impl::Inputs({inputs...});
    }
    
    // Matches the `idx`'th output of a node that matches `node`.
    ::testing::Matcher<impl::OutEdge> Out(int oidx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/inputs/PotentialInputs.java

        }
    
        public Object get(String path) {
            PotentialInput potentialInput = inputs.get(path);
            if (potentialInput == null) {
                throw new IllegalStateException("no input for " + path);
            }
            return potentialInput.get(modelViews);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzer_test.go

    	col3 := newSchema("col3")
    	col4 := newSchema("col4")
    
    	a1 := &analyzer{name: "a1", inputs: []config.GroupVersionKind{col1.GroupVersionKind()}}
    	a2 := &analyzer{name: "a2", inputs: []config.GroupVersionKind{col2.GroupVersionKind()}}
    	a3 := &analyzer{name: "a3", inputs: []config.GroupVersionKind{col3.GroupVersionKind()}}
    	a4 := &analyzer{name: "a4", inputs: []config.GroupVersionKind{col4.GroupVersionKind()}}
    
    	a := Combine("combined", a1, a2, a3, a4)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

                  dependsOn "a"
                  inputs.dir "b"
                  outputs.file "build/b"
                  doLast {}
                }
                task c {
                  dependsOn "b"
                  inputs.dir "c"
                  outputs.file "build/c"
                  doLast {}
                }
                task d {
                  dependsOn "c"
                  inputs.dir "d"
                  outputs.file "build/d"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. tensorflow/cc/ops/while_loop.cc

                      const std::vector<Output>& inputs,
                      std::vector<Output>* outputs) {
      DCHECK(outputs != nullptr);
      DCHECK(outputs->empty());
    
      // The control dependency is analogous to that in CreateCond().
      Scope body_scope =
          scope.NewSubScope("body").WithControlDependencies(inputs[0]);
      TF_RETURN_IF_ERROR(body(body_scope, inputs, outputs));
    
      const size_t num_loop_vars = inputs.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. tensorflow/c/eager/unified_api_test.cc

      bool UseFunction() const { return std::get<2>(GetParam()); }
    };
    
    // Checks that inputs[0] is a scalar.
    Status TestScalarShape(AbstractContext* ctx,
                           absl::Span<AbstractTensorHandle* const> inputs,
                           absl::Span<AbstractTensorHandle*> outputs) {
      PartialTensorShape shape;
      TF_RETURN_IF_ERROR(inputs[0]->Shape(&shape));
      if (shape.dims() != 0) {
        return errors::InvalidArgument(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/incrementalTask/groovy/build.gradle

            inputsDir.file('4.txt').asFile.text = 'Content for new file 4.'
        }
    }
    // end::updated-inputs[]
    
    // tag::removed-input[]
    tasks.register('removeInput', Delete) {
        delete 'inputs/3.txt'
    }
    // end::removed-input[]
    
    // tag::removed-output[]
    tasks.register('removeOutput', Delete) {
        delete layout.buildDirectory.file("outputs/1.txt")
    }
    // end::removed-output[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/CollectorTester.java

              A result(Collector<T, A, R> collector, Iterable<T> inputs) {
            List<A> stack = new ArrayList<>();
            for (T input : inputs) {
              A newAccum = collector.supplier().get();
              collector.accumulator().accept(newAccum, input);
              push(stack, newAccum);
            }
            push(stack, collector.supplier().get());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/gradients/custom_gradient_test.cc

        return absl::OkStatus();
      }
    };
    
    // Computes:
    //
    // @tf.custom_gradient
    // def f(input):
    //   def grad(grads):
    //     return grads[0]
    //   return tf.exp(input), grad
    // outputs = [f(inputs[0])]
    Status ExpWithPassThroughGrad(AbstractContext* ctx,
                                  absl::Span<AbstractTensorHandle* const> inputs,
                                  absl::Span<AbstractTensorHandle*> outputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top