Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 411 for COMMIT (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/script/mod_get_issue47650.txt

    # enough commit history to validate the pseudo-version base.
    
    [short] skip 'creates and uses a git repository'
    [!git] skip
    
    env GOPRIVATE=vcs-test.golang.org
    
    # If we request a package in a subdirectory of a module by commit hash, we
    # successfully resolve it to a pseudo-version derived from a tag on the parent
    # commit.
    cp go.mod go.mod.orig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. pkg/util/iptables/testing/fake_test.go

    	}
    	expected := dedent.Dedent(strings.Trim(`
    		*nat
    		:PREROUTING - [0:0]
    		:INPUT - [0:0]
    		:OUTPUT - [0:0]
    		:POSTROUTING - [0:0]
    		COMMIT
    		*filter
    		:INPUT - [0:0]
    		:FORWARD - [0:0]
    		:OUTPUT - [0:0]
    		COMMIT
    		*mangle
    		COMMIT
    		`, "\n"))
    	if buf.String() != expected {
    		t.Fatalf("bad initial dump. expected:\n%s\n\ngot:\n%s\n", expected, buf.Bytes())
    	}
    
    	// EnsureChain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/DetermineBaselines.kt

            }
    
            println("Determined baseline is: ${determinedBaselines.get()}")
        }
    
        /**
         * Coordinator build doesn't resolve to real commit version, they just pass "flakiness-detection-commit" as it is to worker build
         * "flakiness-detection-commit" is resolved to real commit id in worker build to disable build cache.
         *
         * @see PerformanceTest#NON_CACHEABLE_VERSIONS
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. ci/official/bisect.sh

    # build configuration. You must set the following variables to control this
    # script:
    #
    #   TF_BISECT_GOOD: Last known good commit (e.g. commit from the last passing job)
    #   TF_BISECT_BAD: First bad commit (e.g. commit from the first failing job)
    #   TF_BISECT_SCRIPT: The build script path relative to the TF root dir, e.g.
    #     ci/official/wheel.sh
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. .github/workflows/release-branch-cherrypick.yml

            branch: ${{ github.event.inputs.release_branch }}-${{ steps.cherrypick.outputs.SHORTSHA }}
            reviewers: learning-to-play
            body: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 14:49:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top