Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,487 for bstart (0.12 sec)

  1. src/internal/diff/diff.go

    		// have an empty match: start.x==end.x and start.y==end.y.
    		start := m
    		for start.x > done.x && start.y > done.y && x[start.x-1] == y[start.y-1] {
    			start.x--
    			start.y--
    		}
    		end := m
    		for end.x < len(x) && end.y < len(y) && x[end.x] == y[end.y] {
    			end.x++
    			end.y++
    		}
    
    		// Emit the mismatched lines before start into this chunk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

            server.expect("f")
            server.start()
    
            when:
            async {
                start {
                    succeeds("a")
                }
                start {
                    succeeds("b")
                }
                server.waitForRequests(2)
                succeeds("c")
                start {
                    succeeds("d")
                }
                start {
                    succeeds("e")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestListenerIntegrationTest.groovy

                    void beforeSuite(TestDescriptor suite) { println "START [\$suite] [\$suite.name]" }
                    void afterSuite(TestDescriptor suite, TestResult result) { println "FINISH [\$suite] [\$suite.name] [\$result.resultType] [\$result.testCount]" }
                    void beforeTest(TestDescriptor test) { println "START [\$test] [\$test.name]" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/base/StopwatchTest.java

        assertSame(stopwatch, stopwatch.start());
        assertTrue(stopwatch.isRunning());
      }
    
      public void testStart_whileRunning() {
        stopwatch.start();
        try {
          stopwatch.start();
          fail();
        } catch (IllegalStateException expected) {
        }
        assertTrue(stopwatch.isRunning());
      }
    
      public void testStop() {
        stopwatch.start();
        assertSame(stopwatch, stopwatch.stop());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/go/printer/gobuild.go

    		pos++
    	}
    	return p.output[start:pos]
    }
    
    func (p *printer) commentTextAt(start int) string {
    	if start < len(p.output) && p.output[start] == tabwriter.Escape {
    		start++
    	}
    	pos := start
    	for pos < len(p.output) && p.output[pos] != tabwriter.Escape && !isNL(p.output[pos]) {
    		pos++
    	}
    	return string(p.output[start:pos])
    }
    
    func isNL(b byte) bool {
    	return b == '\n' || b == '\f'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top