Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,749 for input0 (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ZipPacker.java

        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            ZipOutputStream zipOutput = new ZipOutputStream(output.openOutput());
            for (DataSource input : inputs) {
                ZipEntry entry = new ZipEntry(input.getName());
                entry.setSize(input.getLength());
                zipOutput.putNextEntry(entry);
                PackerUtils.packEntry(input, zipOutput, buffer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

      const llvm::MemoryBuffer* input =
          source_mgr->getMemoryBuffer(source_mgr->getMainFileID());
      std::string error;
      auto loc =
          mlir::FileLineColLoc::get(context, input->getBufferIdentifier(), 0, 0);
      std::vector<std::string> inputs;
      std::vector<std::string> outputs;
      return tflite::FlatBufferToMlir(
          absl::string_view(input->getBufferStart(), input->getBufferSize()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            def actualDir = file("actualDir").createDir()
            file("symlink1").createLink(actualDir)
            file("symlink2").createLink(actualDir)
    
            buildFile << """
                task myTask {
                    def outputFile = file("build/output.txt")
                    inputs.dir("symlink1")
                    inputs.dir("symlink2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/work/InputChanges.java

     */
    public interface InputChanges {
        /**
         * Indicates if it was possible for Gradle to determine which input files were out of date compared to a previous execution.
         * Incremental inputs are unavailable when history is unavailable (i.e. this piece of work has never been executed before), or if there are changes to non-file input properties, or output files.
         * <p>
         * When <code>true</code>:
         * </p>
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskEnumTypesInputPropertyIntegrationTest.groovy

    import spock.lang.Issue
    
    class TaskEnumTypesInputPropertyIntegrationTest extends AbstractIntegrationSpec {
        @Issue("GRADLE-3018")
        def "task can take an input with enum type and task action defined in the build script"() {
            buildFile """
    task someTask {
        inputs.property "someEnum", SomeEnum.E1
        def f = file("build/e1")
        outputs.dir f
        doLast {
            f.mkdirs()
        }
    }
    
    enum SomeEnum {
        E1, E2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

        }
    
        /**
         * The hashes of the inputs.
         * <p>
         * If the inputs were not snapshotted, all fields are null.
         * This may occur if the task had no outputs.
         */
        public interface Result {
    
            /**
             * The overall hash value for the inputs.
             * <p>
             * Null if the overall key was not calculated because the inputs were invalid.
             */
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/python/composite.py

                   op_name,
                   inputs=None,
                   attrs=None,
                   derived_attrs=None,
                   outputs=None):
        self._op_name = op_name
        self._inputs = inputs
        self._attrs = attrs
        self._derived_attrs = derived_attrs
        self._outputs = outputs
    
      def __call__(self, compose_fn):
        # TODO(fengliuai): more sanity check of the input function and make sure
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top