Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,186 for START (0.09 sec)

  1. src/cmd/link/internal/ld/main.go

    	dwarfGenerateDebugInfo(ctxt)
    
    	bench.Start("callgraph")
    	ctxt.callgraph()
    
    	bench.Start("doStackCheck")
    	ctxt.doStackCheck()
    
    	bench.Start("mangleTypeSym")
    	ctxt.mangleTypeSym()
    
    	if ctxt.IsELF {
    		bench.Start("doelf")
    		ctxt.doelf()
    	}
    	if ctxt.IsDarwin() {
    		bench.Start("domacho")
    		ctxt.domacho()
    	}
    	if ctxt.IsWindows() {
    		bench.Start("dope")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/trace/procgen.go

    		return
    	}
    	if to.Executing() {
    		start := ev.Time()
    		if from == trace.ProcUndetermined {
    			start = ctx.startTime
    		}
    		viewerEv.Name = "proc start"
    		viewerEv.Arg = format.ThreadIDArg{ThreadID: uint64(ev.Thread())}
    		viewerEv.Ts = ctx.elapsed(start)
    		ctx.IncThreadStateCount(ctx.elapsed(start), traceviewer.ThreadStateRunning, 1)
    	}
    	if from.Executing() {
    		start := ev.Time()
    		viewerEv.Name = "proc stop"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/blank.txt

    -- input --
    	$
    	Blank line at start and end.
    	$
    -- gofmt --
    Blank line at start and end.
    -- text --
    Blank line at start and end.
    -- markdown --
    Blank line at start and end.
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:40 UTC 2022
    - 216 bytes
    - Viewed (0)
  4. src/cmd/trace/threadgen.go

    		} else {
    			gs.stop(ev.Time(), ev.Stack(), ctx)
    		}
    	}
    	if !from.Executing() && to.Executing() {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		gs.start(start, ev.Thread(), ctx)
    	}
    
    	if from == trace.GoWaiting {
    		// Goroutine was unblocked.
    		gs.unblock(ev.Time(), ev.Stack(), ev.Thread(), ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/cmd/trace/jsontrace.go

    	slices.SortStableFunc(opts.tasks, func(a, b *trace.UserTaskSummary) int {
    		aStart, bStart := parsed.startTime(), parsed.startTime()
    		if a.Start != nil {
    			aStart = a.Start.Time()
    		}
    		if b.Start != nil {
    			bStart = b.Start.Time()
    		}
    		if a.Start != b.Start {
    			return cmp.Compare(aStart, bStart)
    		}
    		// Break ties with the end time.
    		aEnd, bEnd := parsed.endTime(), parsed.endTime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceWorkerLeaseTest.groovy

        def "worker start runs immediately when there are sufficient leases available"() {
            def registry = workerLeaseService(2)
    
            expect:
            async {
                start {
                    def cl = registry.startWorker()
                    instant.worker1
                    thread.blockUntil.worker2
                    cl.leaseFinish()
                }
                start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestListenerIntegrationTest.groovy

            assert containsLine(result.getOutput(), "START [Test class SomeTest] [SomeTest]")
            assert containsLine(result.getOutput(), "FINISH [Test class SomeTest] [SomeTest]")
            assert containsLine(result.getOutput(), "START [Test testPass(SomeTest)] [testPass]")
            assert containsLine(result.getOutput(), "FINISH [Test testPass(SomeTest)] [testPass] [null]")
            assert containsLine(result.getOutput(), "START [Test testFail(SomeTest)] [testFail]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ContinuousOperation.java

        public ContinuousOperation setStart(long start) {
            this.start = start;
            return this;
        }
    
        public ContinuousOperation setFinish(long finish) {
            this.finish = finish;
            return this;
        }
    
        public long getStartTime() {
            return start;
        }
    
        @Override
        public long getElapsedTime() {
            return finish - start;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/rotate.go

    func NewRotateParams(start, end, amount uint8) RotateParams {
    	if start&^63 != 0 {
    		panic("start out of bounds")
    	}
    	if end&^63 != 0 {
    		panic("end out of bounds")
    	}
    	if amount&^63 != 0 {
    		panic("amount out of bounds")
    	}
    	return RotateParams{
    		Start:  start,
    		End:    end,
    		Amount: amount,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 21 19:19:04 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

                        // don't care
                    }
                }
            })
            thread.daemon = true
            thread.start()
    
    
            // Try to run another build that should try to reuse the previous daemon, fail and then start another daemon
            when:
            executer.run()
            then:
            daemons.daemons.size() == 2
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top