Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for Grappler (0.14 sec)

  1. platforms/core-runtime/wrapper-main/src/main/proguard/wrapper.pro

    # Keep class names
    -dontobfuscate
    
    # Entry point
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 147 bytes
    - Viewed (0)
  2. gradle/wrapper/gradle-wrapper.properties

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-8.9-20240529002035+0000-bin.zip
    networkTimeout=10000
    validateDistributionUrl=true
    zipStoreBase=GRADLE_USER_HOME
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 280 bytes
    - Viewed (0)
  3. .github/workflows/gradle-wrapper-validation.yml

    name: "Validate Gradle Wrapper"
    on: [push, pull_request]
    
    permissions:
      contents: read
    
    jobs:
      validation:
        name: "Validation"
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 348 bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/AbstractWrapperCrossVersionIntegrationTest.groovy

        }
    }
    """
            settingsFile << "rootProject.name = 'wrapper'"
            version(wrapperVersion).withTasks('wrapper').run()
    
            def executer = wrapperExecuter(wrapperVersion)
            executer
        }
    
        private GradleExecuter wrapperExecuter(GradleDistribution wrapper) {
            def executer = super.version(wrapper)
    
            if (!wrapper.supportsSpacesInGradleAndJavaOpts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

            given:
            configureServer(true)
            prepareWrapper(new URI(gradleBin))
    
            and:
            writeValidDistributionHash()
    
            when:
            def result = wrapperExecuter.withTasks("wrapper", "--gradle-version", "7.5").runWithFailure()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/build.gradle.kts

        dependsOn(executableJar)
    }
    
    // https://github.com/gradle/gradle/issues/26658
    // Before introducing gr8, wrapper jar is generated as build/libs/gradle-wrapper.jar and used in promotion build
    // After introducing gr8, wrapper jar is generated as build/libs/gradle-wrapper-executable.jar and processed
    //   by gr8, then the processed `gradle-wrapper.jar` need to be copied back to build/libs for promotion build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperLoggingIntegrationTest.groovy

                withWelcomeMessageEnabled()
            }
        }
    
        def "wrapper does not render welcome message when executed in quiet mode"() {
            given:
            prepareWrapper()
    
            when:
            args '-q'
            result = wrapperExecuter.withTasks("emptyTask").run()
    
            then:
            result.output.empty
        }
    
        def "wrapper renders welcome message when executed the first time"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperUpgradeIntegrationTest.groovy

    class WrapperUpgradeIntegrationTest extends AbstractWrapperIntegrationSpec {
    
        def "can run the wrapper task when the build was started with the wrapper"() {
            given:
            prepareWrapper()
    
            expect:
            wrapperExecuter.withTasks('wrapper').run()
        }
    
        def "prints helpful error message on invalid version argument format: #badVersion"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/AllDistributionIntegrationSpec.groovy

            contentsDir.file('src/core-api/org/gradle/api/Project.java').assertIsFile()
            contentsDir.file('src/wrapper-shared/org/gradle/wrapper/WrapperExecutor.java').assertIsFile()
            contentsDir.file('src/wrapper-main/org/gradle/wrapper/GradleWrapperMain.java').assertIsFile()
    
            // Samples
            contentsDir.file('samples').assertDoesNotExist()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

            "https\\://$DEFAULT_USER\\:$DEFAULT_PASSWORD@localhost\\:${server.port}"
        }
    
        private boolean validateDistributionUrl(String version, String escapedBaseUrl) {
            file("gradle/wrapper/gradle-wrapper.properties")
                .text.contains("distributionUrl=$escapedBaseUrl/distributions/gradle-$version-bin.zip")
        }
    
        private ExecutionResult runWithVersion(String baseUrl, String version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top