Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for abcabc (0.09 sec)

  1. src/cmd/go/testdata/script/test_fuzz_parallel.txt

    		f.Add(v)
    	}
    
    	var mu sync.Mutex
    	var before, after []byte
    	f.Cleanup(func() {
    		sort.Slice(after, func(i, j int) bool { return after[i] < after[j] })
    		got := string(before) + string(after)
    		want := "abcabc"
    		if got != want {
    			f.Fatalf("got %q; want %q", got, want)
    		}
    	})
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		before = append(before, b...)
    		t.Parallel()
    		mu.Lock()
    		after = append(after, b...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/StringUtilTest.java

         * @throws Exception
         */
        @Test
        public void testSubstringFromLast() throws Exception {
            assertEquals("ab", StringUtil.substringFromLast("abc", "c"));
            assertEquals("abcab", StringUtil.substringFromLast("abcabc", "c"));
            assertEquals("abc", StringUtil.substringFromLast("abc", ""));
            assertEquals("abc", StringUtil.substringFromLast("abc", null));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/compress/flate/deflate_test.go

    				if err != nil {
    					t.Errorf("i=%d, firstN=%d, flush=%t: NewWriter: %v", i, firstN, flush, err)
    					continue
    				}
    				for _, n := range tc {
    					want = append(want, abcabc[:n]...)
    					if _, err := w.Write(abcabc[:n]); err != nil {
    						t.Errorf("i=%d, firstN=%d, flush=%t: Write: %v", i, firstN, flush, err)
    						continue outer
    					}
    					if !flush {
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. src/regexp/all_test.go

    	// of a character.
    	{"[a-c]*", "x", "\u65e5", "x\u65e5x"},
    	{"[^\u65e5]", "x", "abc\u65e5def", "xxx\u65e5xxx"},
    
    	// Start and end of a string.
    	{"^[a-c]*", "x", "abcdabc", "xdabc"},
    	{"[a-c]*$", "x", "abcdabc", "abcdx"},
    	{"^[a-c]*$", "x", "abcdabc", "abcdabc"},
    	{"^[a-c]*", "x", "abc", "x"},
    	{"[a-c]*$", "x", "abc", "x"},
    	{"^[a-c]*$", "x", "abc", "x"},
    	{"^[a-c]*", "x", "dabce", "xdabce"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. platforms/software/security/src/test/groovy/org/gradle/plugins/signing/signatory/pgp/PgpKeyIdSpec.groovy

    import spock.lang.*
    
    class PgpKeyIdSpec extends Specification  {
    
        protected key(arg) {
            new PgpKeyId(arg)
        }
    
        def "conversion is symmetrical"() {
            expect:
            key("ABCDABCD").asHex == "ABCDABCD"
        }
    
        def "conversion"() {
            expect:
            key(hex).asLong == decimal
            key(decimal).asHex == hex
    
            where:
            hex        | decimal
            "AAAAAAAA" | 2863311530
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. tests/integration/security/normalization_test.go

    						{"/xyz%30..//abc", "/xyz%30..//abc"},
    						{"/app/%2E./admin", "/app/%2E./admin"},
    						{`/app\admin`, `/app\admin`},
    						{`/app/\/\/\admin`, `/app/\/\/\admin`},
    						{`/%2Fapp%5cadmin%5Cabc`, `/%2Fapp%5cadmin%5Cabc`},
    						{`/%5Capp%2f%5c%2F%2e%2e%2fadmin%5c\abc`, `/%5Capp%2f%5c%2F%2e%2e%2fadmin%5c\abc`},
    						{`/app//../admin`, `/app//../admin`},
    						{`/app//../../admin`, `/app//../../admin`},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. hack/verify-api-groups.sh

    # groups_without_codegen is the list of group we EXPECT to not have the client generated for
    # them.  This happens for types that aren't served from the API server
    groups_without_codegen=(
    	"abac"
    	"imagepolicy"
    	"admission"
    )
    client_gen_file="${KUBE_ROOT}/staging/src/k8s.io/code-generator/cmd/client-gen/main.go"
    
    for group_dirname in "${group_dirnames[@]}"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/authorizer/config.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	versionedinformers "k8s.io/client-go/informers"
    	resourcev1alpha2informers "k8s.io/client-go/informers/resource/v1alpha2"
    	"k8s.io/kubernetes/pkg/auth/authorizer/abac"
    	"k8s.io/kubernetes/pkg/auth/nodeidentifier"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/node"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

            step1.matches("ac")
            step1.matches("abac")
            !step1.matches("bc")
            !step1.matches("ab")
            !step1.matches("a")
            !step1.matches("c")
    
            and:
            def step2 = PatternStepFactory.getStep("a**c", true);
            step2 instanceof HasPrefixAndSuffixPatternStep
    
            step2.matches("ac")
            step2.matches("abac")
            !step2.matches("bc")
            !step2.matches("ab")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/RegExpPatternStepTest.java

        }
    
        @Test public void testMultiCharWildcard() {
            RegExpPatternStep step = new RegExpPatternStep("a*c", true);
            assertTrue(step.matches("abc"));
            assertTrue(step.matches("abrac"));
            assertFalse(step.matches("abcd"));
            assertFalse(step.matches("ab"));
            assertFalse(step.matches("a"));
    
            step = new RegExpPatternStep("*", true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top