Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for outputDir (0.25 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

            scopes.PROVIDED.plus += [ configurations.compileClasspath ]
            downloadJavadoc = true
            downloadSources = false
    
            inheritOutputDirs = false
            outputDir = file('muchBetterOutputDir')
            testOutputDir = file('muchBetterTestOutputDir')
    
            jdkName = '1.6'
    
            iml {
                generateTo = file('customImlFolder')
    
                withXml {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                    it.getOutputFile().set(new File(project.buildDir, "consumer/out.txt"))
    
                    MyTask myTask = (MyTask) tasks.getByName("myTask")
                    Provider<Set<File>> inputs = myTask.outputDir.map {
                        File[] files = it.asFile.listFiles()
                        Set<File> result = new HashSet<File>()
                        for (File f : files) {
                            if (f.name.toInteger() % 2 == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    }
                }
    
                extension.customData.vcsUrl = "goose"
                tasks.register("crashTask", CrashTask) {
                    customData = extension.customData
                    outputDir = file("build/crashTask")
                }
            """
    
            when:
            succeeds "crashTask"
            then:
            executedAndNotSkipped ":crashTask"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/prog.go

    	}
    	if copy(e.OutputID[:], res.OutputID) != len(res.OutputID) {
    		return Entry{}, &entryNotFoundError{errors.New("incomplete ProgResponse OutputID")}
    	}
    	c.noteOutputFile(e.OutputID, res.DiskPath)
    	return e, nil
    }
    
    func (c *ProgCache) noteOutputFile(o OutputID, diskPath string) {
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	c.outputFile[o] = diskPath
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/cache.go

    type ActionID [HashSize]byte
    
    // An OutputID is a cache output key, the hash of an output of a computation.
    type OutputID [HashSize]byte
    
    // Cache is the interface as used by the cmd/go.
    type Cache interface {
    	// Get returns the cache entry for the provided ActionID.
    	// On miss, the error type should be of type *entryNotFoundError.
    	//
    	// After a success call to Get, OutputFile(Entry.OutputID) must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

        }
    
        public void create(final File outputJar, final Iterable<? extends File> files) {
            LOGGER.info("Generating " + outputJar.getAbsolutePath());
            ProgressLogger progressLogger = progressLoggerFactory.newOperation(RuntimeShadedJarCreator.class);
            progressLogger.setDescription("Generating " + outputJar.getName());
            progressLogger.started();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

          directory.
    
      Raises:
        ValueError iff the graph does not contain a valid signature or the file
        prefix tensor is not found in the graph.
      """
      create_empty_output_dir(output_dir)
      v1_builder = builder.SavedModelBuilder(output_dir)
    
      graph_def = _restore_output_tensor_names(graph_def)
      with session.Session(graph=ops.Graph()) as sess:
        importer.import_graph_def(graph_def, name='')
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

          function.
    
      Raises:
        FileExistsError: Iff `output_dir` is not empty and `overwrite` is false.
      """
      dir_not_empty = (
          output_dir is not None
          and file_io.file_exists_v2(output_dir)
          and file_io.list_directory_v2(output_dir)
      )
    
      if dir_not_empty and not overwrite:
        raise FileExistsError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/certs_test.go

    				}
    			}
    		default:
    			outputStr := output.String()
    			if tc.brokenCertName != "" {
    				assert.Contains(t, outputStr, "!MISSING!")
    			} else {
    				assert.NotContains(t, outputStr, "!MISSING!")
    			}
    
    			var lines []string
    			for _, line := range strings.SplitAfter(outputStr, "\n") {
    				if strings.TrimSpace(line) != "" {
    					lines = append(lines, line)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:26:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

            // [(replica:0,core:0), (replica:1,core:0), ...,
            //  (replica:0,core:1), (replica:1,core:1), ...]
            uint64_t output_id =
                core_id * num_replicas + replica_id + results.size();
            result.replaceAllUsesWith(replicate_op.getResult(output_id));
          }
        }
    
        // Assume all the replicas have the same structure.
        mlir::TF::TPUPartitionedOutputV2Op first_op = *(ops.begin());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
Back to top