Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for printSource (0.98 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/FunctionalSourceSetIntegrationTest.groovy

                    @Mutate
                    void addPrintSourceDisplayNameTask(ModelMap<Task> tasks, @Path("functionalSources.myJavaSourceSet") SomeJavaSourceSet sourceSet) {
                        tasks.create("printSource") {
                            doLast {
                                println "sources display name: ${sourceSet.displayName}"
                            }
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	"github.com/google/pprof/internal/plugin"
    	"github.com/google/pprof/profile"
    )
    
    // printSource prints an annotated source listing, include all
    // functions with samples that match the regexp rpt.options.symbol.
    // The sources are sorted by function name and then by filename to
    // eliminate potential nondeterminism.
    func printSource(w io.Writer, rpt *Report) error {
    	o := rpt.options
    	g := rpt.newGraph(nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	case Tags:
    		return printTags(w, rpt)
    	case Proto:
    		return printProto(w, rpt)
    	case TopProto:
    		return printTopProto(w, rpt)
    	case Dis:
    		return printAssembly(w, rpt, obj)
    	case List:
    		return printSource(w, rpt)
    	case Callgrind:
    		return printCallgrind(w, rpt)
    	}
    	// Note: WebList handling is in driver package.
    	return fmt.Errorf("unexpected output format %v", o.OutputFormat)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. RELEASE.md

        ubuntu:16.04.
    *   Added the following features to TensorFlow Debugger (tfdbg):
        *   Ability to inspect Python source file against TF ops and tensors
            (command `print_source` / `ps`)
        *   New navigation bar in Curses-based UI
        *   NodeStepper (command `invoke_stepper`) now uses intermediate tensor
            dumps. It also uses `TensorHandles` as direct feeds during successive
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top