- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 989 for BUILDER (0.09 sec)
-
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsKeyMatchCQ.java
MatchPhrasePrefixQueryBuilder builder = regMatchPhrasePrefixQ("boost", boost); if (opLambda != null) { opLambda.callback(builder); } } public void setBoost_Fuzzy(Float boost) { setBoost_Fuzzy(boost, null); } public void setBoost_Fuzzy(Float boost, ConditionOptionCall<MatchQueryBuilder> opLambda) { MatchQueryBuilder builder = regFuzzyQ("boost", boost);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 68.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsDuplicateHostCQ.java
if (opLambda != null) { opLambda.callback(builder); } } public void setCreatedBy_Wildcard(String createdBy) { setCreatedBy_Wildcard(createdBy, null); } public void setCreatedBy_Wildcard(String createdBy, ConditionOptionCall<WildcardQueryBuilder> opLambda) { WildcardQueryBuilder builder = regWildcardQ("createdBy", createdBy);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 58.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsFavoriteLogCQ.java
MatchPhrasePrefixQueryBuilder builder = regMatchPhrasePrefixQ("docId", docId); if (opLambda != null) { opLambda.callback(builder); } } public void setDocId_Fuzzy(String docId) { setDocId_Fuzzy(docId, null); } public void setDocId_Fuzzy(String docId, ConditionOptionCall<MatchQueryBuilder> opLambda) { MatchQueryBuilder builder = regFuzzyQ("docId", docId);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 42.7K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/ImmutableListCreationBenchmark.java
ImmutableList.Builder<Object> builder = new ImmutableList.Builder<>(size); for (int i = 0; i < size; i++) { builder.add(OBJECT); } dummy += builder.build().size(); } return dummy; } @Benchmark int copyArrayList(int reps) { int size = this.size; int dummy = 0; for (int rep = 0; rep < reps; rep++) { List<Object> builder = Lists.newArrayList();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.3K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/ImmutableListCreationBenchmark.java
ImmutableList.Builder<Object> builder = new ImmutableList.Builder<>(size); for (int i = 0; i < size; i++) { builder.add(OBJECT); } dummy += builder.build().size(); } return dummy; } @Benchmark int copyArrayList(int reps) { int size = this.size; int dummy = 0; for (int rep = 0; rep < reps; rep++) { List<Object> builder = Lists.newArrayList();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFailureUrlCA.java
ScriptedMetricAggregationBuilder builder = regScriptedMetricA(name); if (opLambda != null) { opLambda.callback(builder); } } public void topHits(String name, ConditionOptionCall<TopHitsAggregationBuilder> opLambda) { TopHitsAggregationBuilder builder = regTopHitsA(name); if (opLambda != null) { opLambda.callback(builder); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 46.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsThumbnailQueueCQ.java
if (opLambda != null) { opLambda.callback(builder); } } public void setCreatedBy_Wildcard(String createdBy) { setCreatedBy_Wildcard(createdBy, null); } public void setCreatedBy_Wildcard(String createdBy, ConditionOptionCall<WildcardQueryBuilder> opLambda) { WildcardQueryBuilder builder = regWildcardQ("createdBy", createdBy);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 51.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFailureUrlCQ.java
MatchQueryBuilder builder = regFuzzyQ("configId", configId); if (opLambda != null) { opLambda.callback(builder); } } public void setConfigId_Prefix(String configId) { setConfigId_Prefix(configId, null); } public void setConfigId_Prefix(String configId, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 57.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsKeyMatchCA.java
ScriptedMetricAggregationBuilder builder = regScriptedMetricA(name); if (opLambda != null) { opLambda.callback(builder); } } public void topHits(String name, ConditionOptionCall<TopHitsAggregationBuilder> opLambda) { TopHitsAggregationBuilder builder = regTopHitsA(name); if (opLambda != null) { opLambda.callback(builder); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 61.4K bytes - Viewed (0) -
mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt
) for (i in 0..599) { val builder = MockResponse.Builder().code(i) val expectedReason = reasons[i / 100] assertThat(builder.status).isEqualTo("HTTP/1.1 $i $expectedReason") assertThat(headersToList(builder)).containsExactly("Content-Length: 0") } } @Test fun setStatusControlsWholeStatusLine() { val builder = MockResponse.Builder().status("HTTP/1.1 202 That'll do pig")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 23.5K bytes - Viewed (0)