Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,497 for input0 (0.1 sec)

  1. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/JTarPacker.java

        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            TarOutputStream tarOutput = new TarOutputStream(output.openOutput());
            for (DataSource input : inputs) {
                @SuppressWarnings("OctalInteger")
                TarHeader header = TarHeader.createHeader(input.getName(), input.getLength(), 0, false, 0644);
                TarEntry entry = new TarEntry(header);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.1K 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. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/CalculatedTaskInputFileCollection.java

            super(taskDependencyFactory);
            this.taskPath = taskPath;
            this.calculatedFiles = calculatedFiles;
            targets = new ArrayList<>(1 + inputs.length);
            for (Object input : inputs) {
                if (input instanceof LifecycleAwareValue) {
                    targets.add((LifecycleAwareValue) input);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. cmd/object-api-input-checks.go

    Anis Eleuch <******@****.***> 1712232280 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top