Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for collectNodes (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/build/BuildOperationFiringBuildWorkPreparer.java

                PlannedNodeGraph.Collector collector = new PlannedNodeGraph.Collector(converterRegistry);
                scheduledWork.visitNodes((nodes, entryNodes) -> collector.collectNodes(nodes));
                return collector.getGraph();
            }
    
            private static class CalculateTaskGraphResult implements Result, CustomOperationTraceSerialization {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/internal/coverage/pods/pods.go

    // reading.
    //
    // CollectPods skips over any file that is not related to coverage
    // (e.g. avoids looking at things that are not meta-data files or
    // counter-data files). CollectPods also skips over 'orphaned' counter
    // data files (e.g. counter data files for which we can't find the
    // corresponding meta-data file). If "warn" is true, CollectPods will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/testsupport.go

    	// expect to see a single pod here, but allow for multiple pods in
    	// case the test harness is doing extra work to collect data files
    	// from builds that it kicks off as part of the testing.
    	podlist, err := pods.CollectPods([]string{dir}, false)
    	if err != nil {
    		return fmt.Errorf("reading from %s: %v", dir, err)
    	}
    
    	// Open text output file if appropriate.
    	var tf *os.File
    	var tfClosed bool
    	if cfile != "" {
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/covdata/tool_test.go

    		dumplines(lines)
    	}
    
    	// We expect the merge tool to produce exactly two files: a meta
    	// data file and a counter file. If we get more than just this one
    	// pair, something went wrong.
    	podlist, err := pods.CollectPods([]string{outdir}, true)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(podlist) != 1 {
    		t.Fatalf("expected 1 pod, got %d pods", len(podlist))
    	}
    	ncdfs := len(podlist[0].CounterDataFiles)
    	if ncdfs != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top