Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,685 for dists (0.04 sec)

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

    tasks.register('copyAssets', Copy) {
        into layout.buildDirectory.dir("inPlaceApp")
        with webAssetsSpec
    }
    
    tasks.register('distApp', Zip) {
        archiveFileName = 'my-app-dist.zip'
        destinationDirectory = layout.buildDirectory.dir('dists')
    
        from appClasses
        with webAssetsSpec
    }
    // end::standalone-copyspec[]
    
    // tag::shared-copy-patterns[]
    def webAssetPatterns = {
    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/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    The `build` task compiles the ${language.raw} sources, links the object files, and runs the tests.
    It also packages the main and test applications for distribution on other systems.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    The `build` task compiles the ${language.raw} sources, links the object files into a shared library, and runs the tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/copy/kotlin/build.gradle.kts

    tasks.register<Copy>("copyAssets") {
        into(layout.buildDirectory.dir("inPlaceApp"))
        with(webAssetsSpec)
    }
    
    tasks.register<Zip>("distApp") {
        archiveFileName = "my-app-dist.zip"
        destinationDirectory = layout.buildDirectory.dir("dists")
    
        from(appClasses)
        with(webAssetsSpec)
    }
    // end::standalone-copyspec[]
    
    // tag::shared-copy-patterns[]
    val webAssetPatterns = Action<CopySpec> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperCrossVersionIntegrationTest.groovy

            assert result.output.contains("hello from $executionVersion.version.version")
            assert result.output.contains("using distribution at ${executer.gradleUserHomeDir.file("wrapper/dists")}")
            assert result.output.contains("using Gradle user home at $executer.gradleUserHomeDir")
        }
    
        static void cleanupDaemons(GradleExecuter executer, GradleDistribution executionVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/AbstractWrapperIntegrationSpec.groovy

        public static final String NOT_EMBEDDED_REASON = "wrapperExecuter requires a real distribution"
        void installationIn(TestFile userHomeDir) {
            def distDir = userHomeDir.file("wrapper/dists/${FilenameUtils.getBaseName(distribution.binDistribution.absolutePath)}").assertIsDir()
            assert distDir.listFiles().length == 1
            distDir.listFiles()[0].file("gradle-${distribution.version.baseVersion.version}").assertIsDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    │   └── modules-2 // <3>
    ├── daemon // <4>
    │   ├── ⋮
    │   ├── 4.8
    │   └── 4.9
    ├── init.d // <5>
    │   └── my-setup.gradle
    ├── jdks // <6>
    │   ├── ⋮
    │   └── jdk-14.0.2+12
    ├── wrapper
    │   └── dists // <7>
    │       ├── ⋮
    │       ├── gradle-4.8-bin
    │       ├── gradle-4.9-all
    │       └── gradle-4.9-bin
    └── gradle.properties // <8>
    ----
    <1> Global cache directory (for everything that is not project-specific).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    ├── daemon // <4>
    │   ├── ⋮
    │   ├── 4.8
    │   └── 4.9
    ├── init.d                  // <5>
    │   └── my-setup.gradle
    ├── jdks                    // <6>
    │   ├── ⋮
    │   └── jdk-14.0.2+12
    ├── wrapper
    │   └── dists                   // <7>
    │       ├── ⋮
    │       ├── gradle-4.8-bin
    │       ├── gradle-4.9-all
    │       └── gradle-4.9-bin
    └── gradle.properties       // <8>
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesCopyIntegrationTest.groovy

            executer.inDirectory(dslDir)
    
            when:
            succeeds('distApp')
    
            then:
            def tmpOutDir = dslDir.file("tmp")
            def zipFile = dslDir.file('build/dists/my-app-dist.zip')
            zipFile.isFile()
            zipFile.unzipTo(tmpOutDir)
            tmpOutDir.file('web.xml').assertDoesNotExist()
            tmpOutDir.file('index-staging.html').assertDoesNotExist()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

            file(WRAPPER_PROPERTIES_PATH) << 'distributionSha256Sum=bad'
    
            when:
            def failure = wrapperExecuter.withStackTraceChecksDisabled().runWithFailure()
            def f = new File(file("user-home/wrapper/dists/gradle-bin").listFiles()[0], "gradle-bin.zip")
    
            then:
            failure.error.contains("""
    Verification of Gradle distribution failed!
    
    Your Gradle distribution may have been tampered with.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top