Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for startByte (0.13 sec)

  1. src/cmd/cover/cover.go

    		if t[i-1].endByte > t[i].startByte {
    			fmt.Fprintf(os.Stderr, "cover: internal error: block %d overlaps block %d\n", t[i-1].index, t[i].index)
    			// Note: error message is in byte positions, not token positions.
    			fmt.Fprintf(os.Stderr, "\t%s:#%d,#%d %s:#%d,#%d\n",
    				f.name, f.offset(t[i-1].startByte), f.offset(t[i-1].endByte),
    				f.name, f.offset(t[i].startByte), f.offset(t[i].endByte))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/service.go

    	WaitHint                uint32
    }
    
    type SERVICE_TABLE_ENTRY struct {
    	ServiceName *uint16
    	ServiceProc uintptr
    }
    
    type QUERY_SERVICE_CONFIG struct {
    	ServiceType      uint32
    	StartType        uint32
    	ErrorControl     uint32
    	BinaryPathName   *uint16
    	LoadOrderGroup   *uint16
    	TagId            uint32
    	Dependencies     *uint16
    	ServiceStartName *uint16
    	DisplayName      *uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. src/testing/benchmark.go

    	result           BenchmarkResult
    	parallelism      int // RunParallel creates parallelism*GOMAXPROCS goroutines
    	// The initial states of memStats.Mallocs and memStats.TotalAlloc.
    	startAllocs uint64
    	startBytes  uint64
    	// The net total of this test after being run.
    	netAllocs uint64
    	netBytes  uint64
    	// Extra metrics collected by ReportMetric.
    	extra map[string]float64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/testing/sub_test.go

    		}
    		first = false
    	})
    }
    
    func TestBenchmarkReadMemStatsBeforeFirstRun(t *T) {
    	var first = true
    	Benchmark(func(b *B) {
    		if first && (b.startAllocs == 0 || b.startBytes == 0) {
    			panic("ReadMemStats not called before first run")
    		}
    		first = false
    	})
    }
    
    type funcWriter struct {
    	write func([]byte) (int, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
Back to top