Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,695 for bstart (0.23 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/NamedOperation.groovy

    /**
     * Represents some operation performed by a test. Has a start and end instant.
     */
    class NamedOperation {
        final String name
        final Instant start
        private final AtomicReference<Instant> end = new AtomicReference<>()
    
        NamedOperation(String name) {
            this.name = name
            this.start = new Instant(System.nanoTime())
        }
    
        @Override
        String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/runtime/traceevent.go

    	traceEvStacks     // start of a section of the stack table [...traceEvStack]
    	traceEvStack      // stack table entry [ID, ...{PC, func string ID, file string ID, line #}]
    	traceEvStrings    // start of a section of the string dictionary [...traceEvString]
    	traceEvString     // string dictionary entry [ID, length, string]
    	traceEvCPUSamples // start of a section of CPU samples [...traceEvCPUSample]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/internal/trace/summary_test.go

    	case trace.EventBad:
    		if region.Start != nil {
    			t.Errorf("expected nil region start event, got\n%s", region.Start.String())
    		}
    	case trace.EventStateTransition, trace.EventRegionBegin:
    		if region.Start == nil {
    			t.Error("expected non-nil region start event, got nil")
    		}
    		kind := region.Start.Kind()
    		if kind != wantStart {
    			t.Errorf("wanted region start event %s, got %s", wantStart, kind)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/operations/MaxWorkersTest.groovy

            when:
            async {
                start {
                    def cl = workerLeaseService.startWorker()
                    instant.worker1
                    thread.blockUntil.worker2Ready
                    thread.block()
                    instant.worker1Finished
                    cl.leaseFinish()
                }
                start {
                    thread.blockUntil.worker1
                    instant.worker2Ready
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. cmd/ftp-server.go

    		if len(tokens) != 2 {
    			logger.Fatal(fmt.Errorf("invalid arguments passed to --ftp=%s", arg), "unable to start FTP server")
    		}
    		switch tokens[0] {
    		case "address":
    			host, portStr, err := net.SplitHostPort(tokens[1])
    			if err != nil {
    				logger.Fatal(fmt.Errorf("invalid arguments passed to --ftp=%s (%v)", arg, err), "unable to start FTP server")
    			}
    			port, err = strconv.Atoi(portStr)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/MockHttp2Peer.kt

        require(length < bytesOut.size - lastFrame.start)
    
        // Move everything from bytesOut into a new buffer.
        val fullBuffer = Buffer()
        bytesOut.read(fullBuffer, bytesOut.size)
    
        // Copy back all but what we're truncating.
        fullBuffer.read(bytesOut, lastFrame.start + length)
        outFrames.add(OutFrame(lastFrame.sequence, lastFrame.start, true))
        return writer
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. cmd/metrics-v3-replication.go

    		"Maximum number of active replication workers seen since server start")
    	replicationMaxQueuedBytesMD = NewGaugeMD(replicationMaxQueuedBytes,
    		"Maximum number of bytes queued for replication since server start")
    	replicationMaxQueuedCountMD = NewGaugeMD(replicationMaxQueuedCount,
    		"Maximum number of objects queued for replication since server start")
    	replicationMaxDataTransferRateMD = NewGaugeMD(replicationMaxDataTransferRate,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/trace/pprof.go

    type interval struct {
    	start, end trace.Time
    }
    
    func (i interval) duration() time.Duration {
    	return i.end.Sub(i.start)
    }
    
    func (i1 interval) overlap(i2 interval) time.Duration {
    	// Assume start1 <= end1 and start2 <= end2
    	if i1.end < i2.start || i2.end < i1.start {
    		return 0
    	}
    	if i1.start < i2.start { // choose the later one
    		i1.start = i2.start
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/internal/trace/parser.go

    	EvGCStart           = 7  // GC start [timestamp, seq, stack id]
    	EvGCDone            = 8  // GC done [timestamp]
    	EvSTWStart          = 9  // GC mark termination start [timestamp, kind]
    	EvSTWDone           = 10 // GC mark termination done [timestamp]
    	EvGCSweepStart      = 11 // GC sweep start [timestamp, stack id]
    	EvGCSweepDone       = 12 // GC sweep done [timestamp, swept, reclaimed]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

            when:
            async {
                start {
                    events1.each {
                        broadcaster.foo(it)
                    }
                }
                start {
                    events2.each {
                        broadcaster.foo(it)
                    }
                }
                start {
                    events3.each {
                        broadcaster.foo(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top