Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 768 for doEmit (0.24 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/JGitPluginSmokeTest.groovy

                task commit {
                    doLast {
                        sourceFile.text = "hello world"
                        grgit.add(patterns: [ 'sourceFile' ])
                        grgit.commit {
                            message = "first commit"
                        }
                    }
                }
    
                task tag {
                    dependsOn commit
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt

    # tag that appears in any commit that is a (transitive) parent of the commit
    # supplied to 'go get', regardless of branches
    
    [short] skip
    [!git] skip
    
    # For this test repository:
    #  tag v0.2.1 is most recent tag on master itself
    #  tag v0.2.2 is on branch2, which was then merged to master
    #  master is a merge commit with both tags as parents
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    hg branch v2
    unquote ''
    cp stdout dummy
    hg add dummy
    hg commit --user 'Russ Cox <******@****.***>' --date '2018-06-27T12:15:24-04:00' -m 'dummy'
    
    # 'hg convert' blindly stamps a tag-update commit at the end of whatever branch
    # happened to contain the last converted commit — in this case, v3. However, the
    # original vcs-test.golang.org copy of this repo had this commit on the v3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/util/GradleVersionTest.groovy

            a                       | b
            '5.1'                   | '5.1-commit-123456789'
            '5.1'                   | '5.1-commit-bcda90482104'
            '5.1-commit-1234'       | '5.0'
            '5.1-commit-1234abcdef' | '4.10.2'
            '5.1-commit-1234'       | '5.0-commit-1234'
            '5.0-commit-222'        | '5.0-commit-111'
            '5.0-commit-f1efb03'    | '5.0-commit-f1efb02'
        }
    
        def "can get version base"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

                dependencies { compile 'test:test:2.0' }
            """
            repo.commit("v1")
            repo.createLightWeightTag("1.0")
            repoSettingsFile.replace("version = '1.0'", "version = '2.0'")
            repo.commit("v2")
            repo.createLightWeightTag("2.0")
            repoSettingsFile.replace("version = '2.0'", "version = '3.0'")
            repo.commit("v3")
            repo.createLightWeightTag("3.0")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeCppExternalSourceDependenciesIntegrationTest.groovy

                buildFile << """
                    apply plugin: 'cpp-library'
                """
                fixture.greeter.writeToProject(it)
            }
            def commit = repo.commit('initial commit')
    
            and:
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        withModule("org.test:greeter") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/CommitDistribution.groovy

    import org.gradle.util.GradleVersion
    
    /**
     * Commit distribution is a distribution built from a commit.
     * Its version looks like "7.5-commit-1a2b3c".
     *
     * The commit distributions are generated at the following location:
     *
     * +-- build
     *    +-- commit-distributions
     *        +-- gradle-7.5-commit-1a2b3c4.zip
     *        +-- gradle-7.5-commit-1a2b3c4-tooling-api.jar
     *        \-- gradle-7.5-commit-1a2b3c4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_pseudo_prefix.txt

    echo module vcs-test.golang.org/git/prefixtagtests.git/sub >sub/go.mod
    echo package sub >sub/sub.go
    git add sub
    git commit -m 'create module sub'
    for i in v0.1.0 sub/v0.0.9 sub/v0.0.10 v0.2.0; do
      echo $i >status
      git add status
      git commit -m $i
      git tag $i
    done
    echo 'after last tag' >status
    git add status
    git commit -m 'after last tag'
    
    zip -r ../prefixtagtests.zip .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. pkg/util/kernel/constants.go

    // (ref: https://github.com/torvalds/linux/commit/122ff243f5f104194750ecbc76d5946dd1eec934)
    const IPLocalReservedPortsNamespacedKernelVersion = "3.16"
    
    // IPVSConnReuseModeMinSupportedKernelVersion is the minium kernel version supporting net.ipv4.vs.conn_reuse_mode.
    // (ref: https://github.com/torvalds/linux/commit/d752c364571743d696c2a54a449ce77550c35ac5)
    const IPVSConnReuseModeMinSupportedKernelVersion = "4.1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/git/prefixtagtests.txt

    at 2019-05-09T18:35:00-04:00
    
    git init
    
    git add sub
    git commit -m 'create module sub'
    git branch -m master
    
    echo 'v0.1.0'
    cp stdout status
    git add status
    git commit -a -m 'v0.1.0'
    git tag 'v0.1.0'
    
    echo 'sub/v0.0.9'
    cp stdout status
    git commit -a -m 'sub/v0.0.9'
    git tag 'sub/v0.0.9'
    
    echo 'sub/v0.0.10'
    cp stdout status
    git commit -a -m 'sub/v0.0.10'
    git tag 'sub/v0.0.10'
    
    echo 'v0.2.0'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top