Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for checkOuts (0.36 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. src/cmd/vendor/golang.org/x/sys/unix/README.md

    Requirements: bash, go
    
    ### New Build System (currently for `GOOS == "linux"`)
    
    The new build system uses a Docker container to generate the go files directly
    from source checkouts of the kernel and various system libraries. This means
    that on any platform that supports Docker, all the files using the new build
    system can be generated at once, and generated files will not change based on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/componentconfigs/checksums.go

    func ChecksumForConfigMap(cm *v1.ConfigMap) string {
    	hash := sha256.New()
    
    	// Since maps are not ordered we need to make sure we order them somehow so we'll always get the same checksums
    	// for the same config maps. The solution here is to extract the keys into a slice and sort them.
    	// Then iterate over that slice to fetch the values to be hashed.
    	keys := []string{}
    	for key := range cm.Data {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/internal/impl/DefaultChecksumAlgorithmServiceTest.java

            Map<ChecksumAlgorithmService.ChecksumAlgorithm, String> checksums = service.calculate(
                    "test".getBytes(StandardCharsets.UTF_8), service.select(Arrays.asList("SHA-1", "MD5")));
            assertNotNull(checksums);
            assertEquals(2, checksums.size());
            assertEquals("a94a8fe5ccb19ba61c4c0873d391e987982fbbd3", checksums.get(service.select("SHA-1")));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 21 08:05:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. test/slicecap.go

    		y := x[4:]
    		checkBytes("y[1:]", y[1:])
    	}
    	{
    		x := ints
    		checkInts("x", x)
    		checkInts("x[5:]", x[5:])
    		checkInts("x[five:]", x[five:])
    		checkInts("x[5:five]", x[5:five])
    		checkInts("x[five:5]", x[five:5])
    		checkInts("x[five:five]", x[five:five])
    		checkInts("x[1:][2:][2:]", x[1:][2:][2:])
    		y := x[4:]
    		checkInts("y[1:]", y[1:])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java

        /**
         * Calculates checksums for specified data.
         *
         * @param data        The content for which to calculate checksums, must not be {@code null}.
         * @param algorithms  The checksum algorithms to use, must not be {@code null}.
         * @return The calculated checksums, indexed by algorithms, never {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 21 08:05:10 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/model/ImmutableArtifactVerificationMetadata.java

        private final List<Checksum> checksums;
        private final Set<String> trustedPgpKeys;
        private final Set<IgnoredKey> ignoredPgpKeys;
        private final int hashCode;
    
        public ImmutableArtifactVerificationMetadata(String artifactName, List<Checksum> checksums, Set<String> trustedPgpKeys, Set<IgnoredKey> ignoredPgpKeys) {
            this.artifactName = artifactName;
            this.checksums = ImmutableList.copyOf(checksums);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. .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)
  10. 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)
Back to top