Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for GetInputs (0.34 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                task.setTitle("Gradle API " + version);
    
                Javadocs javadocs = extension.getJavadocs();
    
                // TODO: This should be part of Javadoc task
                task.getInputs().file(javadocs.getJavadocCss())
                    .withPropertyName("stylesheetFile")
                    .withPathSensitivity(PathSensitivity.NAME_ONLY);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractSpockTaskTest.groovy

            TEST_TASK_NAME ==  getTask().getName()
            getTask().getDescription() == null
            project.is( getTask().getProject())
            getTask().getStandardOutputCapture() != null
            getTask().getInputs() != null
            getTask().getOutputs() != null
            getTask().getOnlyIf() != null
            getTask().getOnlyIf().isSatisfiedBy(getTask())
        }
    
        def testPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 14:27:55 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize_layout.cc

      LogicalResult matchAndRewrite(stablehlo::ReduceWindowOp reduce_op,
                                    PatternRewriter& rewriter) const override {
        MLIRContext* ctx = reduce_op.getContext();
        ValueRange inputs = reduce_op.getInputs();
        // Only handle binary reduce ops for now
        if (inputs.size() != 1) return failure();
        Value reduce_input = inputs[0];
    
        RankedTensorType reduce_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentTypeModelRuleExtractor.java

                public TypeRegistrationAction() {
                    super(registryRef, getRuleDefinition().getDescriptor());
                }
    
                @Override
                public List<? extends ModelReference<?>> getInputs() {
                    return emptyList();
                }
    
                @Override
                protected void execute(ModelRuleInvoker<?> invoker, ComponentSpecFactory registry, List<ModelView<?>> inputs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

            }
          } else {
            assert(input_sharding_type == xla::OpSharding::OTHER);
            if (partitioned_input.getInputs().size() != num_cores_per_replica)
              return tiled_sharding_mismatched(
                  partitioned_input.getInputs().size());
    
            for (int i = 0; i < sharding.tile_assignment_devices_size(); ++i) {
              const int assigned_logical_device =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize_functional_ops.cc

      FunctionType func_type = func.getFunctionType();
      if (llvm::ArrayRef(return_types) == func_type.getResults()) return;
    
      auto updated_type =
          FunctionType::get(func.getContext(), func_type.getInputs(), return_types);
      func.setType(updated_type);
    }
    
    // TODO(jpienaar): Remove when recursive side-effect modeling is added.
    bool IsSideEffectFree(func::FuncOp func) {
      return !func.getBody()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

            // A further work around for missing ability to skip task when input file is missing (see #getInputFileIfExists below)
            getInputs().file(executable);
            this.targetPlatform = objectFactory.property(NativePlatform.class);
            this.toolChain = objectFactory.property(NativeToolChain.class);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/rc/tasks/WindowsResourceCompile.java

            this.toolChain = objectFactory.property(NativeToolChain.class);
            incrementalCompiler = getIncrementalCompilerBuilder().newCompiler(this, source, includes, macros, Providers.FALSE);
            getInputs().property("outputType", new Callable<String>() {
                @Override
                public String call() {
                    NativeToolChainInternal nativeToolChain = (NativeToolChainInternal) toolChain.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractTaskTest.groovy

            TEST_TASK_NAME.equals(getTask().getName())
            getTask().getDescription() == null
            project.is(getTask().getProject())
            getTask().getStandardOutputCapture() != null
            getTask().getInputs() != null
            getTask().getOutputs() != null
            getTask().getOnlyIf() != null
            getTask().getOnlyIf().isSatisfiedBy(getTask())
        }
    
        def "test Path"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

        SmallVectorImpl<Value>* inputs, NamedAttrList* arg_attrs,
        llvm::StringMap<Attribute>* derived_attrs) const {
      for (const auto& operand :
           llvm::enumerate(signature.getFunctionType().getInputs())) {
        // If the index is larger than the operand number of the call_op, the
        // default value of the operand needs to be used.
        if (operand.index() >= call_op.getNumOperands()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top