Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 350 for Height (0.58 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        const swidth = svg.clientWidth || svg.parentNode.clientWidth;
        const sheight = svg.clientHeight || svg.parentNode.clientHeight;
    
        // Convert deltas from screen space to svg space.
        dx *= (svg.viewBox.baseVal.width / swidth);
        dy *= (svg.viewBox.baseVal.height / sheight);
    
        svg.viewBox.baseVal.x -= dx;
        svg.viewBox.baseVal.y -= dy;
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. src/cmd/trace/goroutines.go

    }
    td,
    th {
      padding-left: 8px;
      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .details tr:hover {
      background-color: #f2f2f2;
    }
    .details td {
      text-align: right;
      border: 1px solid black;
    }
    .details td.id {
      text-align: left;
    }
    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/sym.go

    	}
    
    	// Exported symbols before non-exported.
    	ea := IsExported(a.Name)
    	eb := IsExported(b.Name)
    	if ea != eb {
    		return ea
    	}
    
    	// Order by name and then (for non-exported names) by package
    	// height and path.
    	if a.Name != b.Name {
    		return a.Name < b.Name
    	}
    	if !ea {
    		return a.Pkg.Path < b.Pkg.Path
    	}
    	return false
    }
    
    // IsExported reports whether name is an exported Go symbol (that is,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/cover/html.go

    			body {
    				background: black;
    				color: rgb(80, 80, 80);
    			}
    			body, pre, #legend span {
    				font-family: Menlo, monospace;
    				font-weight: bold;
    			}
    			#topbar {
    				background: black;
    				position: fixed;
    				top: 0; left: 0; right: 0;
    				height: 42px;
    				border-bottom: 1px solid rgb(80, 80, 80);
    			}
    			#content {
    				margin-top: 50px;
    			}
    			#nav, #legend {
    				float: left;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    final Integer height = getAttributeAsInteger(attributes, "height");
                    final Integer width = getAttributeAsInteger(attributes, "width");
                    if (!fessConfig.isThumbnailHtmlImageUrl(thumbnailUrl)) {
                        continue;
                    }
                    if (height != null && width != null) {
                        try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  6. src/cmd/trace/regions.go

    }
    td,
    th {
      padding-left: 8px;
      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .details tr:hover {
      background-color: #f2f2f2;
    }
    .details td {
      text-align: right;
      border: 1px solid #000;
    }
    .details td.id {
      text-align: left;
    }
    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/html.go

        var node = document.getElementById(id);
        if (node) {
        		node.width.baseVal.value *= 0.9;
        		node.height.baseVal.value *= 0.9;
        }
        return false;
    }
    
    function graphEnlarge(id) {
        var node = document.getElementById(id);
        if (node) {
        		node.width.baseVal.value *= 1.1;
        		node.height.baseVal.value *= 1.1;
        }
        return false;
    }
    
    function makeDraggable(event) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        java.math.BigDecimal getThumbnailHtmlImageMaxAspectRatioAsDecimal();
    
        default boolean validateThumbnailSize(final int width, final int height) {
            if (width <= 0 || height <= 0 || width < getThumbnailHtmlImageMinWidthAsInteger().intValue()
                    || height < getThumbnailHtmlImageMinHeightAsInteger().intValue()) {
                return false;
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          box.y -= adjust;
          divs.push(drawBox(xscale, box));
        }
        divs.push(drawSep(-adjust, posTotal, negTotal));
    
        const h = (list.length > 0 ?  list[list.length-1].y : 0) + 4*ROW;
        chart.style.height = h+'px';
        chart.replaceChildren(...divs);
      }
    
      function drawBox(xscale, box) {
        const srcIndex = box.src;
        const src = stacks.Sources[srcIndex];
    
        function makeRect(cl, x, y, w, h) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a
       * href="https://wicg.github.io/responsive-image-client-hints/#sec-ch-viewport-height">{@code
       * Sec-CH-Viewport-Height}</a> header field name.
       *
       * @since 32.0.0
       */
      public static final String SEC_CH_VIEWPORT_HEIGHT = "Sec-CH-Viewport-Height";
      /**
       * The HTTP <a href="https://wicg.github.io/responsive-image-client-hints/#sec-ch-dpr">{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
Back to top