Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 316 for checkOuts (0.16 sec)

  1. src/cmd/go/testdata/script/mod_list_sums.txt

    # causes the build list to be resolved (so that the selected version can *also*
    # be identified, even though it is not relevant to this particular output).
    # That, in turn, causes us to need checksums for the go.sum files for the
    # modules in the module graph.
    #
    # TODO(#41297): This should not be an error either.
    ! go list -m -mod=readonly -versions rsc.io/sampler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 15:42:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. deploy_website.sh

    # Build the site and push the new files up to GitHub
    python3 -m venv venv
    source venv/bin/activate
    pip install mkdocs-material mkdocs-redirects
    mkdocs gh-deploy
    
    # Restore Javadocs from 1.x, 2.x, and 3.x.
    git checkout gh-pages
    git cherry-pick bb229b9dcc9a21a73edbf8d936bea88f52e0a3ff
    git cherry-pick c695732f1d4aea103b826876c077fbfea630e244
    git push --set-upstream origin gh-pages
    
    # Delete our temp folder
    cd ..
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. util/gradle_integration_tests.sh

    # That provides general hygiene, including avoiding release errors:
    #
    # Preparing to update Javadoc and JDiff for the release...
    # error: Your local changes to the following files would be overwritten by checkout:
    #         integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar
    #         integration-tests/gradle/gradle/wrapper/gradle-wrapper.properties
    #         integration-tests/gradle/gradlew
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/README.md

    After every v1.x.0 release, snapshot compatibility data.
    
    For example, to capture compatibility data for `v1.20.0`:
    
    ```sh
    export VERSION=v1.20.0
    git checkout ${VERSION}
    cp -fr staging/src/k8s.io/api/testdata/{HEAD,${VERSION}}
    git checkout -b ${VERSION}-api-testdata master
    git add .
    git commit -m "Add ${VERSION} API testdata"
    ```
    
    ## Current version
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/hash/DefaultChecksumService.java

            HashFunction hashFunction,
            FileHasherStatistics.Collector statisticsCollector
        ) {
            return new CachingFileHasher(new ChecksumHasher(hashFunction), fileStore, stringInterner, fileTimeStampInspector, name + "-checksums", fileSystem, 1000, statisticsCollector);
        }
    
        @Override
        public HashCode md5(File file) {
            return doHash(file, md5);
        }
    
        @Override
        public HashCode sha1(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 04 22:23:37 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    Gradle also publishes the link:https://gradle.org/release-checksums/[checksums of all releases] (except for version 3.3 to 4.0.2, which did not generate reproducible JARs), so you can manually verify the integrity of the Wrapper JAR.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. cmd/erasure-heal_test.go

    		}
    		if err == nil {
    			// Verify that checksums of staleDisks
    			// match expected values
    			for i := range staleWriters {
    				if staleWriters[i] == nil {
    					continue
    				}
    				if !bytes.Equal(bitrotWriterSum(staleWriters[i]), bitrotWriterSum(writers[i])) {
    					t.Errorf("Test %d: heal returned different bitrot checksums", i)
    				}
    			}
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    [listing]
    ----
    name: Build Gradle project
    
    on:
      push:
    
    jobs:
      build-gradle-project:
        runs-on: ubuntu-latest
        steps:
        - name: Checkout project sources
          uses: actions/checkout@v4
    
        - name: Setup Gradle
          uses: gradle/actions/setup-gradle@v3
          with:
            build-scan-publish: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcs/vcs.go

    	if i < 0 {
    		return Status{}, errFossilInfo
    	}
    	checkout = strings.TrimSpace(checkout[:i])
    
    	i = strings.IndexByte(checkout, ' ')
    	if i < 0 {
    		return Status{}, errFossilInfo
    	}
    	rev := checkout[:i]
    
    	commitTime, err := time.ParseInLocation(time.DateTime, checkout[i+1:], time.UTC)
    	if err != nil {
    		return Status{}, fmt.Errorf("%v: %v", errFossilInfo, err)
    	}
    
    	// Also look for untracked changes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  10. .github/workflows/maven_build_itself.yml

        strategy:
          matrix:
            os: [ubuntu-latest, windows-latest]
            java: [17, 21]
          fail-fast: false
    
        runs-on: ${{ matrix.os }}
    
        steps:
          - uses: actions/checkout@v4
            with:
              persist-credentials: false
    
          - uses: actions/setup-java@v4
            with:
              java-version: ${{ matrix.java }}
              distribution: 'temurin'
              cache: 'maven'
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top