Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for aBCD (0.55 sec)

  1. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    foo:////://///  s:foo p:////://///
    c:/foo  s:c p:/foo
    //foo/bar  s:http h:foo p:/bar
    http://foo/path;a??e#f#g  s:http h:foo p:/path;a q:??e f:#f#g
    http://foo/abcd?efgh?ijkl  s:http h:foo p:/abcd q:?efgh?ijkl
    http://foo/abcd#foo?bar  s:http h:foo p:/abcd f:#foo?bar
    [61:24:74]:98  s:http h:example.org p:/foo/[61:24:74]:98
    http:[61:27]/:foo  s:http h:example.org p:/foo/[61:27]/:foo
    http://[1::2]:3:4
    http://2001::1
    http://2001::1]
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. cni/pkg/plugin/plugin_test.go

    		},
    		{
    			name: "Empty",
    			args: args{ports: []string{}},
    			want: []string{},
    		},
    		{
    			name: "Non-parseable",
    			args: args{ports: []string{"abcd", "2345", "abcd"}},
    			want: []string{"abcd", "2345"},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := dedupPorts(tt.args.ports); !reflect.DeepEqual(got, tt.want) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    					Username: "******@****.***",
    					UID:      "abcd-1234",
    					Groups:   []string{"stuff-dev", "main-eng"},
    					Extra:    map[string]authenticationv1beta1.ExtraValue{"foo": {"bar", "baz"}},
    				},
    			},
    			expectedAuthenticated: true,
    			expectedUser: &user.DefaultInfo{
    				Name:   "******@****.***",
    				UID:    "abcd-1234",
    				Groups: []string{"stuff-dev", "main-eng"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    					Username: "******@****.***",
    					UID:      "abcd-1234",
    					Groups:   []string{"stuff-dev", "main-eng"},
    					Extra:    map[string]authenticationv1.ExtraValue{"foo": {"bar", "baz"}},
    				},
    			},
    			expectedAuthenticated: true,
    			expectedUser: &user.DefaultInfo{
    				Name:   "******@****.***",
    				UID:    "abcd-1234",
    				Groups: []string{"stuff-dev", "main-eng"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    			name:   "ipv4, all zeros",
    			in:     "0.0.0.0",
    			family: 4,
    		},
    		{
    			name:   "ipv4, max",
    			in:     "255.255.255.255",
    			family: 4,
    		},
    		{
    			name:   "ipv6",
    			in:     "1234::abcd",
    			family: 6,
    		},
    		{
    			name:   "ipv6, all zeros, collapsed",
    			in:     "::",
    			family: 6,
    		},
    		{
    			name:   "ipv6, max",
    			in:     "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/go/printer/testdata/declarations.input

    const (
    	umax uint                  = ^uint(0) // maximum value for a uint
    	bpu  = 1 << (5 + umax>>63)            // bits per uint
    	foo
    	bar  = -1
    )
    
    // typical enum
    const (
    	a MyType = iota
    	abcd
    	b
    	c
    	def
    )
    
    // excerpt from godoc.go
    var (
    	goroot = flag.String("goroot", runtime.GOROOT(), "Go root directory")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  7. src/encoding/base64/base64_test.go

    	s, err := StdEncoding.DecodeString("YWJjZA=====")
    	want := CorruptInputError(8)
    	if !reflect.DeepEqual(want, err) {
    		t.Errorf("Error = %v; want CorruptInputError(8)", err)
    	}
    	if string(s) != "abcd" {
    		t.Errorf("DecodeString = %q; want abcd", s)
    	}
    }
    
    func TestDecoderIssue15656(t *testing.T) {
    	_, err := StdEncoding.Strict().DecodeString("WvLTlMrX9NpYDQlEIFlnDB==")
    	want := CorruptInputError(22)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. src/go/printer/testdata/declarations.golden

    const (
    	umax	uint	= ^uint(0)		// maximum value for a uint
    	bpu		= 1 << (5 + umax>>63)	// bits per uint
    	foo
    	bar	= -1
    )
    
    // typical enum
    const (
    	a	MyType	= iota
    	abcd
    	b
    	c
    	def
    )
    
    // excerpt from godoc.go
    var (
    	goroot		= flag.String("goroot", runtime.GOROOT(), "Go root directory")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/CharSourceTest.java

        assertTrue(emptyConcat.isEmpty());
      }
    
      public void testConcat_infiniteIterable() throws IOException {
        CharSource source = CharSource.wrap("abcd");
        Iterable<CharSource> cycle = Iterables.cycle(ImmutableList.of(source));
        CharSource concatenated = CharSource.concat(cycle);
    
        String expected = "abcdabcd";
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/unicode/utf8/utf8_test.go

    }
    
    var surrogateMap = []Utf8Map{
    	{0xd800, "\xed\xa0\x80"}, // surrogate min decodes to (RuneError, 1)
    	{0xdfff, "\xed\xbf\xbf"}, // surrogate max decodes to (RuneError, 1)
    }
    
    var testStrings = []string{
    	"",
    	"abcd",
    	"☺☻☹",
    	"日a本b語ç日ð本Ê語þ日¥本¼語i日©",
    	"日a本b語ç日ð本Ê語þ日¥本¼語i日©日a本b語ç日ð本Ê語þ日¥本¼語i日©日a本b語ç日ð本Ê語þ日¥本¼語i日©",
    	"\x80\x80\x80\x80",
    }
    
    func TestFullRune(t *testing.T) {
    	for _, m := range utf8map {
    		b := []byte(m.str)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
Back to top