Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for viewBox (0.1 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/svg.go

    // limitations under the License.
    
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/templates/modules/header.html

    {{ define "header" }}
    <header>
        <nav class="navbar navbar-expand-xs navbar-dark fixed-top bg-dark justify-content-between">
            <a class="navbar-brand" href="/">
                <span class="logo">
                    <svg viewBox="0 0 300 300">
                        <circle cx="150" cy="150" r="150" stroke-width="2" />
                        <polygon points="65,240 225,240 125,270"/>
                        <polygon points="65,230 125,220 125,110"/>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 682 bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    	if(svgRoot == null) {
    		var r = root.getElementById("viewport") ? root.getElementById("viewport") : root.documentElement, t = r;
    
    		while(t != root) {
    			if(t.getAttribute("viewBox")) {
    				setCTM(r, t.getCTM());
    
    				t.removeAttribute("viewBox");
    			}
    
    			t = t.parentNode;
    		}
    
    		svgRoot = r;
    	}
    
    	return svgRoot;
    }
    
    /**
     * Instance an SVGPoint object with given event coordinates.
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

      box-shadow: 0 1px 5px rgba(0,0,0,.3);
      line-height: 24px;
      padding: 1em;
      text-align: left;
    }
    .header input {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/main/resources/footer.html

                <time>2023</time>
                All rights reserved.
            </div>
            <div class="site-footer__logo"><a href="/">
                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 66.06">
                    <title>Gradle</title>
                    <path class="cls-1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top