Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for aaaaaax (0.09 sec)

  1. src/regexp/testdata/nullsubexpr.dat

    E	(a*)*		a		(0,1)(0,1)
    E	SAME		x		(0,0)(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	(a*)+		a		(0,1)(0,1)
    E	SAME		x		(0,0)(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	(a+)*		a		(0,1)(0,1)
    E	SAME		x		(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	(a+)+		a		(0,1)(0,1)
    E	SAME		x		NOMATCH
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    
    E	([a]*)*		a		(0,1)(0,1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilderTest.groovy

            println(ex.getMessage())
    
            where:
            name                  | keyIds
            "short id"            | ["AAAAAAA"]
            "long id"             | ["AAAAAAAAAAAAAA"]
            "mixed short/long id" | ["AAAAAAAA", "AAAAAAAAAAAAAA"]
        }
    
        def "ArtifactVerificationBuilder should fail if trusted GPG key is not a fingerprint but a #name"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/index/suffixarray/suffixarray_test.go

    			"foo",
    			"(foo)",
    			".*",
    			"a*",
    		},
    	},
    
    	{
    		"all a's",
    		"aaaaaaaaaa", // 10 a's
    		[]string{
    			"",
    			"a",
    			"aa",
    			"aaa",
    			"aaaa",
    			"aaaaa",
    			"aaaaaa",
    			"aaaaaaa",
    			"aaaaaaaa",
    			"aaaaaaaaa",
    			"aaaaaaaaaa",
    			"aaaaaaaaaaa", // 11 a's
    			".",
    			".*",
    			"a+",
    			"aa+",
    			"aaaa[b]?",
    			"aaa*",
    		},
    	},
    
    	{
    		"abc",
    		"abc",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/encoding/base32/base32_test.go

    		{"A=", 1},
    		{"AA=", 3},
    		{"AA==", 4},
    		{"AA===", 5},
    		{"AAAA=", 5},
    		{"AAAA==", 6},
    		{"AAAAA=", 6},
    		{"AAAAA==", 7},
    		{"A=======", 1},
    		{"AA======", -1},
    		{"AAA=====", 3},
    		{"AAAA====", -1},
    		{"AAAAA===", -1},
    		{"AAAAAA==", 6},
    		{"AAAAAAA=", -1},
    		{"AAAAAAAA", -1},
    	}
    	for _, tc := range testCases {
    		dbuf := make([]byte, StdEncoding.DecodedLen(len(tc.input)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/encoding/base64/base64_test.go

    		{"====", 0},
    		{"x===", 1},
    		{"=AAA", 0},
    		{"A=AA", 1},
    		{"AA=A", 2},
    		{"AA==A", 4},
    		{"AAA=AAAA", 4},
    		{"AAAAA", 4},
    		{"AAAAAA", 4},
    		{"A=", 1},
    		{"A==", 1},
    		{"AA=", 3},
    		{"AA==", -1},
    		{"AAA=", -1},
    		{"AAAA", -1},
    		{"AAAAAA=", 7},
    		{"YWJjZA=====", 8},
    		{"A!\n", 1},
    		{"A=\n", 1},
    	}
    	for _, tc := range testCases {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. platforms/software/security/src/test/groovy/org/gradle/plugins/signing/signatory/pgp/PgpKeyIdSpec.groovy

            expect:
            key(hex).asLong == decimal
            key(decimal).asHex == hex
    
            where:
            hex        | decimal
            "AAAAAAAA" | 2863311530
            "DA124B92" | 3658632082
        }
    
        def "equals impl"() {
            expect:
            key("AAAAAAAA") == key(2863311530)
        }
    
        def "comparison"() {
            expect:
            key("00000000") < key("00000001")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue57823.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    //go:noinline
    func g(x *byte) *byte { return x }
    
    func main() {
    	slice()
    	str("AAAAAAAA", "BBBBBBBBB")
    }
    
    func wait(done <-chan struct{}) bool {
    	for i := 0; i < 10; i++ {
    		runtime.GC()
    		select {
    		case <-done:
    			return true
    		default:
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 01:27:21 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/source_html.go

    }
    
    const weblistPageCSS = `<style type="text/css">
    body #content{
    font-family: sans-serif;
    }
    h1 {
      font-size: 1.5em;
    }
    .legend {
      font-size: 1.25em;
    }
    .line, .nop, .unimportant {
      color: #aaaaaa;
    }
    .inlinesrc {
      color: #000066;
    }
    .livesrc {
    cursor: pointer;
    }
    .livesrc:hover {
    background-color: #eeeeee;
    }
    .asm {
    color: #008800;
    display: none;
    }
    </style>`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SignatoriesConfigurationSpec.groovy

            signing.signatories.custom.keyId == properties.keyId
        }
    
        def "trying to read non existent file produces reasonable error message"() {
            when:
            project.ext["signing.keyId"] = "aaaaaaaa"
            project.ext["signing.secretKeyRingFile"] = "i/dont/exist"
            project.ext["signing.password"] = "anything"
    
            and:
            signing.signatory
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. src/regexp/syntax/simplify_test.go

    	{`[\s]`, `[\t\n\f\r ]`},
    	{`[\w]`, `[0-9A-Z_a-z]`},
    	{`[\D]`, `[^0-9]`},
    	{`[\S]`, `[^\t\n\f\r ]`},
    	{`[\W]`, `[^0-9A-Z_a-z]`},
    
    	// Posix repetitions
    	{`a{1}`, `a`},
    	{`a{2}`, `aa`},
    	{`a{5}`, `aaaaa`},
    	{`a{0,1}`, `a?`},
    	// The next three are illegible because Simplify inserts (?:)
    	// parens instead of () parens to avoid creating extra
    	// captured subexpressions. The comments show a version with fewer parens.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top