Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 663 for startm (0.18 sec)

  1. 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)
  2. guava/src/com/google/common/util/concurrent/ServiceManager.java

          }
        }
    
        @Override
        public void stopping(State from) {
          ServiceManagerState state = this.state.get();
          if (state != null) {
            state.transitionService(service, from, STOPPING);
          }
        }
    
        @Override
        public void terminated(State from) {
          ServiceManagerState state = this.state.get();
          if (state != null) {
            if (!(service instanceof NoOpService)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    			nodeStart = lineno - margin
    		}
    		nodeEnd := lineno + margin
    		if nodeStart < start {
    			start = nodeStart
    		} else if nodeEnd > end {
    			end = nodeEnd
    		}
    		lineNodes[lineno] = append(lineNodes[lineno], n)
    	}
    	if start < 1 {
    		start = 1
    	}
    
    	var src graph.Nodes
    	for lineno := start; lineno <= end; lineno++ {
    		line, ok := reader.line(file, lineno)
    		if !ok {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. src/cmd/trace/tasks.go

    		summary := make(map[string]taskStats)
    		for _, task := range tasks {
    			stats, ok := summary[task.Name]
    			if !ok {
    				stats.Type = task.Name
    			}
    			stats.add(task)
    			summary[task.Name] = stats
    		}
    
    		// Sort tasks by type.
    		userTasks := make([]taskStats, 0, len(summary))
    		for _, stats := range summary {
    			userTasks = append(userTasks, stats)
    		}
    		slices.SortFunc(userTasks, func(a, b taskStats) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/encoding/csv/reader.go

    	} else {
    		record, err = r.readRecord(nil)
    	}
    	return record, err
    }
    
    // FieldPos returns the line and column corresponding to
    // the start of the field with the given index in the slice most recently
    // returned by [Reader.Read]. Numbering of lines and columns starts at 1;
    // columns are counted in bytes, not runes.
    //
    // If this is called with an out-of-bounds index, it panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

        }
        assertThat(taskFaker.executeCallCount).isEqualTo(1)
    
        // Running the red task starts another thread, so the two can run in parallel.
        taskFaker.runNextTask()
        assertThat(log).containsExactly("red:starting@0")
        assertThat(taskFaker.executeCallCount).isEqualTo(2)
    
        // Next the blue task starts.
        taskFaker.runNextTask()
        assertThat(log).containsExactly(
          "red:starting@0",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    	}
    	return etcd3.New(client, c.Codec, newFunc, newListFunc, c.Prefix, resourcePrefix, c.GroupResource, transformer, c.LeaseManagerConfig), destroyFunc, nil
    }
    
    // startDBSizeMonitorPerEndpoint starts a loop to monitor etcd database size and update the
    // corresponding metric etcd_db_total_size_in_bytes for each etcd server endpoint.
    // Deprecated: Will be replaced with newETCD3ProberMonitor
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/runtime/race.go

    	start := ^uintptr(0)
    	end := uintptr(0)
    	if start > firstmoduledata.noptrdata {
    		start = firstmoduledata.noptrdata
    	}
    	if start > firstmoduledata.data {
    		start = firstmoduledata.data
    	}
    	if start > firstmoduledata.noptrbss {
    		start = firstmoduledata.noptrbss
    	}
    	if start > firstmoduledata.bss {
    		start = firstmoduledata.bss
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/unsafe/unsafe.go

    // Offsetof returns the offset within the struct of the field represented by x,
    // which must be of the form structValue.field. In other words, it returns the
    // number of bytes between the start of the struct and the start of the field.
    // The return value of Offsetof is a Go constant if the type of the argument x
    // does not have variable size.
    // (See the description of [Sizeof] for a definition of variable sized types.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/runtime/crash_test.go

    	t.Helper()
    
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    
    	start := time.Now()
    
    	cmd := testenv.CleanCmdEnv(testenv.Command(t, exe, name))
    	cmd.Env = append(cmd.Env, env...)
    	if testing.Short() {
    		cmd.Env = append(cmd.Env, "RUNTIME_TEST_SHORT=1")
    	}
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		t.Logf("%v (%v): ok", cmd, time.Since(start))
    	} else {
    		if _, ok := err.(*exec.ExitError); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top