Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,561 for fanout (0.11 sec)

  1. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

    // tag::ivy-repo-with-maven-layout[]
    repositories {
        ivy {
            url = uri("http://repo.mycompany.com/repo")
            layout("maven")
        }
    }
    // end::ivy-repo-with-maven-layout[]
    
    // the casts in the three following sections should be unnecessary once
    // https://github.com/gradle/gradle/issues/6529 is fixed.
    
    // tag::ivy-repo-with-pattern-layout[]
    repositories {
        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

            } else {
                // process the list
                String[] layouts = mirrorLayout.split(",");
                for (String layout : layouts) {
                    // see if this is a negative match
                    if (layout.length() > 1 && layout.startsWith("!")) {
                        if (layout.substring(1).equals(repoLayout)) {
                            // explicitly exclude. Set result and stop processing.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/snippets/providers/listProperty/kotlin/build.gradle.kts

    producerOne { outputFile = layout.buildDirectory.file("one.txt") }
    producerTwo { outputFile = layout.buildDirectory.file("two.txt") }
    
    // Change the build directory.
    // Don't need to update the task properties. These are automatically updated as the build directory changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top