Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 200 for outputDir (0.13 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CleaningJavaCompiler.java

            ImmutableSet.Builder<File> outputDirs = ImmutableSet.builderWithExpectedSize(3);
            MinimalJavaCompileOptions compileOptions = spec.getCompileOptions();
            addDirectoryIfNotNull(outputDirs, spec.getDestinationDir());
            addDirectoryIfNotNull(outputDirs, compileOptions.getAnnotationProcessorGeneratedSourcesDirectory());
            addDirectoryIfNotNull(outputDirs, compileOptions.getHeaderOutputDirectory());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/MutableUnitOfWorkBuilder.groovy

            Map<String, ? extends File> outputDirs,
            Collection<? extends TestFile> create,
    
            InputFingerprinter inputFingerprinter,
            ExecutionHistoryStore executionHistoryStore
        ) {
            this.inputProperties = inputProperties
            this.inputFiles = inputFiles
            this.outputFiles = outputFiles
            this.outputDirs = outputDirs
            this.create = create
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslJvmTargetIntegrationTest.kt

            assertThat(helpResult.output, containsString(outputFor(supportedKotlinJavaVersion(newerJvm.javaVersion!!))))
        }
    
        private
        val printScriptJavaClassFileMajorVersion = """
            println("Java Class Major Version = ${'$'}{org.gradle.internal.serialize.JavaClassUtil.getClassMajorVersion(this::class.java)}")
        """
    
        private
        fun outputFor(javaVersion: JavaVersion) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 08:31:21 UTC 2024
    - 9.5K 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. tensorflow/c/experimental/ops/gen/common/path_config.cc

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    PathConfig::PathConfig(const string& output_dir, const string& source_dir,
                           const string& api_dir_list,
                           const std::vector<string> op_names)
        : output_path(output_dir), op_names(op_names) {
      api_dirs = str_util::Split(api_dir_list, ",", str_util::SkipEmpty());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cache/cache_test.go

    	}
    	if entry, err := c1.Get(dummyID(1)); err != nil || entry.OutputID != dummyID(2) || entry.Size != 3 {
    		t.Fatalf("c1.Get(1) = %x, %v, %v, want %x, %v, nil", entry.OutputID, entry.Size, err, dummyID(2), 3)
    	}
    
    	c2, err := Open(cdir)
    	if err != nil {
    		t.Fatalf("Open(c2) (reuse): %v", err)
    	}
    	if entry, err := c2.Get(dummyID(1)); err != nil || entry.OutputID != dummyID(2) || entry.Size != 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. hack/grab-profiles.sh

          grab_profiles_from_component "${requested_profiles}" "${mem_pprof_flags}" "${binary}" "${tunnel_port}" "${path}/${node}/proxy" "${output_dir}/${component}" "${timestamp}"
        done
      else
        grab_profiles_from_component "${requested_profiles}" "${mem_pprof_flags}" "${binary}" "${tunnel_port}" "${path}" "${output_dir}/${component}" "${timestamp}"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  10. test/fixedbugs/issue23545.go

    		panic("FAIL")
    	}
    }
    
    func dummyID(x int) [Size]interface{} {
    	var out [Size]interface{}
    	out[0] = x
    	return out
    }
    
    const Size = 32
    
    type OutputID [Size]interface{}
    
    //go:noinline
    func Get() OutputID {
    	return dummyID(1234)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 10 01:20:45 UTC 2018
    - 557 bytes
    - Viewed (0)
Back to top