Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 768 for doEmit (0.2 sec)

  1. src/cmd/go/testdata/vcstest/git/modlegacy1-old.txt

    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2018-04-25T10:59:24-04:00
    git add p1 p2
    git commit -m 'initial commit'
    git branch -m master
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    6b4ba8b (HEAD -> master) initial commit
    -- p1/p1.go --
    package p1
    
    import _ "vcs-test.golang.org/git/modlegacy1-old.git/p2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 602 bytes
    - Viewed (0)
  2. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

                add.addFilepattern(path);
            }
            add.call();
            return commit(message);
        }
    
        /**
         * Commits all changes in the working tree. This is approximately {@code git commit -am "message"}
         */
        @Override
        public RevCommit commit(String message) throws GitAPIException {
            // Commit all changes in the working tree
            AddCommand add = git.add();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_retract_pseudo_base.txt

    # Retract v1.0.0 and tag v1.0.0 at the same commit.
    # The module has no unretracted release versions.
    go mod init vcs-test.golang.org/git/retract-pseudo.git
    go mod edit -retract v1.0.0
    echo 'package p' >p.go
    git add -A
    git commit -m 'create module retract-pseudo'
    git tag v1.0.0
    
    # Commit a trivial change so the default branch does not point to v1.0.0.
    git mv p.go q.go
    git commit -m 'trivial change'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_pseudo_cache.txt

    env GOPROXY=off
    go mod download -json golang.org/x/text@a1b916ed6726
    stdout '"Version": "v0.0.0-20171215141712-a1b916ed6726",'
    
    # If we can re-resolve the commit to a pseudo-version, fetching the commit by
    # hash should use the highest such pseudo-version appropriate to the commit.
    env GOPROXY=direct
    go mod download -json golang.org/x/text@a1b916ed6726
    stdout '"Version": "v0.3.1-0.20171215141712-a1b916ed6726",'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/git/gitrepo1.txt

    unquote ''
    cp stdout README
    git add README
    git commit -a -m 'empty README'
    git branch -m master
    git tag v1.2.3
    
    at 2018-04-17T15:45:48-04:00
    git branch v2
    git checkout v2
    echo 'v2'
    cp stdout v2
    git add v2
    git commit -a -m 'v2'
    git tag v2.3
    git tag v2.0.1
    git branch v2.3.4
    
    at 2018-04-17T16:00:19-04:00
    echo 'intermediate'
    cp stdout foo.txt
    git add foo.txt
    git commit -a -m 'intermediate'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. src/runtime/traceruntime.go

    	tl.eventWriter(traceGoSyscall, traceProcIdle).commit(traceEvProcStart, traceArg(pp.id), pp.trace.nextSeq(tl.gen))
    }
    
    // ProcStop traces a ProcStop event.
    func (tl traceLocker) ProcStop(pp *p) {
    	// The only time a goroutine is allowed to have its Proc moved around
    	// from under it is during a syscall.
    	tl.eventWriter(traceGoSyscall, traceProcRunning).commit(traceEvProcStop)
    }
    
    // GCActive traces a GCActive event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

                buildFile << commonConfiguration
            }
            first.commit("initial commit")
    
            singleProjectBuild("second") {
                buildFile << commonConfiguration
            }
            second.commit("initial commit")
    
            singleProjectBuild("third") {
                buildFile << commonConfiguration
            }
            third.commit("initial commit")
    
            singleProjectBuild("fourth") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    cp stdout v2/pkg/q.go
    git add README.md v2/pkg/q.go
    git commit -m 'add q'
    git tag v2.0.6
    
    cd ..
    
    hg init
    hg convert ./git .
    rm ./git
    
    # Note: commit #18 is an 'update tags' commit automatically generated by 'hg
    # convert'. We have no control over its timestamp, so it and its descendent
    # commit #19 both end up with unpredictable commit hashes.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/RemoteSourceDependencyIntegrationTest.groovy

                }
            """
            repoA.commit('version 1.2')
            repoA.createLightWeightTag('1.2')
            repoB.file("build.gradle") << """
                dependencies {
                    compile 'test:testC:1.2'
                }
            """
            repoB.commit('version 1.2')
            repoB.createLightWeightTag('1.2')
            repoC.commit('version 1.2')
            repoC.createLightWeightTag('1.2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. buildscripts/gen-ldflags.go

    }
    
    // commitID returns the abbreviated commit-id hash of the last commit.
    func commitID() string {
    	// git log --format="%H" -n1
    	var (
    		commit []byte
    		err    error
    	)
    	cmdName := "git"
    	cmdArgs := []string{"log", "--format=%H", "-n1"}
    	if commit, err = exec.Command(cmdName, cmdArgs...).Output(); err != nil {
    		fmt.Fprintln(os.Stderr, "Error generating git commit-id: ", err)
    		os.Exit(1)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 16 23:10:48 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top