Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for viewBox (0.19 sec)

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

        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;
      }
    
      function handleScanStart(e) {
        if (e.button != 0) return; // Do not catch right-clicks etc.
        setMode(MOUSEPAN);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/templates/productpage.html

            <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
              <path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
            </svg>
          </button>
        </div>
        <div class="sm:mx-auto sm:w-full sm:max-w-sm">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        padding-left: 2.5em;
    }
    
    .multi-language-selector .language-option[data-lang='kotlin'],
    .exampleblock[data-lang=kotlin] > .content .title {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/html.go

            svg.addEventListener('mouseleave', endDrag);
        }
    
        var point = svg.createSVGPoint();
        var isPointerDown = false;
        var pointerOrigin;
        var viewBox = svg.viewBox.baseVal;
    
        function getPointFromEvent (event) {
            point.x = event.clientX;
            point.y = event.clientY;
    
            // We get the current transformation matrix of the SVG and we inverse it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/main/resources/header.html

                <div class="site-header__navigation-header">
                    <a target="_top" class="logo" href="https://docs.gradle.org" title="Gradle Docs">
                        <svg width="139px" height="43px" viewBox="0 0 278 86" version="1.1" xmlns="http://www.w3.org/2000/svg">
                            <title>Gradle</title>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

    /**
     * A test that checks execution time and memory consumption.
     */
    @CacheableTask
    @CompileStatic
    abstract class PerformanceTest extends DistributionTest {
        public static final String TC_URL = "https://builds.gradle.org/viewLog.html?buildId="
        public static final Set<String> NON_CACHEABLE_VERSIONS = Sets.newHashSet("last", "nightly", "flakiness-detection-commit")
        private final Property<String> baselines = getProject().getObjects().property(String.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            when using the daemon, especially when using small heap and building a large project.
            Due to a bug (https://builds.gradle.org/viewLog.html?buildId=284033&tab=buildResultsDiv&buildTypeId=Gradle_Master_Performance_PerformanceExperimentsLinux) no instances of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

            this.executionDataProvider = executionDataProvider;
        }
    
        public static String getTeamCityWebUrlFromBuildId(String buildId) {
            return "https://builds.gradle.org/viewLog.html?buildId=" + buildId;
        }
    
        protected abstract class TableHtml extends MetricsHtml {
            AtomicInteger counter = new AtomicInteger();
    
            public TableHtml(Writer writer) {
                super(writer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/phi.go

    // https://pp.info.uni-karlsruhe.de/uploads/publikationen/braun13cc.pdf
    // For large functions, we use Sreedhar & Gao: A Linear Time Algorithm for Placing Φ-Nodes.
    // http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.8.1979&rep=rep1&type=pdf
    
    const smallBlocks = 500
    
    const debugPhi = false
    
    // fwdRefAux wraps an arbitrary ir.Node as an ssa.Aux for use with OpFwdref.
    type fwdRefAux struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
Back to top