Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for aaaaaax (3.37 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/test/groovy/org/gradle/util/internal/DisconnectableInputStreamTest.groovy

            instr.close()
        }
    
        @Test
        void canFillAndEmptyBufferInChunks() {
            def source = stream()
            source.onRead { buffer, pos, count ->
                System.arraycopy('aaaaaa'.bytes, 0, buffer, pos, 6)
                return 6
            }
            source.onRead { buffer, pos, count ->
                syncAt(1)
                syncAt(2)
                System.arraycopy('aaaa'.bytes, 0, buffer, pos, 4)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  4. src/html/escape_test.go

    			t.Errorf("got %q want %q", got, s)
    		}
    	}
    }
    
    var (
    	benchEscapeData     = strings.Repeat("AAAAA < BBBBB > CCCCC & DDDDD ' EEEEE \" ", 100)
    	benchEscapeNone     = strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 100)
    	benchUnescapeSparse = strings.Repeat(strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 10)+"&amp;", 10)
    	benchUnescapeDense  = strings.Repeat("&amp;&lt; &amp; &lt;", 100)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 22 12:45:38 UTC 2015
    - 3.3K 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. src/strings/search_test.go

    		{"nan", "banana", 2},
    		{"pan", "anpanman", 2},
    		{"nnaaman", "anpanmanam", -1},
    		{"abcd", "abc", -1},
    		{"abcd", "bcd", -1},
    		{"bcd", "abcd", 1},
    		{"abc", "acca", -1},
    		{"aa", "aaa", 0},
    		{"baa", "aaaaa", -1},
    		{"at that", "which finally halts.  at that point", 22},
    	}
    
    	for _, tc := range testCases {
    		got := StringFind(tc.pat, tc.text)
    		want := tc.index
    		if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/base/StringsTest.java

        assertEquals("", Strings.commonPrefix("xyz", "abcde"));
        assertEquals("", Strings.commonPrefix("xyz", "abcxyz"));
        assertEquals("a", Strings.commonPrefix("abc", "aaaaa"));
        assertEquals("aa", Strings.commonPrefix("aa", "aaaaa"));
        assertEquals("abc", Strings.commonPrefix(new StringBuffer("abcdef"), "abcxyz"));
    
        // Identical valid surrogate pairs.
        assertEquals(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/image/png/testdata/pngsuite/basn2c08.sng

    bfbfbf bebebe bdbdbd bcbcbc bbbbbb bababa b9b9b9 b8b8b8 b7b7b7 b6b6b6 b5b5b5 b4b4b4 b3b3b3 b2b2b2 b1b1b1 b0b0b0 afafaf aeaeae adadad acacac ababab aaaaaa a9a9a9 a8a8a8 a7a7a7 a6a6a6 a5a5a5 a4a4a4 a3a3a3 a2a2a2 a1a1a1 a0a0a0 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.2K bytes
    - Viewed (0)
  10. src/image/png/testdata/pngsuite/ftp0n2c08.sng

    7f7f7f 7f7f7f 7f7f7f 7f7f7f 7f7f7f 7f7f7f 7f7f7f 7f7f7f fcfcfc aaaaaa 219821 00b000 008600 578757 8b8b8b 8d8d8d 747474 535353 3d3d3d 1a1a23 0d0d43 474772 ededef 7f7f7f 7f7f7f 7f7f7f 7f7f7f 7f7f7f 7f7f7f 7f7f7f 7f7f7f 7f7f7f 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 7.2K bytes
    - Viewed (0)
Back to top