Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for abbbbc (0.13 sec)

  1. 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)
  2. 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)
  3. src/strings/replace_test.go

    		testCase{htmlEscaper, "&&&", "&&&"},
    		testCase{htmlEscaper, "", ""},
    
    		testCase{repeat, "brad", "bbrrrrrrrrrrrrrrrrrradddd"},
    		testCase{repeat, "abba", "abbbba"},
    		testCase{repeat, "", ""},
    
    		testCase{NewReplacer("a", "11", "a", "22"), "brad", "br11d"},
    	)
    
    	// The remaining test cases have variable length old strings.
    
    	testCases = append(testCases,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        createNewCacheWithSize(10)
        set("a", "a", "aaa") // size 4
        set("b", "bb", "bbbb") // size 6
        assertThat(cache.size()).isEqualTo(10)
    
        // Cause the size to grow to 12 should evict 'A'.
        set("c", "c", "c")
        cache.flush()
        assertThat(cache.size()).isEqualTo(8)
        assertAbsent("a")
        assertValue("b", "bb", "bbbb")
        assertValue("c", "c", "c")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/aenum.go

    	AROUNDPD
    	AROUNDPS
    	AROUNDSD
    	AROUNDSS
    	ARSM
    	ARSQRTPS
    	ARSQRTSS
    	ASAHF
    	ASALB
    	ASALL
    	ASALQ
    	ASALW
    	ASARB
    	ASARL
    	ASARQ
    	ASARW
    	ASARXL
    	ASARXQ
    	ASBBB
    	ASBBL
    	ASBBQ
    	ASBBW
    	ASCASB
    	ASCASL
    	ASCASQ
    	ASCASW
    	ASETCC
    	ASETCS
    	ASETEQ
    	ASETGE
    	ASETGT
    	ASETHI
    	ASETLE
    	ASETLS
    	ASETLT
    	ASETMI
    	ASETNE
    	ASETOC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    		{"empty", []string{}, "foo", []string{}, false},
    		{"foo", []string{"foo"}, "foo", nil, true},
    		{"aaa", []string{"a", "a", "a"}, "a", nil, true},
    		{"abc", []string{"a", "b", "c"}, "c", []string{"a", "b"}, true},
    		{"abbbcc", []string{"a", "b", "b", "b", "c", "c"}, "b", []string{"a", "c", "c"}, true},
    	} {
    		t.Run(tt.name, func(t *testing.T) {
    			got, gotChanged := filterOut(tt.input, tt.x)
    			if !reflect.DeepEqual(tt.expected, got) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  7. cmd/utils.go

    	}
    
    	return logger.SetReqInfo(r.Context(), reqInfo)
    }
    
    // Used for registering with rest handlers (have a look at registerStorageRESTHandlers for usage example)
    // If it is passed ["aaaa", "bbbb"], it returns ["aaaa", "{aaaa:.*}", "bbbb", "{bbbb:.*}"]
    func restQueries(keys ...string) []string {
    	var accumulator []string
    	for _, key := range keys {
    		accumulator = append(accumulator, key, "{"+key+":.*}")
    	}
    	return accumulator
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/MapsCollectionTest.java

                        return new SampleElements<>(
                            mapEntry("a", 1),
                            mapEntry("aa", 2),
                            mapEntry("aba", 3),
                            mapEntry("bbbb", 4),
                            mapEntry("ccccc", 5));
                      }
    
                      @Override
                      public SortedMap<String, Integer> create(Object... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  9. src/testing/testing.go

    		// AAABBB or BBBAAA on the pipe, not something like AABBBA.
    		// However, the exception to this is when the pipe fills: in that
    		// case, Go's use of non-blocking I/O means that writing AAA
    		// or BBB might be split across multiple system calls, making it
    		// entirely possible to get output like AABBBA. The same problem
    		// happens inside the operating system kernel if we switch to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/regexp/all_test.go

    		}
    	}
    }
    
    func BenchmarkMatchClass_InRange(b *testing.B) {
    	b.StopTimer()
    	// 'b' is between 'a' and 'c', so the charclass
    	// range checking is no help here.
    	x := strings.Repeat("bbbb", 20) + "c"
    	re := MustCompile("[ac]")
    	b.StartTimer()
    	for i := 0; i < b.N; i++ {
    		if !re.MatchString(x) {
    			b.Fatalf("no match!")
    		}
    	}
    }
    
    func BenchmarkReplaceAll(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top