Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 750 for Git (0.11 sec)

  1. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitHttpRepository.java

            server.expect(server.post(backingRepo.getName() + "/git-upload-pack", new ErroringAction<HttpExchange>() {
                @Override
                protected void doExecute(HttpExchange httpExchange) throws Exception {
                    httpExchange.getResponseHeaders().add("content-type", "application/x-git-upload-pack-result");
                    httpExchange.sendResponseHeaders(200, 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_buildvcs.txt

    # https://go.dev/issue/51723: 'go test' should not stamp VCS metadata
    # in the build settings. (It isn't worth the latency hit, given that
    # test binaries are almost never distributed to users.)
    
    [short] skip
    [!git] skip
    
    exec git init
    
    # The test binaries should not have VCS settings stamped by default.
    # (The test itself verifies that.)
    go test . ./testonly
    
    # However, setting -buildvcs explicitly should override that and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/devel.usertools/code_check_changed_files.bats

        # Without this, git errors if /tf/tensorflow directory owner is different
        git config --global --add safe.directory /tf/tensorflow
        # Note that you could generate a list of all the affected targets with e.g.:
        # bazel query $(paste -sd "+" $BATS_FILE_TMPDIR/changed_files) --keep_going
        # Only shows Added, Changed, Modified, Renamed, and Type-changed files
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/transform/jar/after.pom

        </license>
      </licenses>
      <scm>
        <connection>scm:git:******@****.***:helpermethod/zip-forge.git</connection>
        <developerConnection>scm:git:******@****.***:helpermethod/zip-forge.git</developerConnection>
        <url>git@github.com:helpermethod/zip-forge.git</url>
      </scm>
      <dependencies>
        <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. hack/lib/verify-generated.sh

        _tmpdir="$(kube::realpath "$(mktemp -d -t "verify-generated-$(basename "$1").XXXXXX")")"
        git worktree add -f -q "${_tmpdir}" HEAD
        kube::util::trap_add "git worktree remove -f ${_tmpdir}" EXIT
        cd "${_tmpdir}"
    
        # Update generated files.
        "$@"
    
        # Test for diffs
        diffs=$(git status --porcelain | wc -l)
        if [[ ${diffs} -gt 0 ]]; then
          if [[ -n "${failure_header}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_json_fields.txt

    stderr 'no matching files found'
    cd ..
    
    [!git] skip
    
    # Test -json=<field> without Stale skips computing buildinfo
    cd repo
    exec git init
    # Control case: with -json=Stale cmd/go executes git status to compute buildinfo
    go list -json=Stale -x
    stderr 'git status'
    # Test case: without -json=Stale cmd/go skips git status
    go list -json=Name -x
    ! stderr 'git status'
    
    -- go.mod --
    module example.com/a
    
    go 1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 15:24:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            def target = tmpDir.file('versionDir')
            repoSpec.url = 'ssh://git@notarepo.invalid:12345/TestGradleLibrary.git'
    
            when:
            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
            GradleException e = thrown()
            e.message.contains('Could not clone from ssh://git@notarepo.invalid:12345/TestGradleLibrary.git in')
            e.cause != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. lib/time/update.bash

    commitmsg="lib/time: update to $CODE/$DATA
    
    Commit generated by update.bash.
    
    For #22487.
    "
    
    if [ "$1" = "-commit" ]; then
    	echo "Creating commit. Run 'git reset HEAD^' to undo commit."
    	echo
    	git commit -m "$commitmsg" $files
    	echo
    	git log -n1 --stat
    	echo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list_direct.txt

    package main
    
    import _ "vcs-test.golang.org/git/v3pkg.git/v3"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 514 bytes
    - Viewed (0)
  10. hack/apidiff.sh

            d="./${d}"
        fi
        targets[i]="${d}"
    done
    
    # Must be a something that git can resolve to a commit.
    # "git rev-parse --verify" checks that and prints a detailed
    # error.
    if [ -n "${target}" ]; then
        target="$(git rev-parse --verify "${target}")"
    fi
    
    # Determine defaults.
    if [ -z "${base}" ]; then
        if ! base="$(git merge-base origin/master "${target:-HEAD}")"; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top