Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 105 for getOutputAs (0.25 sec)

  1. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublicationTest.groovy

            return publication
        }
    
        def createArtifactGenerator(File file) {
            return Stub(TaskProvider) {
                get() >> Stub(Task) {
                    getOutputs() >> Stub(TaskOutputs) {
                        getFiles() >> Stub(FileCollection) {
                            getSingleFile() >> file
                        }
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/tasks/AbstractCopyTask.java

                    .optional(true);
                getInputs().property(specPropertyName + ".filteringCharset", (Callable<String>) spec::getFilteringCharset);
            });
            this.getOutputs().doNotCacheIf(
                "Has custom actions",
                spec(task -> rootSpec.hasCustomActions())
            );
            this.mainSpec = rootSpec.addChild();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

            Stub(PathToFileResolver)
        )
    
        def setup() {
            ProjectInternal project = Mock(ProjectInternal)
            task.getProject() >> project
            task.getState() >> state
            task.getOutputs() >> taskOutputs
            task.getPath() >> "task"
            taskOutputs.setPreviousOutputFiles(_ as FileCollection)
            project.getBuildScriptSource() >> scriptSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DetermineExecutionPlanAction.java

            TaskInternal task = taskNode.getTask();
    
            PropertyWalker propertyWalker = propertyWalkerOf(task);
            propertyWalker.visitProperties(task, TypeValidationContext.NOOP, taskClassifier);
            task.getOutputs().visitRegisteredProperties(taskClassifier);
            if (taskClassifier.isDestroyer()) {
                // avoid walking further properties after discovering the task is destroyer
                return taskClassifier;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                DirectoryProperty flattenedAsciidocDirectory = project.getObjects().directoryProperty();
                flattenedAsciidocDirectory.set(extension.getUserManual().getStagingRoot().dir("raw"));
                task.getOutputs().dir(flattenedAsciidocDirectory);
                task.getExtensions().getExtraProperties().set("destinationDirectory", flattenedAsciidocDirectory);
                task.into(flattenedAsciidocDirectory);
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            return publication
        }
    
        def createArtifactGenerator(File file) {
            return Stub(TaskProvider) {
                get() >> Stub(Task) {
                    getOutputs() >> Stub(TaskOutputs) {
                        getFiles() >> Stub(FileCollection) {
                            getSingleFile() >> file
                        }
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

      }
      return true;
    }
    bool ValidateReplicatedOutput(TF::TPUReplicatedOutputOp rep, int num_replicas,
                                  StringAttr attr) {
      int arity = rep.getOutputs().size();
      if (arity != num_replicas) {
        rep.emitOpError(
            "TF2XLA TPU bridge input check: number of outputs inconsistent.")
            << " num_replicas=" << num_replicas << " no. of outputs=" << arity;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      // Store the control_token output for use by downstream nodes.
      maybe_control_node->second.outgoing = ctrl_op.getControl();
    
      // Remove the original op.
      op->replaceAllUsesWith(ctrl_op.getOutputs());
      op->erase();
      return ctrl_op.getOutputs();
    }
    
    // Build a FuncOp from a tflite SubGraph
    // The buffers are directly taken
    // from the deserialized flatbuffer as we do not have the type information to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

        }
    
        @Internal
        @Override
        public TaskInputsInternal getInputs() {
            return taskInputs;
        }
    
        @Internal
        @Override
        public TaskOutputsInternal getOutputs() {
            return taskOutputs;
        }
    
        @Internal
        @Override
        public TaskDestroyables getDestroyables() {
            return taskDestroyables;
        }
    
        @Internal
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

        send_tokens.push_back(send_token);
      }
      token = CreateSinkToken(builder, loc, send_tokens, token);
    
      SmallVector<Value, 4> recv_tokens;
      for (auto result : llvm::enumerate(host_compute.getOutputs())) {
        auto recv_token = CreateRecvOp(
            builder, loc, result.value(), host_compute.getRecvKey(), result.index(),
            token, xla::kXlaHostTransferTfRendezvousHandlerName, manual_sharding);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top