Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for polygon (0.36 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        background-position: 17px 80%;
        background-repeat: no-repeat;
        background-size: 11px 11px;
        padding-left: 2.3em;
    }
    
    .multi-language-selector {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/templates/productpage.html

            <svg  class="mx-auto h-24 w-auto" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 320 320"><g id="logo" fill="#466BB0"><polygon id="hull" points="80 250 240 250 140 280 80 250"/><polygon id="mainsail" points="80 240 140 230 140 120 80 240"/><polygon id="headsail" points="150 230 240 240 150 40 150 230"/></g></svg>
    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. src/cmd/compile/internal/ssa/html.go

            ...document.querySelectorAll('ellipse'),
            ...document.querySelectorAll('polygon'),
        ];
    
        // Iterate over the svgParts specifically looking for white and black fill/stroke to be toggled.
        // The verbose conditional is intentional here so that we do not mutate any svg path, ellipse, or polygon that is of any color other than white or black.
        svgParts.forEach(el => {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

          } else if (origFill.has(p)) {
            p.style.fill = origFill.get(p);
          }
        }
    
        return true;
      }
    
      function findPolygon(elem) {
        if (elem.localName == 'polygon') return elem;
        for (const c of elem.children) {
          const p = findPolygon(c);
          if (p != null) return p;
        }
        return null;
      }
    
      function setSampleIndexLink(si) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    - The module metadata declares more than one artifact e.g. as part of an Ivy dependency descriptor.
    - You only want to download a specific artifact without any of the transitive dependencies declared in the metadata.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
Back to top