Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for abcabc (0.14 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/testdata/basic.dat

    BE	^a$			a		(0,1)
    BE	abc			abc		(0,3)
    BE	abc			xabcy		(1,4)
    BE	abc			ababc		(2,5)
    BE	ab*c			abc		(0,3)
    BE	ab*bc			abc		(0,3)
    BE	ab*bc			abbc		(0,4)
    BE	ab*bc			abbbbc		(0,6)
    E	ab+bc			abbc		(0,4)
    E	ab+bc			abbbbc		(0,6)
    E	ab?bc			abbc		(0,4)
    E	ab?bc			abc		(0,3)
    E	ab?c			abc		(0,3)
    BE	^abc$			abc		(0,3)
    BE	^abc			abcc		(0,3)
    BE	abc$			aabc		(1,4)
    BE	^			abc		(0,0)
    BE	$			abc		(3,3)
    BE	a.c			abc		(0,3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  5. pkg/auth/authorizer/abac/abac.go

    limitations under the License.
    */
    
    // Package abac authorizes Kubernetes API actions using an Attribute-based access control scheme.
    package abac
    
    import (
    	"bufio"
    	"context"
    	"fmt"
    	"os"
    	"strings"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/kubernetes/pkg/apis/abac"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 11 03:11:30 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  6. cluster/gce/manifests/abac-authz-policy.jsonl

    {"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"user":"admin", "namespace": "*", "resource": "*", "apiGroup": "*", "nonResourcePath": "*"}}
    {"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"user":"{{kube_user}}", "namespace": "*", "resource": "*", "apiGroup": "*", "nonResourcePath": "*"}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 01 16:39:56 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. src/regexp/testdata/repetition.dat

    :HA#281:E	(ab|a|c|bcd){1,}(d*)	ababcd	(0,6)(4,5)(5,6)	RE2/Go
    #:HA#282:E	(ab|a|c|bcd){2,}(d*)	ababcd	(0,6)(3,6)(6,6)
    :HA#282:E	(ab|a|c|bcd){2,}(d*)	ababcd	(0,6)(4,5)(5,6)	RE2/Go
    #:HA#283:E	(ab|a|c|bcd){3,}(d*)	ababcd	(0,6)(3,6)(6,6)
    :HA#283:E	(ab|a|c|bcd){3,}(d*)	ababcd	(0,6)(4,5)(5,6)	RE2/Go
    :HA#284:E	(ab|a|c|bcd){4,}(d*)	ababcd	NOMATCH
    #:HA#285:E	(ab|a|c|bcd){0,10}(d*)	ababcd	(0,6)(3,6)(6,6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top