Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for Checkout (0.11 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "does not remove vcs checkout on every build"() {
            succeeds("assertVersion", "-PrepoVersion=1.0")
            def checkout = checkoutDir("dep", commits.initial.id.name, repo.id)
    
            // Put new file in the checkout directory that would be deleted if Gradle
            // deletes the checkout directory
            def trashFile = checkout.file("trash")
            trashFile.text = "junk"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. .github/workflows/build.yml

    jobs:
      publish:
        runs-on: ubuntu-latest
        if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master'
    
        steps:
          - name: Checkout
            uses: actions/checkout@v4
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 11
    
          - name: Configure JDK
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/svn/hello.txt

    handle svn
    
    mkdir db/transactions
    mkdir db/txn-protorevs
    chmod 0755 hooks/pre-revprop-change
    
    env ROOT=$PWD
    cd .checkout
    [GOOS:windows] svn checkout file:///$ROOT .
    [!GOOS:windows] svn checkout file://$ROOT .
    
    svn add hello.go
    svn commit --file MSG
    svn propset svn:author 'rsc' --revprop -r1
    svn propset svn:date '2017-09-22T01:12:45.861368Z' --revprop -r1
    
    svn update
    svn log --xml
    
    [GOOS:windows] replace '\n' '\r\n' .svn-log
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. .github/workflows/codeql-analysis.yml

        steps:
        - name: Checkout repository
          uses: actions/checkout@v2
          with:
            # We must fetch at least the immediate parents so that if this is
            # a pull request then we can checkout the head.
            fetch-depth: 2
    
        # If this run was triggered by a pull request event, then checkout
        # the head of the pull request instead of the merge commit.
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/git/semver-branch.txt

    at 2022-02-02T14:19:44-05:00
    git branch 'v1.0.0'
    git branch 'v2.0.0'
    git checkout 'v1.0.0'
    cp v1/pkg/pkg.go pkg/pkg.go
    git commit -a -m 'pkg: start developing toward v1.0.0'
    
    at 2022-02-03T10:53:13-05:00
    git branch 'v3.0.0-devel'
    git checkout 'v3.0.0-devel'
    git checkout v0.1.0 pkg/pkg.go
    git commit -a -m 'pkg: remove panic'
    git tag v4.0.0-beta.1
    
    git checkout main
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. .github/workflows/arm-ci-extended.yml

          - name: Checkout repository for nightly (skipped for releases)
            if: ${{ github.event_name == 'schedule' }}
            uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
            with:
              ref: 'nightly'
          - name: Checkout repository
            if: ${{ github.event_name == 'push' }}
            uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    [GOOS:windows] replace '\n' '\r\n' .svn-log
    cmp stdout .svn-log
    
    -- .checkout/.git-log --
    ab9f66b (HEAD -> master) add pkg
    7f800d2 (origin/master, origin/HEAD) README
    -- .checkout/p1/p1.go --
    package p1
    -- .checkout/pkg/pkg.go --
    package pkg
    const Message = "code not in git-README-only"
    -- .checkout/README --
    README
    -- .checkout/p1/p1.go --
    package p1
    -- .checkout/.svn-log --
    <?xml version="1.0" encoding="UTF-8"?>
    <log>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    svn log --xml
    
    [GOOS:windows] replace '\n' '\r\n' .svn-log
    cmp stdout .svn-log
    
    -- .checkout/git-README-only/pkg/pkg.go --
    package pkg
    const Message = "code not in git-README-only"
    -- .checkout/git-README-only/README --
    README
    -- .checkout/.git-log --
    ab9f66b (HEAD -> master) add pkg
    7f800d2 (origin/master, origin/HEAD) README
    -- .checkout/pkg.go --
    package p
    
    import "vcs-test.swtch.com/go/test1-svn-git/git-README-only/pkg"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  9. .github/workflows/arm-ci-extended-cpp.yml

          - name: Checkout repository for nightly (skipped for releases)
            if: ${{ github.event_name == 'schedule' }}
            uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
            with:
              ref: 'nightly'
          - name: Checkout repository
            if: ${{ github.event_name == 'push' }}
            uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. .github/workflows/vulncheck.yml

          - master
    
      push:
        branches:
          - master
    
    permissions:
      contents: read # to fetch code (actions/checkout)
    
    jobs:
      vulncheck:
        name: Analysis
        runs-on: ubuntu-latest
        steps:
          - name: Check out code into the Go module directory
            uses: actions/checkout@v4
          - name: Set up Go
            uses: actions/setup-go@v5
            with:
              go-version: 1.22.4
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 15:44:53 UTC 2024
    - 687 bytes
    - Viewed (0)
Back to top