Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for otf (0.04 sec)

  1. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                } else if (lowerPath.endsWith(".json")) {
                    response.setContentType("application/json");
                } else if (lowerPath.endsWith(".otf")) {
                    response.setContentType("font/otf");
                } else if (lowerPath.endsWith(".svg")) {
                    response.setContentType("image/svg+xml");
                } else if (lowerPath.endsWith(".ttf")) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/net/http/sniff.go

    		ct:   "application/vnd.ms-fontobject",
    	},
    	&exactSig{[]byte("\x00\x01\x00\x00"), "font/ttf"},
    	&exactSig{[]byte("OTTO"), "font/otf"},
    	&exactSig{[]byte("ttcf"), "font/collection"},
    	&exactSig{[]byte("wOFF"), "font/woff"},
    	&exactSig{[]byte("wOF2"), "font/woff2"},
    
    	// Archive types
    	&exactSig{[]byte("\x1F\x8B\x08"), "application/x-gzip"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  3. src/net/http/sniff_test.go

    	{"TTF sample II", []byte("\x00\x01\x00\x00\x00\x0e\x00\x80\x00\x03\x00\x60\x46"), "font/ttf"},
    
    	{"OTTO sample  I", []byte("\x4f\x54\x54\x4f\x00\x0e\x00\x80\x00\x03\x00\x60\x42\x41\x53\x45"), "font/otf"},
    
    	{"woff sample  I", []byte("\x77\x4f\x46\x46\x00\x01\x00\x00\x00\x00\x30\x54\x00\x0d\x00\x00"), "font/woff"},
    	{"woff2 sample", []byte("\x77\x4f\x46\x32\x00\x01\x00\x00\x00"), "font/woff2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:53:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/MediaType.java

      /**
       * <a href="https://en.wikipedia.org/wiki/OpenType">Open Type Font Format</a> (OTF) as defined by
       * <a href="https://tools.ietf.org/html/rfc8081">RFC 8081</a>.
       *
       * @since 30.0
       */
      public static final MediaType FONT_OTF = createConstant(FONT_TYPE, "otf");
    
      /**
       * <a href="https://en.wikipedia.org/wiki/SFNT">Spline or Scalable Font Format</a> (SFNT). <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/MediaType.java

      /**
       * <a href="https://en.wikipedia.org/wiki/OpenType">Open Type Font Format</a> (OTF) as defined by
       * <a href="https://tools.ietf.org/html/rfc8081">RFC 8081</a>.
       *
       * @since 30.0
       */
      public static final MediaType FONT_OTF = createConstant(FONT_TYPE, "otf");
    
      /**
       * <a href="https://en.wikipedia.org/wiki/SFNT">Spline or Scalable Font Format</a> (SFNT). <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-font-dos",
    				"application/x-font-framemaker",
    				"application/x-font-ghostscript",
    				"application/x-font-libgrx",
    				"application/x-font-linux-psf",
    				"application/x-font-otf",
    				"application/x-font-pcf",
    				"application/x-font-snf",
    				"application/x-font-speedo",
    				"application/x-font-sunos-news",
    				"application/x-font-ttf",
    				"application/x-font-type1",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.psf"/>
      </mime-type>
    
      <mime-type type="application/x-font-otf">
        <alias type="application/vnd.ms-opentype"/>
        <acronym>OTF</acronym>
        <_comment>OpenType Font</_comment>
        <magic priority="40">
          <match value="OTTO\x00" type="string" offset="0"/>
        </magic>
        <glob pattern="*.otf"/>
      </mime-type>
    
      <mime-type type="application/x-font-pcf">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top