Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for abcdeff (0.2 sec)

  1. src/strings/search_test.go

    	"testing"
    )
    
    func TestFinderNext(t *testing.T) {
    	testCases := []struct {
    		pat, text string
    		index     int
    	}{
    		{"", "", 0},
    		{"", "abc", 0},
    		{"abc", "", -1},
    		{"abc", "abc", 0},
    		{"d", "abcdefg", 3},
    		{"nan", "banana", 2},
    		{"pan", "anpanman", 2},
    		{"nnaaman", "anpanmanam", -1},
    		{"abcd", "abc", -1},
    		{"abcd", "bcd", -1},
    		{"bcd", "abcd", 1},
    		{"abc", "acca", -1},
    		{"aa", "aaa", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/test/cmd/init_test.go

    			args:     "--token=abcd:1234567890abcd",
    			expected: false,
    		},
    		{
    			name:     "invalid token non-lowercase",
    			args:     "--token=Abcdef:1234567890abcdef",
    			expected: false,
    		},
    		{
    			name:     "valid token is accepted",
    			args:     "--token=abcdef.0123456789abcdef",
    			expected: true,
    		},
    	}
    
    	for _, rt := range initTest {
    		t.Run(rt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. src/crypto/sha1/sha1_test.go

    	{"425af12a0743502b322e93a015bcf868e324d56a", "abcdefgh", "sha\x01gE#\x01\xef\u036b\x89\x98\xba...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    	// the match of the first parenthesized subexpression, and so on.
    	// e.g.:
    	// result := bootstraputil.BootstrapTokenRegexp.FindStringSubmatch("abcdef.1234567890123456")
    	// result == []string{"abcdef.1234567890123456","abcdef","1234567890123456"}
    	// len(result) == 3
    	validatedSubstringsSize = 3
    )
    
    // MarshalJSON implements the json.Marshaler interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. pkg/spiffe/spiffe_test.go

    			},
    		},
    		{
    			name:      "InvalidInput",
    			spiffeURI: []string{"spiffe:///abcdef", "spffff://a/b/c", "abcdef"},
    			trustDomains: []string{
    				"foo",
    			},
    			want: map[string]struct{}{
    				"spiffe:///abcdef": {},
    				"spffff://a/b/c":   {},
    				"abcdef":           {},
    			},
    		},
    		{
    			name:         "EmptyTrustDomains",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternMatcherFactoryTest.java

            assertThat(matcher, matchesFile("?b??e*"));
            assertThat(matcher, matchesFile("abcde"));
            assertThat(matcher, matchesFile("abcdefgh"));
            assertThat(matcher, not(matchesFile("aaaae")));
            assertThat(matcher, not(matchesFile("abcdfe")));
            assertThat(matcher, not(matchesFile("abc")));
        }
    
        @Test public void testLiteralsPartialMatchingDirs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

                    jvm: "java 7",
                    versionUnderTest: "Gradle 1.0",
                    operatingSystem: "windows",
                    host: "me",
                    vcsBranch: "master",
                    vcsCommits: ["abcdef"],
                    channel: channel,
                    startTime: new Date().time
            )
            options.each { key, value -> results."$key" = value }
            return results
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/strings/compare_test.go

    	{"", "a", -1},
    	{"abc", "abc", 0},
    	{"ab", "abc", -1},
    	{"abc", "ab", 1},
    	{"x", "ab", 1},
    	{"ab", "x", -1},
    	{"x", "a", 1},
    	{"b", "x", -1},
    	// test runtime·memeq's chunked implementation
    	{"abcdefgh", "abcdefgh", 0},
    	{"abcdefghi", "abcdefghi", 0},
    	{"abcdefghi", "abcdefghj", -1},
    }
    
    func TestCompare(t *testing.T) {
    	for _, tt := range compareTests {
    		cmp := Compare(tt.a, tt.b)
    		if cmp != tt.i {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:33:55 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/graph/TraverserTest.java

    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/graph/TraverserTest.java

    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
Back to top