Home | History | Annotate | Download | only in runtime

Lines Matching refs:Repeat

129 		m[strings.Repeat("X", 1<<20-1)+fmt.Sprint(suffix)] = true
131 key := strings.Repeat("X", 1<<20-1) + "k"
140 m[strings.Repeat("X", 1<<20)] = true
141 key := strings.Repeat("Y", 1<<20)
150 key1 := strings.Repeat("X", 1<<20)
151 key2 := strings.Repeat("X", 1<<20) // equal but different instance
161 key := strings.Repeat("X", 1<<20)
188 m[strings.Repeat("K", i+1)] = true
190 key := strings.Repeat("K", keySize)
215 base := strings.Repeat("x", lookupKeySize-1)
271 s1 := "foo" + strings.Repeat("-", 100) + "bar"
272 s2 := "goo" + strings.Repeat("-", 100) + "ber"