Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for aaaaaax (0.08 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/bitrot_test.go

    	}
    	_, err = writer.Write([]byte("aaaaaaaaaa"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = writer.Write([]byte("aaaaaaaaaa"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = writer.Write([]byte("aaaaa"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	if bw, ok := writer.(io.Closer); ok {
    		bw.Close()
    	}
    
    	reader := newBitrotReader(disk, nil, volume, filePath, 35, bitrotAlgo, bitrotWriterSum(writer), 10)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/net/http/internal/chunked_test.go

    		}
    	}
    }
    
    func TestChunkReaderAllocs(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	var buf bytes.Buffer
    	w := NewChunkedWriter(&buf)
    	a, b, c := []byte("aaaaaa"), []byte("bbbbbbbbbbbb"), []byte("cccccccccccccccccccccccc")
    	w.Write(a)
    	w.Write(b)
    	w.Write(c)
    	w.Close()
    
    	readBuf := make([]byte, len(a)+len(b)+len(c)+1)
    	byter := bytes.NewReader(buf.Bytes())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:45:19 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top