Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 108 of 108 for outputDir (0.14 sec)

  1. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

        inputs.files(copyTask)
            .withPropertyName("inputs")
            .withPathSensitivity(PathSensitivity.RELATIVE)
        outputs.dir('some-dir') // up-to-date check for outputs
            .withPropertyName("outputDir")
        doLast {
            copy {
                // Copy the output of copyTask
                from copyTask
                into 'some-dir'
            }
        }
    }
    // end::copy-method-with-dependency[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxerTest.java

            assertEquals(expectedLength, bytes.length, result);
        }
    
        class Outputter implements Callable<ProjectSegment> {
            private final ThreadOutputMuxer threadOutputMuxer;
    
            private final ProjectSegment item;
    
            private final String response;
    
            Outputter(ThreadOutputMuxer threadOutputMuxer, ProjectSegment item, String response) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/build.gradle.kts

    val copyGr8OutputJarAsGradleWrapperJar by tasks.registering(Copy::class) {
        from(tasks.named<Gr8Task>("gr8R8Jar").flatMap { it.outputJar() })
        into(layout.buildDirectory.dir("libs"))
    }
    
    tasks.jar {
        from(tasks.named<Gr8Task>("gr8R8Jar").flatMap { it.outputJar() })
        dependsOn(copyGr8OutputJarAsGradleWrapperJar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top