Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for aaaaaab (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. android/guava/src/com/google/common/collect/CompactHashSet.java

       * are the "next" pointer (pointing to the next entry in the bucket chain), which will always be
       * less than or equal to the hashtable mask.
       *
       * <pre>
       * hash  = aaaaaaaa
       * mask  = 00000fff
       * next  = 00000bbb
       * entry = aaaaabbb
       * </pre>
       *
       * <p>The pointers in [size(), entries.length) are all "null" (UNSET).
       */
      @CheckForNull private transient int[] entries;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CompactHashSet.java

       * are the "next" pointer (pointing to the next entry in the bucket chain), which will always be
       * less than or equal to the hashtable mask.
       *
       * <pre>
       * hash  = aaaaaaaa
       * mask  = 00000fff
       * next  = 00000bbb
       * entry = aaaaabbb
       * </pre>
       *
       * <p>The pointers in [size(), entries.length) are all "null" (UNSET).
       */
      @CheckForNull private transient int[] entries;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactHashMap.java

       * the "next" pointer (pointing to the next entry in the bucket chain), which will always be less
       * than or equal to the hashtable mask.
       *
       * <pre>
       * hash  = aaaaaaaa
       * mask  = 00000fff
       * next  = 00000bbb
       * entry = aaaaabbb
       * </pre>
       *
       * <p>The pointers in [size(), entries.length) are all "null" (UNSET).
       */
      @VisibleForTesting @CheckForNull transient int[] entries;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactHashMap.java

       * the "next" pointer (pointing to the next entry in the bucket chain), which will always be less
       * than or equal to the hashtable mask.
       *
       * <pre>
       * hash  = aaaaaaaa
       * mask  = 00000fff
       * next  = 00000bbb
       * entry = aaaaabbb
       * </pre>
       *
       * <p>The pointers in [size(), entries.length) are all "null" (UNSET).
       */
      @VisibleForTesting @CheckForNull transient int[] entries;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  8. test/codegen/comparisons.go

    func equalVarString4(a string) bool {
    	b := string("ZZZZ")
    	// amd64:-".*memequal"
    	// arm64:-".*memequal"
    	// ppc64x:-".*memequal"
    	return a[:4] == b
    }
    
    func equalConstString8() bool {
    	a := string("AAAAAAAA")
    	b := string("ZZZZZZZZ")
    	// amd64:-".*memequal"
    	// arm64:-".*memequal"
    	// ppc64x:-".*memequal"
    	return a == b
    }
    
    func equalVarString8(a string) bool {
    	b := string("ZZZZZZZZ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

      fun cacheSingleEntryOfSizeGreaterThanMaxSize(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        cache.close()
        createNewCacheWithSize(10)
        set("a", "aaaaa", "aaaaaa") // size=11
        cache.flush()
        assertAbsent("a")
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. operator/cmd/mesh/manifest-generate_test.go

    		g.Expect(d).Should(HavePathValueContain(PathValue{"spec.template.metadata.labels", toMap("service.istio.io/canonical-revision:21")}))
    		g.Expect(d).Should(HavePathValueContain(PathValue{"metadata.labels", toMap("aaa:aaa-val,bbb:bbb-val")}))
    		g.Expect(c).Should(HavePathValueEqual(PathValue{"resources.requests.cpu", "111m"}))
    		g.Expect(c).Should(HavePathValueEqual(PathValue{"resources.requests.memory", "999Mi"}))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top