Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 132 for aBCD (0.77 sec)

  1. 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)
  2. platforms/core-execution/build-cache-local/src/test/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheTest.groovy

                assert partialCacheFile.name.startsWith(hashCode)
                assert partialCacheFile.name.endsWith(BuildCacheTempFileStore.PARTIAL_FILE_SUFFIX)
    
                output << "abcd"
                throw new RuntimeException("Simulated write error")
            }
    
            then:
            def ex = thrown RuntimeException
            ex.message == "Simulated write error"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 14:32:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

              body = transferKind.newRequestBody("ABCD"),
            ),
          )
        assertThat(readAscii(response.body.byteStream(), Int.MAX_VALUE))
          .isEqualTo("Page 2")
        val page1 = server.takeRequest()
        assertThat(page1.requestLine).isEqualTo("POST /page1 HTTP/1.1")
        assertThat(page1.body.readUtf8()).isEqualTo("ABCD")
        val page2 = server.takeRequest()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/regexp/onepass_test.go

    		}
    	}
    }
    
    var onePassTests = []struct {
    	re        string
    	isOnePass bool
    }{
    	{`^(?:a|(?:a*))$`, false},
    	{`^(?:(a)|(?:a*))$`, false},
    	{`^(?:(?:(?:.(?:$))?))$`, true},
    	{`^abcd$`, true},
    	{`^(?:(?:a{0,})*?)$`, false},
    	{`^(?:(?:a+)*)$`, true},
    	{`^(?:(?:a|(?:aa)))$`, true},
    	{`^(?:[^\s\S])$`, true},
    	{`^(?:(?:a{3,4}){0,})$`, false},
    	{`^(?:(?:(?:a*)+))$`, true},
    	{`^[a-c]+$`, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

            !step5.matches("other")
    
            and:
            def step6 = PatternStepFactory.getStep("*bc*?", true);
            step6 instanceof RegExpPatternStep
            step6.matches("bcd")
            step6.matches("abcd")
            step6.matches("123abc1")
            !step6.matches("bc")
            !step6.matches("BC")
            !step6.matches("ABC")
            !step6.matches("other")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. cmd/dummy-data-generator_test.go

    		ok, msg := cmpReaders(r1, r2)
    		if !(ok && msg == "") {
    			t.Fatalf("unexpected")
    		}
    	}
    
    	{
    		r1 := bytes.NewReader([]byte("abc"))
    		r2 := bytes.NewReader([]byte("abcd"))
    		ok, _ := cmpReaders(r1, r2)
    		if ok {
    			t.Fatalf("unexpected")
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/types.go

    }
    
    // CgroupName is the abstract name of a cgroup prior to any driver specific conversion.
    // It is specified as a list of strings from its individual components, such as:
    // {"kubepods", "burstable", "pod1234-abcd-5678-efgh"}
    type CgroupName []string
    
    // CgroupConfig holds the cgroup configuration information.
    // This is common object which is used to specify
    // cgroup information to both systemd and raw cgroup fs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/test/cmd/init_test.go

    }
    
    func TestCmdInitToken(t *testing.T) {
    	initTest := []struct {
    		name     string
    		args     string
    		expected bool
    	}{
    		{
    			name:     "invalid token size",
    			args:     "--token=abcd:1234567890abcd",
    			expected: false,
    		},
    		{
    			name:     "invalid token non-lowercase",
    			args:     "--token=Abcdef:1234567890abcdef",
    			expected: false,
    		},
    		{
    			name:     "valid token is accepted",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top