Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for goodbye (0.18 sec)

  1. platforms/documentation/docs/src/snippets/plugins/resolutionRules/groovy/build.gradle

    plugins {
        id 'com.example.hello' version '1.0.0'
        id 'com.example.goodbye' version '1.0.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/JGitPluginSmokeTest.groovy

                        sourceFile.text = "goodbye world"
                        grgit.add(patterns: [ 'sourceFile' ])
                        grgit.commit {
                            message = "second commit"
                        }
                    }
                }
    
                task checkout {
                    dependsOn tag
                    doLast {
                        assert sourceFile.text == 'goodbye world'
                        grgit.checkout {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            repo.createLightWeightTag('1.0.1')
            repo.createAnnotatedTag('v1.0.1', 'Release 1.0.1')
            def anotherSource = repo.workTree.file('dir/another.txt')
            anotherSource << 'Goodbye world!'
            c2 = repo.commit('Second Commit')
            repoHead = GitVersionRef.from(repo.head)
            repoSpec = new DefaultGitVersionControlSpec()
            repoSpec.url = repo.url
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/plugins/consuming/kotlin/build.gradle.kts

    plugins {
      id("com.example.hello") version "1.0.0"
      id("com.example.goodbye") version "1.0.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 98 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/resolutionRules/kotlin/build.gradle.kts

    plugins {
        id("com.example.hello") version "1.0.0"
        id("com.example.goodbye") version "1.0.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 102 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/multiproject/kotlin/settings.gradle.kts

    pluginManagement {
      repositories {
          maven(url = "./maven-repo")
      }
    }
    
    // tag::include-subprojects[]
    include("hello-a")
    include("hello-b")
    include("goodbye-c")
    // end::include-subprojects[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 231 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/multiproject/groovy/settings.gradle

    pluginManagement {
      repositories {
          maven {
            url './maven-repo'
          }
      }
    }
    
    // tag::include-subprojects[]
    include 'hello-a'
    include 'hello-b'
    include 'goodbye-c'
    // end::include-subprojects[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 243 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/plugins/multiproject/kotlin/build.gradle.kts

    // tag::plugins-on-subprojects[]
    plugins {
        id("com.example.hello") version "1.0.0" apply false
        id("com.example.goodbye") version "1.0.0" apply false
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 192 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/multiproject/groovy/build.gradle

    // tag::plugins-on-subprojects[]
    plugins {
        id 'com.example.hello' version '1.0.0' apply false
        id 'com.example.goodbye' version '1.0.0' apply false
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourcesIncrementalBuildIntegrationTest.groovy

    #include "hello.h"
    
    STRINGTABLE
    {
        IDS_HELLO, "Goodbye"
    }
    """
    
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped ":compileMainExecutableMainRc", ":linkMainExecutable", ":mainExecutable"
    
            and:
            mainExe.exec().out == "Goodbye"
        }
    
        def "compiles and but does not link when resource source changes with comment only"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top