Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for xfdf (0.09 sec)

  1. src/debug/buildinfo/buildinfo.go

    // a 16-byte header, consisting of buildInfoMagic (14 bytes),
    // the binary's pointer size (1 byte),
    // and whether the binary is big endian (1 byte).
    var buildInfoMagic = []byte("\xff Go buildinf:")
    
    // ReadFile returns build information embedded in a Go binary
    // file at the given path. Most information is only available for binaries built
    // with module support.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.golden

    	_	= 1i
    	_	= 012345678901234567889i
    	_	= 123456789012345678890i
    	_	= 0.i
    	_	= .0i
    	_	= 3.14159265i
    	_	= 1e0i
    	_	= 1e+100i
    	_	= 1e-100i
    	_	= 2.71828e-1000i
    	_	= 'a'
    	_	= '\000'
    	_	= '\xFF'
    	_	= '\uff16'
    	_	= '\U0000ff16'
    	_	= `foobar`
    	_	= `foo
    ---
    ---
    bar`
    )
    
    func _() {
    	type _ int
    	type _ *int
    	type _ []int
    	type _ map[string]int
    	type _ chan int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_test.go

    	// recorded output from NewKDFExtendedNonceGCMTransformerWithUniqueSeed from https://github.com/kubernetes/kubernetes/pull/118828
    	const (
    		legacyKey        = "]@2:\x82\x0f\xf9Uag^;\x95\xe8\x18g\xc5\xfd\xd5a\xd3Z\x88\xa2Ћ\b\xaa\x9dO\xcf\\"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  4. src/text/template/parse/parse_test.go

    	{`'a'`, true, true, true, false, 'a', 'a', 'a', 0},
    	{`'\n'`, true, true, true, false, '\n', '\n', '\n', 0},
    	{`'\\'`, true, true, true, false, '\\', '\\', '\\', 0},
    	{`'\''`, true, true, true, false, '\'', '\'', '\'', 0},
    	{`'\xFF'`, true, true, true, false, 0xFF, 0xFF, 0xFF, 0},
    	{`'パ'`, true, true, true, false, 0x30d1, 0x30d1, 0x30d1, 0},
    	{`'\u30d1'`, true, true, true, false, 0x30d1, 0x30d1, 0x30d1, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	asmTEXT      = re(`\bTEXT\b(.*)·([^\(]+)\(SB\)(?:\s*,\s*([0-9A-Z|+()]+))?(?:\s*,\s*\$(-?[0-9]+)(?:-([0-9]+))?)?`)
    	asmDATA      = re(`\b(DATA|GLOBL)\b`)
    	asmNamedFP   = re(`\$?([a-zA-Z0-9_\xFF-\x{10FFFF}]+)(?:\+([0-9]+))\(FP\)`)
    	asmUnnamedFP = re(`[^+\-0-9](([0-9]+)\(FP\))`)
    	asmSP        = re(`[^+\-0-9](([0-9]+)\(([A-Z0-9]+)\))`)
    	asmOpcode    = re(`^\s*(?:[A-Z0-9a-z_]+:)?\s*([A-Z]+)\s*([^,]*)(?:,\s*(.*))?`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/crypto/md5/md5_test.go

    	{"72c2ed7592debca1c90fc0100f931a2f", "The fugacity of a constituent in a mixture of gases at a given temperature is proportional to its mole fraction.  Lewis-Randall Rule", "md5\x01\xa7\xc9\x18\x9b\xc3E\x18\xf2\x82\xfd\xf3$\x9d_\v\nem\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	if ctxt.IsELF || *flagBuildid == "" {
    		return
    	}
    
    	ldr := ctxt.loader
    	s := ldr.CreateSymForUpdate("go:buildid", 0)
    	// The \xff is invalid UTF-8, meant to make it less likely
    	// to find one of these accidentally.
    	data := "\xff Go build ID: " + strconv.Quote(*flagBuildid) + "\n \xff"
    	s.SetType(sym.STEXT)
    	s.SetData([]byte(data))
    	s.SetSize(int64(len(data)))
    
    	ctxt.Textp = append(ctxt.Textp, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  8. src/vendor/golang.org/x/net/idna/tables11.0.0.go

    	"\xc2\x03\x8b\xec\xdb\x03\x94\xec\xdf\x03\x9a\xec\xd2\x03\x01\x0c!\x03" +
    	"\x01\x0c#\x03ʠ\x9d\x03ʣ\x9c\x03ʢ\x9f\x03ʥ\x9e\x03ʤ\x91\x03ʧ\x90\x03ʦ\x93" +
    	"\x03ʩ\x92\x03ʨ\x95\x03\xca\xf3\xb5\x03\xca\xf0\xb4\x03\xca\xf1\xb7\x03" +
    	"\xca\xf6\xb6\x03\xca\xf7\x89\x03\xca\xf4\x88\x03\xca\xf5\x8b\x03\xca\xfa" +
    	"\x8a\x03\xca\xfb\x8d\x03\xca\xf8\x8c\x03\xca\xf9\x8f\x03\xca\xfe\x8e\x03" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 270.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    	"\x00u\x03\x02\x00\x00\x00\xfb" + // 0x00750302: 0x000000FB
    	"\x00u\x03\b\x00\x00\x00\xfc" + // 0x00750308: 0x000000FC
    	"\x00y\x03\x01\x00\x00\x00\xfd" + // 0x00790301: 0x000000FD
    	"\x00y\x03\b\x00\x00\x00\xff" + // 0x00790308: 0x000000FF
    	"\x00A\x03\x04\x00\x00\x01\x00" + // 0x00410304: 0x00000100
    	"\x00a\x03\x04\x00\x00\x01\x01" + // 0x00610304: 0x00000101
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go

    	"\x00u\x03\x02\x00\x00\x00\xfb" + // 0x00750302: 0x000000FB
    	"\x00u\x03\b\x00\x00\x00\xfc" + // 0x00750308: 0x000000FC
    	"\x00y\x03\x01\x00\x00\x00\xfd" + // 0x00790301: 0x000000FD
    	"\x00y\x03\b\x00\x00\x00\xff" + // 0x00790308: 0x000000FF
    	"\x00A\x03\x04\x00\x00\x01\x00" + // 0x00410304: 0x00000100
    	"\x00a\x03\x04\x00\x00\x01\x01" + // 0x00610304: 0x00000101
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 372.5K bytes
    - Viewed (0)
Back to top