Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for dataTable (0.17 sec)

  1. src/internal/trace/base.go

    }
    
    // evTable contains the per-generation data necessary to
    // interpret an individual event.
    type evTable struct {
    	freq    frequency
    	strings dataTable[stringID, string]
    	stacks  dataTable[stackID, stack]
    	pcs     map[uint64]frame
    
    	// extraStrings are strings that get generated during
    	// parsing but haven't come directly from the trace, so
    	// they don't appear in strings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/internal/trace/generation.go

    	}
    	return nil
    }
    
    // validateStackStrings makes sure all the string references in
    // the stack table are present in the string table.
    func validateStackStrings(
    	stacks *dataTable[stackID, stack],
    	strings *dataTable[stringID, string],
    	frames map[uint64]frame,
    ) error {
    	var err error
    	stacks.forEach(func(id stackID, stk stack) bool {
    		for _, pc := range stk.pcs {
    			frame, ok := frames[pc]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ScalarTypesInManagedModelIntegrationTest.groovy

            '''
    
            expect:
            succeeds 'check'
    
        }
    
        def "cannot mutate managed property of scalar type when view is immutable"() {
            given:
            def i = 0
            def datatable = [[byte, "123"],
                             [Byte, "123"],
                             [boolean, "false"],
                             [Boolean, "false"],
                             [boolean, "true"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/mmu.go

                 drawChart(result);
             });
          }
          refreshChart.count = 0;
    
          function drawChart(plotData) {
            curve = plotData.curve;
            var data = new google.visualization.DataTable();
            data.addColumn('number', 'Window duration');
            data.addColumn('number', 'Minimum mutator utilization');
            if (plotData.quantiles) {
              for (var i = 1; i < plotData.quantiles.length; i++) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. src/internal/trace/oldtrace.go

    	it.tasks = make(map[TaskID]taskState)
    	it.seenProcs = make(map[ProcID]struct{})
    	it.procMs = make(map[ProcID]ThreadID)
    	it.lastTs = -1
    
    	evt := it.evt
    
    	// Convert from oldtracer's Strings map to our dataTable.
    	var max uint64
    	for id, s := range pr.Strings {
    		evt.strings.insert(stringID(id), s)
    		if id > max {
    			max = id
    		}
    	}
    	pr.Strings = nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top