Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 768 for doEmit (0.12 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. src/cmd/go/testdata/vcstest/git/commit-after-tag.txt

    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2019-07-15T17:16:47-04:00
    git add go.mod main.go
    git commit -m 'all: add go.mod and main.go'
    git branch -m master
    git tag v1.0.0
    
    at 2019-07-15T17:17:27-04:00
    cp _next/main.go main.go
    git add main.go
    git commit -m 'add init function'
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 767 bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/testdata/script/build_buildvcs_auto.txt

    exec git config user.email '******@****.***'
    exec git add sub.go
    exec git commit -m 'initial state'
    cd ..
    
    exec git init
    exec git config user.name 'Nameless Gopher'
    exec git config user.email '******@****.***'
    exec git submodule add ./sub
    exec git add go.mod example.go
    exec git commit -m 'initial state'
    
    
    # Control case: with a git binary in $PATH,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/vcstest/git/querytest.txt

    git commit -a -m 'before v0.0.0'
    
    echo 'at v0.0.0'
    cp stdout status
    git commit -a -m 'at v0.0.0'
    git tag 'v0.0.0'
    
    echo 'before v0.0.1'
    cp stdout status
    git commit -a -m 'before v0.0.1'
    
    echo 'at v0.0.1'
    cp stdout status
    git commit -a -m 'at v0.0.1'
    git tag 'v0.0.1'
    
    echo 'before v0.0.2'
    cp stdout status
    git commit -a -m 'before v0.0.2'
    
    echo 'at v0.0.2'
    cp stdout status
    git commit -a -m 'at v0.0.2'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 6K bytes
    - Viewed (0)
  9. .github/workflows/CheckBadMerge.groovy

            }
        }
    
        static void checkCommit(String commit) {
            List<String> parentCommits = parentCommitsOf(commit)
            if (parentCommits.size() != 2) {
                println("$commit is not a merge commit we're looking for. Parents: $parentCommits")
                return
            }
    
            // The correct state we are looking for is:
            // 1. It's a merge commit.
            // 2. One of its parent commits is from master only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 10:35:44 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. misc/cgo/gmp/gmp.go

    	return z
    }
    
    // Sub sets z = x - y and returns z.
    func (z *Int) Sub(x, y *Int) *Int {
    	x.doinit()
    	y.doinit()
    	z.doinit()
    	C.mpz_sub(&z.i[0], &x.i[0], &y.i[0])
    	return z
    }
    
    // Mul sets z = x * y and returns z.
    func (z *Int) Mul(x, y *Int) *Int {
    	x.doinit()
    	y.doinit()
    	z.doinit()
    	C.mpz_mul(&z.i[0], &x.i[0], &y.i[0])
    	return z
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
Back to top