- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 55 for anymatch (0.05 sec)
-
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
} } private void persistResumptionData(MavenExecutionResult result, MavenSession session) { boolean hasLifecycleExecutionExceptions = result.getExceptions().stream().anyMatch(LifecycleExecutionException.class::isInstance); if (hasLifecycleExecutionExceptions) { MavenProject rootProject = session.getAllProjects().stream()
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 27.5K bytes - Viewed (1) -
android/guava/src/com/google/common/collect/Iterables.java
} /** * Returns {@code true} if any element in {@code iterable} satisfies the predicate. * * <p><b>{@code Stream} equivalent:</b> {@link Stream#anyMatch}. */ public static <T extends @Nullable Object> boolean any( Iterable<T> iterable, Predicate<? super T> predicate) { return Iterators.any(iterable.iterator(), predicate); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 24 19:38:27 UTC 2024 - 42.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/KeyMatch.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.es.config.exentity; import org.codelibs.fess.es.config.bsentity.BsKeyMatch; /** * @author FreeGen */ public class KeyMatch extends BsKeyMatch { private static final long serialVersionUID = 1L; public String getId() { return asDocMeta().id(); } public void setId(final String id) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/KeyMatchDbm.java
setupEpg(_epgMap, et -> ((KeyMatch) et).getMaxSize(), (et, vl) -> ((KeyMatch) et).setMaxSize(DfTypeUtil.toInteger(vl)), "maxSize"); setupEpg(_epgMap, et -> ((KeyMatch) et).getQuery(), (et, vl) -> ((KeyMatch) et).setQuery(DfTypeUtil.toString(vl)), "query"); setupEpg(_epgMap, et -> ((KeyMatch) et).getTerm(), (et, vl) -> ((KeyMatch) et).setTerm(DfTypeUtil.toString(vl)), "term");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsKeyMatchBhv.java
return createOptionalEntity(doSelectByPK(id, tp), id); } @Override protected Class<? extends KeyMatch> typeOfSelectedEntity() { return KeyMatch.class; } @Override protected Class<KeyMatch> typeOfHandlingEntity() { return KeyMatch.class; } @Override protected Class<KeyMatchCB> typeOfHandlingConditionBean() { return KeyMatchCB.class;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
} public OptionalEntity<KeyMatch> getKeyMatch(final String id) { return keyMatchBhv.selectByPK(id); } public void store(final KeyMatch keyMatch) { keyMatchBhv.insertOrUpdate(keyMatch, op -> { op.setRefreshPolicy(Constants.TRUE); }); } public void delete(final KeyMatch keyMatch) { keyMatchBhv.delete(keyMatch, op -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
getAvailableKeyMatchList().stream().forEach(keyMatch -> { try { final BoolQueryBuilder boolQuery = QueryBuilders.boolQuery(); if (logger.isDebugEnabled()) { logger.debug("Loading KeyMatch Query: {}, Size: {}", keyMatch.getQuery(), keyMatch.getMaxSize()); } getDocumentList(keyMatch).stream().map(doc -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
}); return asJson(new ApiUpdateResponse().id(keyMatch.getId()).created(true).status(Status.OK).result()); } // POST /api/admin/keymatch/setting @Execute public JsonResponse<ApiResult> post$setting(final EditBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.EDIT; final KeyMatch keyMatch = getKeyMatch(body).map(entity -> { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.2K bytes - Viewed (0) -
istioctl/pkg/writer/compare/testdata/configdump.json
"address_prefix": "10.111.182.109", "prefix_len": 32 } ], "on_match": { "matcher": { "matcher_tree": { "input": { "name": "port",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Mar 12 10:02:09 UTC 2024 - 52K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
// ============ public static OptionalEntity<KeyMatch> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new KeyMatch()).map(entity -> { entity.setCreatedBy(username); entity.setCreatedTime(currentTime);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 13.5K bytes - Viewed (0)