Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 545 for Here (0.04 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/api/plugins/BasePluginExtension.java

         */
        Property<String> getArchivesName();
    
        /**
         * This method is only here to maintain compatibility with existing builds.
         *
         * @deprecated Use {@link #getDistsDirectory()}. This method is scheduled for removal in Gradle 9.0.
         */
        @Deprecated
        String getDistsDirName();
    
        /**
         * This method is only here to maintain compatibility with existing builds.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingSnapshotFromPluginRepositorySpec.groovy

              }
              plugins.withType(org.gradle.test.TestPlugin) {
                println "I'm here"
              }
            """
    
            and:
            useCustomRepository()
    
            when:
            succeeds("pluginTask")
    
            then:
            output.contains("I'm here")
        }
    
        def 'setting different snapshot version in resolutionStrategy will affect plugin choice'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/GradleVersion.java

    public abstract class GradleVersion implements Comparable<GradleVersion> {
    
        /**
         * This field only kept here to maintain binary compatibility.
         *
         * @deprecated will be removed in Gradle 9.
         */
        @Deprecated
        public static final String URL = "https://www.gradle.org";
    
        /**
         * This field only kept here to maintain binary compatibility.
         *
         * @deprecated will be removed in Gradle 9.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. testing/precondition-tester/build.gradle.kts

            because("Basic precondition framework and unit test preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":internal-integ-testing"))) {
            because("Integration testing preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":signing"))) {
            because("Signing preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":test-kit"))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildCache/configure-by-init-script/kotlin/init.gradle.kts

    gradle.settingsEvaluated {
        buildCache {
            // vvv Your custom configuration goes here
            remote<HttpBuildCache> {
                url = uri("https://example.com:8123/cache/")
            }
            // ^^^ Your custom configuration goes here
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 254 bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReaderTest.groovy

            when:
            input = """Here is a ${BN}single line ${BN}with continuations \\${BN}and \\ slashes\\\t\n too\\ \n."""
    
            then:
            output == "Here is a single line with continuations \\and \\ slashes\\\t\n too\\ \n."
        }
    
        def "replaces inline comments with space"() {
            when:
            input = """
    Here/* comment */is a string/*
    multiline
    comment
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/additional/gradle_ides.adoc

    == Android Studio
    
    Android Studio is the official IDE for Android app development, based on IntelliJ IDEA.
    
    Android Studio uses Gradle to automate and manage the build process while letting you define flexible, custom build configurations.
    
    image::android_studio.png[]
    
    You can find documentation link:https://developer.android.com/build[here].
    
    == Visual Studio Code
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/integtests/fixtures/jvm/TestJvmComponent.groovy

            return sources*.writeToDir(sourceDir.file(sourceSetName))
        }
    
        List<JvmSourceFile> resources = [
                new JvmSourceFile("", "one.txt", "Here is a resource"),
                new JvmSourceFile("sub-dir", "two.txt", "Here is another resource")
        ]
    
        List<TestFile> writeResources(TestFile testFile) {
            return resources*.writeToDir(testFile)
        }
    
        String getSourceSetTypeName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/configure-by-init-script/groovy/init.gradle

    gradle.settingsEvaluated { settings ->
        settings.buildCache {
            // vvv Your custom configuration goes here
            remote(HttpBuildCache) {
                url = 'https://example.com:8123/cache/'
            }
            // ^^^ Your custom configuration goes here
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 270 bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/plugins/PublishingPluginRules.java

            //this rule is just here to ensure backwards compatibility for builds that create publications with model rules
        }
    
        @Mutate
        void tasksDependOnProjectPublicationRegistry(ModelMap<Task> tasks, PublishingExtension extension) {
            //this rule is just here to ensure backwards compatibility for builds that create publications with model rules
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top