Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,412 for fanout (0.3 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

         * <h4>'gradle'</h4>
         * <p>
         * A Repository Layout that applies the following patterns:
         * </p>
         * <ul>
         *     <li>Artifacts: <code>$baseUri/{@value #GRADLE_ARTIFACT_PATTERN}</code></li>
         *     <li>Ivy: <code>$baseUri/{@value #GRADLE_IVY_PATTERN}</code></li>
         * </ul>
         * <h4>'maven'</h4>
         * <p>
         * A Repository Layout that applies the following patterns:
         * </p>
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/workerApi/md5CustomTask/groovy/build.gradle

    plugins { id 'base' } // <1>
    
    tasks.register("md5", CreateMD5) {
        destinationDirectory = project.layout.buildDirectory.dir("md5") // <2>
        source(project.layout.projectDirectory.file('src')) // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 205 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/workerApi/md5NoIsolation/groovy/build.gradle

    plugins { id 'base' } // <1>
    
    tasks.register("md5", CreateMD5) {
        destinationDirectory = project.layout.buildDirectory.dir("md5") // <2>
        source(project.layout.projectDirectory.file('src')) // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 205 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

            url "../local-repo"
        }
    }
    // end::local-ivy-repo[]
    
    // tag::ivy-repo-with-maven-layout[]
    repositories {
        ivy {
            url "http://repo.mycompany.com/repo"
            layout "maven"
        }
    }
    // end::ivy-repo-with-maven-layout[]
    
    // tag::ivy-repo-with-pattern-layout[]
    repositories {
        ivy {
            url "http://repo.mycompany.com/repo"
            patternLayout {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/structs/hostlayout.go

    package structs
    
    // HostLayout marks a struct as using host memory layout. A struct with a
    // field of type HostLayout will be laid out in memory according to host
    // expectations, generally following the host's C ABI.
    //
    // HostLayout does not affect layout within any other struct-typed fields
    // of the containing struct, nor does it affect layout of structs
    // containing the struct marked as host layout.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/common/dependency-reports/src/main/java/com/example/DependencyReportsPlugin.java

    // end::listResolvedArtifacts[]
    
                    task.getArtifactVariants().set(artifacts.map(new VariantExtractor()));
                    task.getArtifactFiles().set(artifacts.map(new FileExtractor(layout)));
    
                    task.getOutputFile().set(layout.getBuildDirectory().file(task.getName() + "/report.txt"));
                });
    
                tasks.register("graphResolvedComponents", GraphResolvedComponents.class, task -> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/archivesWithBasePlugin/kotlin/build.gradle.kts

    // tag::create-archive-with-base-plugin-example[]
    plugins {
        base
    }
    
    version = "1.0.0"
    
    tasks.register<Zip>("packageDistribution") {
        from(layout.buildDirectory.dir("toArchive")) {
            exclude("**/*.pdf")
        }
    
        from(layout.buildDirectory.dir("toArchive")) {
            include("**/*.pdf")
            into("docs")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

                    File testFile = layout.buildDirectory.file(name).get().asFile
                    execOperations.javaexec {
                        assert !(it instanceof ExtensionAware)
                        it.classpath(execClasspath)
                        it.mainClass = 'org.gradle.TestMain'
                        it.args layout.projectDirectory.asFile, testFile
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

            this.delegate = Objects.requireNonNull(delegate, "delegate cannot be null");
    
            ArtifactRepositoryLayout layout = delegate.getLayout();
            repo = new LocalRepository(
                    new File(delegate.getBasedir()),
                    (layout != null) ? layout.getClass().getSimpleName() : "legacy");
    
            /*
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/groovy/build.gradle

    }
    
    dependencies {
        codec 'commons-codec:commons-codec:1.10'
    }
    
    tasks.register('md5', CreateMD5) {
        codecClasspath.from(configurations.codec)
        destinationDirectory = project.layout.buildDirectory.dir('md5')
        source(project.layout.projectDirectory.file('src'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 518 bytes
    - Viewed (0)
Back to top