Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for widths (0.13 sec)

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

      // fitText sets text and font-size clipped to the specified width w.
      function fitText(t, avail, textList) {
        // Find first entry in textList that fits.
        let width = avail;
        textContext.font = FONT_SIZE + 'pt Arial';
        for (let i = 0; i < textList.length; i++) {
          let text = textList[i];
          width = textContext.measureText(text).width;
          if (width <= avail) {
            t.innerText = text;
            return;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters_test.cc

      EXPECT_FLOAT_EQ(bin_width, 0.125);
      int32_t actual_num_bins =
          CalculateActualNumBins(/*min_value=*/0.0, /*max_value=*/25.0, bin_width);
      EXPECT_EQ(actual_num_bins, 200);
    
      // Calculate the bin width with the actual num bins.
      float raw_bin_width = 25.0 / actual_num_bins;
      EXPECT_FLOAT_EQ(bin_width, raw_bin_width);
    }
    
    TEST(CalibrationParametersTest, CalculateBinWidthLargerThanOne) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/fmt/format.go

    		length = f.prec
    	}
    	// Compute width of the encoding taking into account the f.sharp and f.space flag.
    	width := 2 * length
    	if width > 0 {
    		if f.space {
    			// Each element encoded by two hexadecimals will get a leading 0x or 0X.
    			if f.sharp {
    				width *= 2
    			}
    			// Elements will be separated by a space.
    			width += length - 1
    		} else if f.sharp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. clause/with.go

    package clause
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 35 bytes
    - Viewed (0)
  5. docs/en/docs/img/tutorial/bigger-applications/package.drawio

                        <mxGeometry x="130" y="565" width="370" height="100" as="geometry"/>
                    </mxCell>
                    <mxCell id="5" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" parent="1" vertex="1">
                        <mxGeometry x="1030" y="430" width="400" height="260" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    }
    /* Scrollable container for flame graph */
    #stack-holder {
      width: 100%;
      flex-grow: 1;
      overflow-y: auto;
      background: #eee; /* Light grey gives better contrast with boxes */
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Flame graph */
    #stack-chart {
      width: 100%;
      position: relative; /* Allows absolute positioning of child boxes */
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/style.css

        background-position: -18px 0;
        display: inline-block;
        width: 18px;
        height: 18px;
        position: relative;
        top: 4px;
    }
    .configuration h3.closed  ins {
        background-position: 0 0;
    }
    #dependencies {
        margin-right: 30px;
    }
    #insight {
        position: fixed;
        right: 50px;
        top: 50px;
        display: none;
        width: 70%;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 18 00:02:31 UTC 2014
    - 2K bytes
    - Viewed (0)
  8. doc/next/1-intro.md

    <!--
    NOTE: In this document and others in this directory, the convention is to
    set fixed-width phrases with non-fixed-width spaces, as in
    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.23 {#introduction}
    
    **Go 1.23 is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/templates/index.html

    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    {% endblock %}
    
    {% block styles %}
    <style>
        table {
            color: #333;
            background: white;
            border: 1px solid grey;
            font-size: 12pt;
            border-collapse: collapse;
            width: 100%;
        }
    
        table thead th,
        table tfoot th {
            color: #fff;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/image/gif/writer_test.go

    		t.Errorf("DecodeConfig inconsistent with DecodeAll")
    	}
    	if !palettesEqual(g1.Config.ColorModel.(color.Palette), globalColorModel.(color.Palette)) {
    		t.Errorf("unexpected global color model")
    	}
    	if w, h := g1.Config.Width, g1.Config.Height; w != width || h != height {
    		t.Errorf("got config width * height = %d * %d, want %d * %d", w, h, width, height)
    	}
    
    	if g0.LoopCount != g1.LoopCount {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top