Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for polygon (0.31 sec)

  1. pkg/ctrlz/assets/templates/modules/header.html

                <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"/>
                        <polygon points="135,220 225,230 135,30"/>
                    </svg>
                </span>
                <span class="brand-name">Istio ControlZ [{{ template "instance" }}]</span>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 682 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    height="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625"/></svg>',home:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65"/><polygon points="15 4 18 4 18 7 17 7 17 5 15 5"/><polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19"/></svg>',image:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "engines": {
            "node": ">=12"
          }
        },
        "node_modules/d3-polygon": {
          "version": "3.0.1",
          "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz",
          "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==",
          "engines": {
            "node": ">=12"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractPolyglotIntegrationSpec.groovy

     */
    
    package org.gradle.integtests.fixtures
    
    import groovy.transform.CompileStatic
    import org.gradle.integtests.fixtures.polyglot.PolyglotDslTest
    import org.gradle.integtests.fixtures.polyglot.PolyglotDslTestInterceptor
    import org.gradle.integtests.fixtures.polyglot.MultiProjectBuilder
    
    /**
     * An integration test which allows testing build scripts with both the
     * Groovy and Kotlin DSLs
     */
    @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/ConstraintsBuilder.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.polyglot
    
    import groovy.transform.CompileStatic
    
    @CompileStatic
    class ConstraintsBuilder extends AbstractDependenciesBuilder {
        @Override
        String getSectionName() {
            'constraints'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 857 bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/SectionBuilder.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.polyglot
    
    import org.gradle.test.fixtures.dsl.GradleDsl
    
    interface SectionBuilder {
        String generateSection(GradleDsl dsl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 784 bytes
    - Viewed (0)
Back to top