Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for graphviz (0.17 sec)

  1. src/runtime/mklockrank.go

    	// The point of the deadlock lock is to deadlock.
    	"deadlock": true,
    }
    
    func main() {
    	flagO := flag.String("o", "", "write to `file` instead of stdout")
    	flagDot := flag.Bool("dot", false, "emit graphviz output instead of Go")
    	flag.Parse()
    	if flag.NArg() != 0 {
    		fmt.Fprintf(os.Stderr, "too many arguments")
    		os.Exit(2)
    	}
    
    	g, err := dag.Parse(ranks)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	// Convert to svg.
    	svg, err := dotToSvg(dot.Bytes())
    	if err != nil {
    		http.Error(w, "Could not execute dot; may need to install graphviz.",
    			http.StatusNotImplemented)
    		ui.options.UI.PrintErr("Failed to execute dot. Is Graphviz installed?\n", err)
    		return
    	}
    
    	// Get all node names into an array.
    	nodes := []string{""} // dot starts with node numbered 1
    	for _, n := range g.Nodes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/dump.go

    	}
    
    	b := bytes.NewBuffer(nil)
    	if err := marshalDOT(b, nodes, edges); err != nil {
    		http.Error(w, err.Error(), http.StatusInternalServerError)
    		return
    	}
    
    	w.Header().Set("Content-Type", "text/vnd.graphviz")
    	w.Header().Set("X-Content-Type-Options", "nosniff")
    	w.Write(b.Bytes())
    	w.WriteHeader(http.StatusOK)
    }
    
    func (gc *GarbageCollector) DebuggingHandler() http.Handler {
    	return NewDebugHandler(gc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                                     absl::string_view error_message,
                                     toco::GraphVizDumpOptions* dump_options) {
      // Make sure the graphviz file will be dumped under the same folder.
      dump_options->dump_graphviz = toco_flags->conversion_summary_dir();
      // Here we construct the `toco::Model` class based on the input graph def,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	for i := range in {
    		out[i] = escapeForDot(in[i])
    	}
    	return out
    }
    
    // escapeForDot escapes double quotes and backslashes, and replaces Graphviz's
    // "center" character (\n) with a left-justified character.
    // See https://graphviz.org/docs/attr-types/escString/ for more info.
    func escapeForDot(str string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		cmd := exec.Command("dot", "-T"+format)
    		cmd.Stdin, cmd.Stdout, cmd.Stderr = input, output, os.Stderr
    		if err := cmd.Run(); err != nil {
    			return fmt.Errorf("failed to execute dot. Is Graphviz installed? Error: %v", err)
    		}
    		return nil
    	}
    }
    
    // massageDotSVG invokes the dot tool to generate an SVG image and alters
    // the image to have panning capabilities when viewed in a browser.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"text/vnd.curl.scurl",
    				"text/vnd.curl.mcurl",
    				"text/vnd.dmclientscript",
    				"text/vnd.esmertec.theme-descriptor",
    				"text/vnd.fly",
    				"text/vnd.fmi.flexstor",
    				"text/vnd.graphviz",
    				"text/vnd.in3d.3dml",
    				"text/vnd.in3d.spot",
    				"text/vnd.iptc.anpa",
    				"text/vnd.iptc.newsml",
    				"text/vnd.iptc.nitf",
    				"text/vnd.latex-z",
    				"text/vnd.motorola.reflex",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/poset.go

    	}
    	for _, bs := range po.noneq {
    		for _, x := range bs {
    			if x != 0 {
    				return fmt.Errorf("non-empty noneq map")
    			}
    		}
    	}
    	return nil
    }
    
    // DotDump dumps the poset in graphviz format to file fn, with the specified title.
    func (po *poset) DotDump(fn string, title string) error {
    	f, err := os.Create(fn)
    	if err != nil {
    		return err
    	}
    	defer f.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. src/unicode/graphic.go

    )
    
    // GraphicRanges defines the set of graphic characters according to Unicode.
    var GraphicRanges = []*RangeTable{
    	L, M, N, P, S, Zs,
    }
    
    // PrintRanges defines the set of printable characters according to Go.
    // ASCII space, U+0020, is handled separately.
    var PrintRanges = []*RangeTable{
    	L, M, N, P, S,
    }
    
    // IsGraphic reports whether the rune is defined as a Graphic by Unicode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/unicode/example_test.go

    	// 	is graphic rune
    	// 	is number rune
    	// 	is printable rune
    	// For '!':
    	// 	is graphic rune
    	// 	is printable rune
    	// 	is punct rune
    	// For ' ':
    	// 	is graphic rune
    	// 	is printable rune
    	// 	is space rune
    	// For '℃':
    	// 	is graphic rune
    	// 	is printable rune
    	// 	is symbol rune
    	// For 'ᾭ':
    	// 	is graphic rune
    	// 	is letter rune
    	// 	is printable rune
    	// 	is title case rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top