Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,561 for fanout (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/snippets/multiproject/standardLayouts/kotlin/settings.gradle.kts

    rootProject.name = "standard-layouts"
    // tag::hierarchical-layout[]
    include("project1", "project2:child1", "project3:child1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 19:23:53 UTC 2023
    - 156 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/multiproject/standardLayouts/groovy/settings.gradle

    rootProject.name = 'standard-layouts'
    // tag::hierarchical-layout[]
    include 'project1', 'project2:child1', 'project3:child1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 21:54:33 UTC 2024
    - 155 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/fileCollections/kotlin/build.gradle.kts

    import java.nio.file.Paths
    
    // tag::simple-params[]
    val collection: FileCollection = layout.files(
        "src/file1.txt",
        File("src/file2.txt"),
        listOf("src/file3.csv", "src/file4.csv"),
        Paths.get("src", "file5.txt")
    )
    // end::simple-params[]
    
    file("src").mkdirs()
    file("src/dir1").mkdirs()
    file("src/file1.txt").mkdirs()
    file("src2").mkdirs()
    file("src2/dir1").mkdirs()
    file("src2/dir2").mkdirs()
    
    // tag::closure[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLifecyclePluginIntegrationTest.groovy

                        '$buildDir.name'
                    }
                }
    
                def service = gradle.sharedServices.registerIfAbsent('my', MyBuildService, {})
                layout.buildDirectory.set(
                    layout.projectDirectory.dir(
                        service.map {
                            // intentionally capture the `project` object to force a cc failure
                            // in case this gets serialized
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/runtime/mkpreempt.go

    	save, restore string
    }
    
    func (l *layout) add(op, reg string, size int) {
    	l.regs = append(l.regs, regPos{saveOp: op, restoreOp: op, reg: reg, pos: l.stack})
    	l.stack += size
    }
    
    func (l *layout) add2(sop, rop, reg string, size int) {
    	l.regs = append(l.regs, regPos{saveOp: sop, restoreOp: rop, reg: reg, pos: l.stack})
    	l.stack += size
    }
    
    func (l *layout) addSpecial(save, restore string, size int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/implicitTaskInputFileDependency/groovy/build.gradle

        outputFile = layout.buildDirectory.file('file.txt')
    }
    
    // Change the build directory.
    // Don't need to update producer.outputFile and consumer.inputFile. 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.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/workerApi/md5CustomTask/kotlin/build.gradle.kts

    plugins { id("base") } // <1>
    
    tasks.register<CreateMD5>("md5") {
        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
    - 206 bytes
    - Viewed (0)
Back to top