Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 316 for checkOuts (0.42 sec)

  1. src/cmd/go/testdata/vcstest/git/tagtests.txt

    git add go.mod tagtests.go
    git commit -m 'create module tagtests'
    git branch -m master
    git branch b
    
    git add v0.2.1
    git commit -m 'v0.2.1'
    git tag 'v0.2.1'
    
    git checkout b
    git add 'v0.2.2'
    git commit -m 'v0.2.2'
    git tag 'v0.2.2'
    
    git checkout master
    git merge b -m 'merge'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    -- .git-refs --
    59356c8cd18c5fe9a598167d98a6843e52d57952 refs/heads/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 913 bytes
    - Viewed (0)
  2. .github/workflows/docs.yml

        runs-on: ubuntu-latest
        if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'documentation')
    
        steps:
          - name: Checkout
            uses: actions/checkout@v4
            with:
              fetch-depth: 0
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 04 06:13:36 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    		name        string
    		mask        []int
    		checkBits   []int
    		expectedSet bool
    	}{
    		{
    			name:        "Check if any bits from 11 in mask 00 is set",
    			mask:        nil,
    			checkBits:   []int{0, 1},
    			expectedSet: false,
    		},
    		{
    			name:        "Check if any bits from 11 in mask 01 is set",
    			mask:        []int{0},
    			checkBits:   []int{0, 1},
    			expectedSet: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/GitClone.java

                }
                getExecOperations().exec(spec -> spec.commandLine("git", "clone", "--no-checkout", remoteUri, destinationDir.getAbsolutePath()));
            }
            getExecOperations().exec(spec -> {
                spec.commandLine("git", "checkout", getCommitId().get());
                spec.setWorkingDir(destinationDir);
            });
            getExecOperations().exec(spec -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. internal/hash/checksum.go

    			checksums = 0
    			parts = nil
    		} else if len(parts) > 0 {
    			checksums = len(parts) / c.Type.RawByteLen()
    		}
    		if !c.Type.Is(ChecksumIncludesMultipart) {
    			parts = nil
    		}
    		n := binary.PutUvarint(tmp[:], uint64(checksums))
    		b = append(b, tmp[:n]...)
    		if len(parts) > 0 {
    			b = append(b, parts...)
    		}
    	}
    	return b
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 08 16:18:34 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    git commit -a -m 'another'
    git tag v2.0.2
    git tag branch-v2
    
    at 2018-04-17T16:16:52-04:00
    git checkout master
    git branch v3
    git checkout v3
    mkdir v3/sub/dir
    echo 'v3/sub/dir/file'
    cp stdout v3/sub/dir/file.txt
    git add v3
    git commit -a -m 'add v3/sub/dir/file.txt'
    git tag branch-v3
    
    at 2018-04-17T22:23:00-04:00
    git checkout master
    git tag -a v1.2.4-annotated -m 'v1.2.4-annotated'
    
    cd ..
    
    hg init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. .github/workflows/pylint-presubmit.yml

    name: PyLint
    on:
      pull_request:
        paths:
          - '**.py'
    
    permissions:
      contents: read
    
    jobs:
      build:
        name: PyLint
        runs-on: ubuntu-latest
        steps:
        - name: Checkout code
          uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
        - name: Get file changes
          id: get_file_changes
          uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b # v1.2.4
          with:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:40:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_sumdb_golang.txt

    rm go.sum
    
    go list -mod=mod -x -m all  # Add checksums for go.mod files.
    stderr sum.golang.org/tile
    ! stderr github
    ! stderr proxy.golang.org/rsc.io/quote
    stderr sum.golang.org/lookup/rsc.io/quote
    
    go list -mod=mod -x rsc.io/quote  # Add checksums for module source.
    ! stderr .  # Adds checksums, but for entities already in the module cache.
    
    cmp go.sum saved.sum
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

            first.artifactVerifications[0].checksums.find { it.kind == ChecksumKind.sha512 }.value == "5678abcd"
            first.artifactVerifications[1].artifactName == "bar-1.2.jar"
            first.artifactVerifications[1].checksums.find { it.kind == ChecksumKind.sha1 }.value == "9876"
            first.artifactVerifications[1].checksums.find { it.kind == ChecksumKind.sha512 }.value == "123def"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt

    git commit -m 'create module tagtests'
    
    git branch b
    
    echo v0.2.1 >v0.2.1
    git add v0.2.1
    git commit -m v0.2.1
    git tag v0.2.1
    
    git checkout b
    echo v0.2.2 >v0.2.2
    git add v0.2.2
    git commit -m v0.2.2
    git tag v0.2.2
    
    git checkout master
    git merge b -m merge
    
    zip -r ../tagtests.zip .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top