Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 414 for doEmit (0.15 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationProgressEventEmitter.java

            if (currentOperationIdentifier == null) {
                throw new IllegalStateException("No current build operation");
            } else {
                doEmit(currentOperationIdentifier, time, details);
            }
        }
    
        private void doEmit(OperationIdentifier operationIdentifier, long timestamp, @Nullable Object details) {
            listener.progress(operationIdentifier, new OperationProgressEvent(timestamp, details));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 14:53:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. .pre-commit-config.yaml

        rev: v0.2.0
        hooks:
        -   id: ruff
            args:
            - --fix
        -   id: ruff-format
    ci:
        autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 737 bytes
    - Viewed (0)
  3. prow/release-commit.sh

    John Howard <******@****.***> 1718218648 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    // linuxKernelCanEmulateCPUID reports whether we're running
    // on Linux 4.11+. Ideally we'd like to ask the question about
    // whether the current kernel contains
    // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=77c97b4ee21290f5f083173d957843b615abbff2
    // but the version number will have to do.
    func linuxKernelCanEmulateCPUID() bool {
    	var un syscall.Utsname
    	syscall.Uname(&un)
    	var sb strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security_test.go

    	{"-O"},
    	{"-O2"},
    	{"-Osmall"},
    	{"-W"},
    	{"-Wall"},
    	{"-Wp,-Dfoo=bar"},
    	{"-Wp,-Ufoo"},
    	{"-Wp,-Dfoo1"},
    	{"-Wp,-Ufoo1"},
    	{"-flto"},
    	{"-fobjc-arc"},
    	{"-fno-objc-arc"},
    	{"-fomit-frame-pointer"},
    	{"-fno-omit-frame-pointer"},
    	{"-fpic"},
    	{"-fno-pic"},
    	{"-fPIC"},
    	{"-fno-PIC"},
    	{"-fpie"},
    	{"-fno-pie"},
    	{"-fPIE"},
    	{"-fno-PIE"},
    	{"-fsplit-stack"},
    	{"-fno-split-stack"},
    	{"-fstack-xxx"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestPageGeneratorTest.groovy

    class TestPageGeneratorTest extends Specification {
    
        def "transforms a single commit id to a url"() {
            when:
            def urls = new TestPageGenerator().createGitHubLinks(['123456'])
    
            then:
            urls[0].url == 'https://github.com/gradle/gradle/commit/123456'
        }
    
        def "transforms two commit ids to urls"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. lib/time/update.bash

    	echo No updates needed.
    	exit 0
    fi
    
    echo Updated for $CODE/$DATA: $files
    
    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)
  8. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            anotherSource << 'Goodbye world!'
            c2 = repo.commit('Second Commit')
            repoHead = GitVersionRef.from(repo.head)
            repoSpec = new DefaultGitVersionControlSpec()
            repoSpec.url = repo.url
    
            submoduleRepo.workTree.file("foo.txt") << "hello from submodule"
            submoduleRepo.commit("initial commit")
    
            submoduleRepo2.workTree.file("bar.txt") << "hello from another submodule"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_git_missing_tree.txt

    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    # Create 2 commit
    env GIT_COMMITTER_DATE=2024-01-30T10:52:00+08:00
    env GIT_AUTHOR_DATE=2024-01-30T10:52:00+08:00
    
    cd $WORK/repo
    exec git init
    exec git add go.mod main.go
    exec git commit -m 'initial commit'
    
    env GIT_COMMITTER_DATE=2024-01-30T10:53:00+08:00
    env GIT_AUTHOR_DATE=2024-01-30T10:53:00+08:00
    exec git add extra.go
    exec git commit -m 'add extra.go'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/JGitPluginSmokeTest.groovy

                task commit {
                    doLast {
                        sourceFile.text = "hello world"
                        grgit.add(patterns: [ 'sourceFile' ])
                        grgit.commit {
                            message = "first commit"
                        }
                    }
                }
    
                task tag {
                    dependsOn commit
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top