- Sort Score
- Result 10 results
- Languages All
Results 2111 - 2120 of 7,002 for recur2 (0.07 sec)
-
src/main/java/org/codelibs/fess/query/BooleanQueryCommand.java
return BooleanQuery.class.getSimpleName(); } @Override public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { if (query instanceof final BooleanQuery booleanQuery) { if (logger.isDebugEnabled()) { logger.debug("{}:{}", query, boost); } return convertBooleanQuery(context, booleanQuery, boost);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy
elements << element parent?.appendChild(element) } return element } protected Element createNode(Object name, Map attributes) { Element element = createNode(name) attributes.each {key, value -> element.setAttribute(key as String, value as String) } return element } protected Element createNode(Object name, Map attributes, Object value) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactoryRequest.java
this.session = session; return this; } public ArtifactFactoryRequestBuilder groupId(String groupId) { this.groupId = groupId; return this; } public ArtifactFactoryRequestBuilder artifactId(String artifactId) { this.artifactId = artifactId; return this; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 5.7K bytes - Viewed (0) -
cmd/metrics-v3-handler.go
} } } return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { contentType := r.Header.Get("Content-Type") if contentType == "application/json" { w.Header().Set("Content-Type", "application/json") jsonEncoder := json.NewEncoder(w) jsonEncoder.Encode(metrics) return } // If not JSON, return plain text. We format it as a markdown table for
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 15 16:28:02 UTC 2024 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionAggregation.java
public boolean hasAggregations() { return aggregationAggregationBuilderList != null && !aggregationAggregationBuilderList.isEmpty(); } public List<AbstractAggregationBuilder<?>> getAggregationBuilderList() { return aggregationAggregationBuilderList != null ? aggregationAggregationBuilderList : Collections.emptyList(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionAggregation.java
public boolean hasAggregations() { return aggregationAggregationBuilderList != null && !aggregationAggregationBuilderList.isEmpty(); } public List<AbstractAggregationBuilder<?>> getAggregationBuilderList() { return aggregationAggregationBuilderList != null ? aggregationAggregationBuilderList : Collections.emptyList(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
public JsonResponse<ApiResult> get$setting(final String id) { return asJson(new ApiResult.ApiConfigResponse() .setting(scheduledJobService.getScheduledJob(id).map(this::createEditBody).orElseGet(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); return null; })).status(ApiResult.Status.OK).result()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingSortedMap.java
public Comparator<? super K> comparator() { return delegate().comparator(); } @Override @ParametricNullness public K firstKey() { return delegate().firstKey(); } @Override public SortedMap<K, V> headMap(@ParametricNullness K toKey) { return delegate().headMap(toKey); } @Override @ParametricNullness public K lastKey() { return delegate().lastKey(); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 5.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java
if (Constants.GET_METHOD.equalsIgnoreCase(method)) { return get(); } if (Constants.HEAD_METHOD.equalsIgnoreCase(method)) { return head(); } if (Constants.POST_METHOD.equalsIgnoreCase(method)) { return post(); } return get(); } public RequestDataContext method(final Method method) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableList.java
checkPositionIndexes(fromIndex, toIndex, size()); int length = toIndex - fromIndex; if (length == size()) { return this; } else if (length == 0) { return of(); } else if (length == 1) { return of(get(fromIndex)); } else { return subListUnchecked(fromIndex, toIndex); } } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 16 19:14:45 UTC 2024 - 30.5K bytes - Viewed (0)