Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Arial (0.04 sec)

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

    .multi-language-selector .language-option {
        background-color: white;
        border: 1px solid #f7f7f8;
        border-radius: 4px 4px 0 0;
        cursor: pointer;
        display: inline-block;
        font-weight: normal;
        font-family: 'Lato', Arial, sans-serif;
        margin: 0;
        padding: 4px 20px;
        min-width: 130px;
        max-width: 320px;
        text-align: center;
        filter: grayscale(1);
        -webkit-filter: grayscale(1);
        opacity: 0.7;
    }
    
    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. platforms/documentation/docs/src/docs/css/base.css

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    html,
    body {
        margin: 0;
        padding: 0;
    }
    
    html {
        font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
    }
    
    body {
        color: #02303A;
        background-color: #fff;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    html {
    	font-size: 16px;
    	font-weight: 400;
    	line-height: 1.5;
    }
    
    body {
    	color: var(--text-color);
    	background-color: var(--white-color);
    	font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    	line-height: 1.5;
    	-webkit-text-size-adjust: 100%;
    	-ms-text-size-adjust: 100%;
    }
    
    /* Links */
    a {
    	color: #1DA2BD;
    	text-decoration: none;
    }
    
    a:hover,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/xds/debug.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    var indexTmpl = template.Must(template.New("index").Parse(`<html>
    <head>
    <title>Pilot Debug Console</title>
    </head>
    <style>
    #endpoints {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      border-collapse: collapse;
    }
    
    #endpoints td, #endpoints th {
      border: 1px solid #ddd;
      padding: 8px;
    }
    
    #endpoints tr:nth-child(even){background-color: #f2f2f2;}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

     */
    
    /*
     * These CSS custom properties (variables) define the core color and font
     * properties used in this stylesheet.
     */
    :root {
        /* body, block and code fonts */
        --body-font-family: Lato, Arial, Helvetica, sans-serif;
        --block-font-family: Lato, Georgia, "Times New Roman", Times, serif;
        --code-font-family: monospace;
        /* Base font sizes for body and code elements */
        --body-font-size: 14px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. pkg/webhooks/validation/server/server.go

    func checkFields(raw []byte, kind string, namespace string, name string) (string, error) {
    	trial := make(map[string]json.RawMessage)
    	if err := json.Unmarshal(raw, &trial); err != nil {
    		scope.Infof("cannot decode configuration fields: %v", err)
    		return reasonYamlDecodeError, fmt.Errorf("cannot decode configuration fields: %v", err)
    	}
    
    	for key := range trial {
    		if _, ok := validFields[key]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/Utf8Test.java

        utf8Lengths.put(MAX_CODE_POINT, 4);
    
        Integer[] codePoints = utf8Lengths.keySet().toArray(new Integer[] {});
        StringBuilder sb = new StringBuilder();
        Random rnd = new Random();
        for (int trial = 0; trial < 100; trial++) {
          sb.setLength(0);
          int utf8Length = 0;
          for (int i = 0; i < 6; i++) {
            Integer randomCodePoint = codePoints[rnd.nextInt(codePoints.length)];
            sb.appendCodePoint(randomCodePoint);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ChmodBenchmark.java

        FileSystem fileSystem;
    
        @Setup(Level.Trial)
        public void setupTrial() throws IOException {
            this.tempRootDir = Files.createTempDirectory("chmod-benchmark");
            NativeServices.initializeOnDaemon(tempRootDir.toFile(), NativeServicesMode.fromSystemProperties());
            this.fileSystem = FileSystems.getDefault();
        }
    
        @TearDown(Level.Trial)
        public void tearDownTrial() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/HttpHeaders.java

      public static final String NO_VARY_SEARCH = "No-Vary-Search";
      /**
       * The HTTP <a href="https://googlechrome.github.io/OriginTrials/#header">{@code Origin-Trial}</a>
       * header field name.
       *
       * @since 27.1
       */
      public static final String ORIGIN_TRIAL = "Origin-Trial";
      /** The HTTP {@code P3P} header field name. Limited browser support. */
      public static final String P3P = "P3P";
    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