Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 0123456789_ (0.18 sec)

  1. src/strings/strings_test.go

    	{"01234567", "01234567", 0},
    	{"x01234567", "01234567", 1},
    	{"x0123456x01234567", "01234567", 9},
    	{"xx01234567"[:9], "01234567", -1},
    	{"", "0123456789", -1},
    	{"3214567844", "0123456789", -1},
    	{"0123456789", "0123456789", 0},
    	{"x0123456789", "0123456789", 1},
    	{"x012345678x0123456789", "0123456789", 11},
    	{"xyz0123456789"[:12], "0123456789", -1},
    	{"x01234567x89", "0123456789", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"%20f", 1.23456789e3, "         1234.567890"},
    	{"%20f", 1.23456789e-3, "            0.001235"},
    	{"%20f", 12345678901.23456789, "  12345678901.234568"},
    	{"%-20f", 1.23456789e3, "1234.567890         "},
    	{"%20.8f", 1.23456789e3, "       1234.56789000"},
    	{"%20.8f", 1.23456789e-3, "          0.00123457"},
    	{"%g", 1.23456789e3, "1234.56789"},
    	{"%g", 1.23456789e-3, "0.00123456789"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. pkg/apis/networking/validation/validation_test.go

    		"invalid ingress.ports.port (int)": makeNetworkPolicyCustom(setIngressPorts(makePort(&protocolTCP, intstr.FromInt32(123456789), 0))),
    		"invalid ingress.ports.port (str)": makeNetworkPolicyCustom(
    			setIngressPorts(makePort(&protocolTCP, intstr.FromString("!@#$"), 0))),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        )
      }
    
      @Test
      fun failedDribbledCallEventSequence() {
        server.enqueue(
          MockResponse.Builder()
            .body("0123456789")
            .throttleBody(2, 100, TimeUnit.MILLISECONDS)
            .socketPolicy(DisconnectDuringResponseBody)
            .build(),
        )
        client =
          client.newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  5. cmd/object-api-listobjects_test.go

    		{"test-bucket-list-object", "", "", "", -1, resultCases[0], nil, true},
    		// Testing for very large value of maxKey, this should set maxKeys to listObjectsLimit (20).
    		{"test-bucket-list-object", "", "", "", 1234567890, resultCases[0], nil, true},
    		// Testing for trancated value (21-24).
    		{"test-bucket-list-object", "", "", "", 5, resultCases[1], nil, true},
    		{"test-bucket-list-object", "", "", "", 4, resultCases[2], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    	inputs := []any{
    		"\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f" +
    			"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" +
    			` !"#$%&'()*+,-./` +
    			`0123456789:;<=>?` +
    			`@ABCDEFGHIJKLMNO` +
    			`PQRSTUVWXYZ[\]^_` +
    			"`abcdefghijklmno" +
    			"pqrstuvwxyz{|}~\x7f" +
    			"\u00A0\u0100\u2028\u2029\ufeff\ufdec\ufffd\uffff\U0001D11E" +
    			"&amp;%22\\",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    	kmsservice "k8s.io/kms/pkg/service"
    	"k8s.io/utils/pointer"
    )
    
    const (
    	sampleText        = "abcdefghijklmnopqrstuvwxyz"
    	sampleContextText = "0123456789"
    )
    
    var (
    	sampleInvalidKeyID = string(make([]byte, envelopekmsv2.KeyIDMaxSize+1))
    )
    
    // testEnvelopeService is a mock envelope service which can be used to simulate remote Envelope services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. src/bufio/bufio_test.go

    		b.Flush()
    		tw.check(t, "123456789012", "")
    	}
    	{
    		tw := &teststringwriter{}
    		b := NewWriterSize(tw, BufSize)
    		b.WriteString("123456789")   // long string, empty buffer:
    		tw.check(t, "", "123456789") // use WriteString
    	}
    	{
    		tw := &teststringwriter{}
    		b := NewWriterSize(tw, BufSize)
    		b.WriteString("abc")
    		tw.check(t, "", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    	{Value: ifaceptr(true), MarshalOnly: true, ExpectXML: `<bool>true</bool>`},
    
    	// Test time.
    	{
    		Value:     &Plain{time.Unix(1e9, 123456789).UTC()},
    		ExpectXML: `<Plain><V>2001-09-09T01:46:40.123456789Z</V></Plain>`,
    	},
    
    	// A pointer to struct{} may be used to test for an element's presence.
    	{
    		Value:     &PresenceTest{new(struct{})},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. src/go/build/build.go

    // The % is for Jenkins. See golang.org/issue/16959.
    // The ! is because module paths may use them. See golang.org/issue/26716.
    // The ~ and ^ are for sr.ht. See golang.org/issue/32260.
    const safeString = "+-.,/0123456789=ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz:$@%! ~^"
    
    func safeCgoName(s string) bool {
    	if s == "" {
    		return false
    	}
    	for i := 0; i < len(s); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top