Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for xfdf (0.05 sec)

  1. src/crypto/sha512/sha512_test.go

    }
    
    var golden224 = []sha512Test{
    	{
    		"6ed0dd02806fa89e25de060c19d3ac86cabb87d6a0ddd05c333b84f4",
    		"",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	"ooryon\x00yrb\x00yre\x00yrl\x00yss\x00yua\x00yue\x00yuj\x00yut\x00yuw" +
    	"\x00zahazag\x00zbl\x00zdj\x00zea\x00zgh\x00zhhozhx\x00zia\x00zlm\x00zmi" +
    	"\x00zne\x00zuulzxx\x00zza\x00\xff\xff\xff\xff"
    
    const langNoIndexOffset = 1330
    
    // langNoIndex is a bit vector of all 3-letter language codes that are not used as an index
    // in lookup tables. The language ids for these language codes are derived directly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  3. 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 (0)
  4. src/crypto/x509/verify_test.go

    	badCert, err := ParseCertificate([]byte(badCertData))
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	t.Run("leaf", func(t *testing.T) {
    		opts := VerifyOptions{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		{"HTTP/1.1", "Host: \xff\r\n", 400},
    		{"HTTP/1.1", "Host: {\r\n", 400},
    		{"HTTP/1.1", "Host: }\r\n", 400},
    		{"HTTP/1.1", "Host: first\r\nHost: second\r\n", 400},
    
    		// HTTP/1.0 can lack a host header, but if present
    		// must play by the rules too:
    		{"HTTP/1.0", "", 200},
    		{"HTTP/1.0", "Host: first\r\nHost: second\r\n", 400},
    		{"HTTP/1.0", "Host: \xff\r\n", 400},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    escaped_char     = `\` ( "a" | "b" | "f" | "n" | "r" | "t" | "v" | `\` | "'" | `"` ) .
    </pre>
    
    <pre>
    'a'
    'ä'
    '本'
    '\t'
    '\000'
    '\007'
    '\377'
    '\x07'
    '\xff'
    '\u12e4'
    '\U00101234'
    '\''         // rune literal containing single quote character
    'aa'         // illegal: too many characters
    '\xa'        // illegal: too few hexadecimal digits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    						if len(xffIPs) != 4 {
    							return fmt.Errorf("did not receive expected 4 hosts in X-Forwarded-For header")
    						}
    
    						return ExpectString(strings.TrimSpace(xffIPs[1]), "72.9.5.6", "ip in xff header")
    					}),
    			},
    		})
    	}
    	return cases
    }
    
    func envoyFilterCases(t TrafficContext) {
    	// Test adding envoyfilter to inbound and outbound route/cluster/listeners
    	cfg := `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top