Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,380 for bstart (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		"/healthz/delegate-health",
    		"/healthz/log",
    		"/healthz/ping",
    		"/healthz/poststarthook/delegate-post-start-hook",
    		"/healthz/poststarthook/generic-apiserver-start-informers",
    		"/healthz/poststarthook/max-in-flight-filter",
    		"/healthz/poststarthook/storage-object-count-tracker-hook",
    		"/healthz/poststarthook/wrapping-post-start-hook",
    		"/healthz/wrapping-health",
    		"/livez",
    		"/livez/delegate-health",
    		"/livez/log",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/trace/gen.go

    	if task.Parent != nil && task.Start != nil && task.Start.Kind() == trace.EventTaskBegin {
    		ctx.TaskArrow(traceviewer.ArrowEvent{
    			Name:         "newTask",
    			Start:        ctx.elapsed(task.Start.Time()),
    			End:          ctx.elapsed(task.Start.Time()),
    			FromResource: uint64(task.Parent.ID),
    			ToResource:   uint64(task.ID),
    			FromStack:    ctx.Stack(viewerFrames(task.Start.Stack())),
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K 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. 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)
  5. 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)
  6. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

            def oldDistApi = new ToolingApi(last, temporaryFolder)
    
            buildFile << "apply plugin: 'java'"
    
            when:
            concurrent.start { useToolingApi(toolingApi) }
            concurrent.start { useToolingApi(oldDistApi) }
    
            then:
            concurrent.finished()
        }
    
        def useToolingApi(ToolingApi target) {
            target.withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. src/debug/elf/symbols_test.go

    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "__libc_csu_fini",
    			Info:    0x12,
    			Other:   0x0,
    			Section: 0xD,
    			Value:   0x4004C0,
    			Size:    0x2,
    		},
    		Symbol{
    			Name:    "_start",
    			Info:    0x12,
    			Other:   0x0,
    			Section: 0xD,
    			Value:   0x4003E0,
    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "__gmon_start__",
    			Info:    0x20,
    			Other:   0x0,
    			Section: 0x0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 05 18:18:26 UTC 2019
    - 13.4K bytes
    - Viewed (0)
  8. mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt

        assertThat(handshake.peerCertificates.size).isEqualTo(1)
      }
    
      @Test
      fun shutdownTwice() {
        val server2 = MockWebServer()
        server2.start()
        server2.shutdown()
        try {
          server2.start()
          fail<Any>()
        } catch (expected: IllegalStateException) {
          // expected
        }
        server2.shutdown()
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/cmd/trace/tasks.go

    	}
    
    	return &taskFilter{name: strings.Join(name, ","), cond: conditions}, nil
    }
    
    func taskInterval(t *parsedTrace, s *trace.UserTaskSummary) interval {
    	var i interval
    	if s.Start != nil {
    		i.start = s.Start.Time()
    	} else {
    		i.start = t.startTime()
    	}
    	if s.End != nil {
    		i.end = s.End.Time()
    	} else {
    		i.end = t.endTime()
    	}
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/cmd/internal/objfile/disasm.go

    // Decode disassembles the text segment range [start, end), calling f for each instruction.
    func (d *Disasm) Decode(start, end uint64, relocs []Reloc, gnuAsm bool, f func(pc, size uint64, file string, line int, text string)) {
    	if start < d.textStart {
    		start = d.textStart
    	}
    	if end > d.textEnd {
    		end = d.textEnd
    	}
    	code := d.text[:end-d.textStart]
    	lookup := d.lookup
    	for pc := start; pc < end; {
    		i := pc - d.textStart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
Back to top