Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 768 for doEmit (0.15 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProvider.java

         * Therefore, we manually construct the runner ourselves the same way it was done in 4.4.
         *
         * @see <a href="https://github.com/junit-team/junit4/commit/67e3edf20613b1278f4be05353b31b5129e21882">The relevant commit</a>
         */
        @SuppressWarnings("deprecation")
        static Runner getRunnerLegacy(Class<?> testClass) throws Throwable {
            RunWith annotation = testClass.getAnnotation(RunWith.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/git/no-tags.txt

    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2019-07-15T17:20:47-04:00
    git add go.mod main.go
    git commit -m 'all: add go.mod and main.go'
    git branch -m master
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    e706ba1 (HEAD -> master) all: add go.mod and main.go
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 534 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/git/mainonly.txt

    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2019-09-05T14:07:43-04:00
    git add main.go
    git commit -a -m 'add main.go'
    git branch -m master
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    8a27e8b (HEAD -> master) add main.go
    -- main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 433 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go

    const (
    	// ISA Level
    	_PPC_FEATURE2_ARCH_2_07 = 0x80000000
    	_PPC_FEATURE2_ARCH_3_00 = 0x00800000
    
    	// CPU features
    	_PPC_FEATURE2_DARN = 0x00200000
    	_PPC_FEATURE2_SCV  = 0x00100000
    )
    
    func doinit() {
    	// HWCAP2 feature bits
    	PPC64.IsPOWER8 = isSet(hwCap2, _PPC_FEATURE2_ARCH_2_07)
    	PPC64.IsPOWER9 = isSet(hwCap2, _PPC_FEATURE2_ARCH_3_00)
    	PPC64.HasDARN = isSet(hwCap2, _PPC_FEATURE2_DARN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 775 bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

    (function ($) {
        const renderCommitIds = function (commits) {
            return commits.map(function (commit) {
                return commit.substring(0, 7);
            }).join('|');
        };
    
        const plots = [];
    
        const togglePlot = function (chartId, label) {
            const plot = plots[chartId];
            const plotData = plot.getData();
            $.each(plotData, function (index, value) {
                if (value.label == label) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/hg/hello.txt

    handle hg
    hg init
    
    hg add hello.go
    hg commit --user 'bwk' --date '2017-09-21T21:14:14-04:00' --message 'hello world'
    
    hg log -r ':' --template '{node|short} {desc|strip|firstline}\n'
    cmp stdout .hg-log
    
    -- .hg-log --
    e483a7d9f8c9 hello world
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 312 bytes
    - Viewed (0)
  7. .github/workflows/codeql-analysis.yml

    # For most projects, this workflow file will not need changing; you simply need
    # to commit it to your repository.
    #
    # You may wish to alter this file to override the set of languages analyzed,
    # or to provide custom queries or build logic.
    name: "CodeQL"
    
    on:
      push:
        branches: [master]
      pull_request:
        # The branches below must be a subset of the branches above
        branches: [master]
      schedule:
        - cron: '0 9 * * 3'
    
    jobs:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Oct 02 13:22:07 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  8. src/runtime/mem_windows.go

    		v = add(v, small)
    		n -= small
    	}
    }
    
    func sysUsedOS(v unsafe.Pointer, n uintptr) {
    	p := stdcall4(_VirtualAlloc, uintptr(v), n, _MEM_COMMIT, _PAGE_READWRITE)
    	if p == uintptr(v) {
    		return
    	}
    
    	// Commit failed. See SysUnused.
    	// Hold on to n here so we can give back a better error message
    	// for certain cases.
    	k := n
    	for k > 0 {
    		small := k
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitHttpRepository.java

        }
    
        @Override
        public TestFile file(Object... path) {
            return backingRepo.file(path);
        }
    
        @Override
        public RevCommit commit(String message) throws GitAPIException {
            return backingRepo.commit(message);
        }
    
        @Override
        public Ref checkout(String branchName) throws GitAPIException {
            return backingRepo.checkout(branchName);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/latency_tracker.go

    }
    
    type clientV3TxnTracker struct {
    	ctx context.Context
    	clientv3.Txn
    }
    
    func (t *clientV3TxnTracker) Commit() (*clientv3.TxnResponse, error) {
    	startedAt := time.Now()
    	defer func() {
    		endpointsrequest.TrackStorageLatency(t.ctx, time.Since(startedAt))
    	}()
    
    	return t.Txn.Commit()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top