Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for graphviz (0.24 sec)

  1. src/strconv/quote_test.go

    	for _, tt := range quotetests {
    		if out := QuoteToGraphic(tt.in); out != tt.graphic {
    			t.Errorf("QuoteToGraphic(%s) = %s, want %s", tt.in, out, tt.graphic)
    		}
    		if out := AppendQuoteToGraphic([]byte("abc"), tt.in); string(out) != "abc"+tt.graphic {
    			t.Errorf("AppendQuoteToGraphic(%q, %s) = %s, want %s", "abc", tt.in, out, "abc"+tt.graphic)
    		}
    	}
    }
    
    func BenchmarkQuote(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

    // to the original plan.
    bool PickSubgraphsPass::MakeDecisions(ArrayRef<func::CallOp> output_subgraphs) {
      // BFS to make decisions.
      std::queue<const GraphView*> processing_queue;
      for (func::CallOp output : output_subgraphs) {
        const GraphView* preferred_graph_view;
        float minimum_cost = std::numeric_limits<float>::max();
    
        const Subgraph& subgraph = subgraphs_.find(output)->second;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="text/vnd.fly">
        <glob pattern="*.fly"/>
      </mime-type>
      <mime-type type="text/vnd.fmi.flexstor">
        <glob pattern="*.flx"/>
      </mime-type>
      <mime-type type="text/vnd.graphviz">
        <_comment>Graphviz Graph Visualization Software</_comment>
        <glob pattern="*.gv"/>
        <!-- glob pattern="*.dot" - conflicts with application/msword -->
        <magic priority="50">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

            this.variantSelector = variantSelector;
    
            int graphSize = estimateGraphSize(root);
            this.modules = new LinkedHashMap<>(graphSize);
            this.nodes = new LinkedHashMap<>(3 * graphSize / 2);
            this.selectors = new LinkedHashMap<>(5 * graphSize / 2);
            this.queue = new ArrayDeque<>(graphSize);
    
            LocalComponentGraphResolveState rootComponentState = root.getRootComponent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/svg.go

    package driver
    
    import (
    	"regexp"
    	"strings"
    
    	"github.com/google/pprof/third_party/svgpan"
    )
    
    var (
    	viewBox  = regexp.MustCompile(`<svg\s*width="[^"]+"\s*height="[^"]+"\s*viewBox="[^"]+"`)
    	graphID  = regexp.MustCompile(`<g id="graph\d"`)
    	svgClose = regexp.MustCompile(`</svg>`)
    )
    
    // massageSVG enhances the SVG output from DOT to provide better
    // panning inside a web browser. It uses the svgpan library, which is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/strconv/makeisprint.go

    			log.Fatalf("%U too big for isNotPrint32\n", r)
    		}
    		fmt.Fprintf(&buf, "\t%#04x,\n", r-0x10000)
    	}
    	fmt.Fprintf(&buf, "}\n\n")
    
    	// The list of graphic but not "printable" runes is short. Just make one easy table.
    	fmt.Fprintf(&buf, "// isGraphic lists the graphic runes not matched by IsPrint.\n")
    	fmt.Fprintf(&buf, "var isGraphic = []uint16{\n")
    	for r := rune(0); r <= unicode.MaxRune; r++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/image/gif/reader.go

    			return nil
    		}
    	}
    }
    
    func (d *decoder) readGraphicControl() error {
    	if err := readFull(d.r, d.tmp[:6]); err != nil {
    		return fmt.Errorf("gif: can't read graphic control: %s", err)
    	}
    	if d.tmp[0] != 4 {
    		return fmt.Errorf("gif: invalid graphic control extension block size: %d", d.tmp[0])
    	}
    	flags := d.tmp[1]
    	d.disposalMethod = (flags & gcDisposalMethodMask) >> 2
    	d.delayTime = int(d.tmp[2]) | int(d.tmp[3])<<8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      return results_.at(OutputTensor(edge->src(), edge->src_output()));
    }
    
    Node* Encapsulator::Subgraph::MakeNodeImage(const Graph* graph_in, Node* node) {
      if (!graph_) {
        graph_.reset(new Graph(graph_in->op_registry()));
        graph_->set_versions(graph_in->versions());
      }
    
      // TODO(b/116981129): Enhance how the device for the encapsulated subgraph is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    // dep from B. Originally D must run after C, post-transformation this
    // dependency is lost.
    Status EncapsulateSubgraphsInFunctions(
        string group_attribute, const Graph& graph_in,
        const RewriteSubgraphFn& rewrite_subgraph_fn, bool reuse_existing_functions,
        std::unique_ptr<Graph>* graph_out, FunctionLibraryDefinition* library);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. src/strconv/quote.go

    }
    
    // QuoteToGraphic returns a double-quoted Go string literal representing s.
    // The returned string leaves Unicode graphic characters, as defined by
    // [IsGraphic], unchanged and uses Go escape sequences (\t, \n, \xFF, \u0100)
    // for non-graphic characters.
    func QuoteToGraphic(s string) string {
    	return quoteWith(s, '"', false, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top