Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ttf (0.01 sec)

  1. .gitattributes

    *.flv           binary
    *.fla           binary
    *.swf           binary
    *.gz            binary
    *.zip           binary
    *.jar           binary
    *.tar           binary
    *.tar.gz        binary
    *.7z            binary
    *.ttf           binary
    *.pyc           binary
    *.gpg           binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 02 12:15:16 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. src/net/http/sniff_test.go

    	{"AVI video #2", []byte("RIFF,\n\x00\x00AVI LISTÀ"), "video/avi"},
    
    	// Font types.
    	// {"MS.FontObject", []byte("\x00\x00")},
    	{"TTF sample  I", []byte("\x00\x01\x00\x00\x00\x17\x01\x00\x00\x04\x01\x60\x4f"), "font/ttf"},
    	{"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"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:53:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  3. test/codegen/switch.go

    	// amd64: `CMPL\s\(.*\), \$1735815982$`
    	// arm64: `MOVD\s\$1735815982`, `CMPW\sR.*, R.*$`
    	case ".svg":
    		return "C"
    	// amd64: `CMPL\s\(.*\), \$1718907950$`
    	// arm64: `MOVD\s\$1718907950`, `CMPW\sR.*, R.*$`
    	case ".ttf":
    		return "D"
    	default:
    		return ""
    	}
    }
    
    // use jump tables for type switches to concrete types.
    func typeSwitch(x any) int {
    	// amd64:`JMP\s\(.*\)\(.*\)$`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:39:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top