- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 738 for failed (0.04 sec)
-
FavoriteLog.java
void addFieldToSource(final Map<String, Object> sourceMap, final String field, final Object value) { L77: if (value instanceof final LocalDateTime ldt) { L78: final ZonedDateTime zdt = ZonedDateTime.of(ldt, ZoneId.systemDefault()); L79: super.addFieldToSource(sourceMap, field, DateTimeFormatter.ISO_INSTANT.format(zdt)); L80: } else { L81: super.addFieldToSource(sourceMap, field, value); L82: } L83: } L84: L85: @Override L86: public String...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.7K bytes -
IOIntegrationTest.java
CurlRequest req = new MockCurlRequest(Curl.Method.POST, "http://dummy"); L94: req.threshold(0); // always create tmp file L95: L96: // ## Act ## L97: long before = countTmpFiles(); L98: logger.info("Before request. Number of temp files: " + before); L99: req.execute(res -> { L100: logger.info("Processing request. Number of temp files: " + countTmpFiles()); L101: }, e -> {}); L102: long after = countTmpFiles(); L103: logger.info("After...github.com/codelibs/curl4j/src/test/java/org/co...Mon Nov 14 21:05:19 UTC 2022 3.4K bytes -
fess_log.ndjson
\"y\":[{\"accessor\":1,\"format\":{\"id\":\"number\"},\"params\":{},\"aggType\":\"avg\"}]}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"avg\",\"schema\":\"metric\",\"params\":{\"field\":\"responseTime\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"requestedAt\",\"timeRange\":{\"from\":\"now-2d\",\"to\":\"now\"},\"useNormalizedEsInterval\":true,\"interval\":\"auto\",\"drop_partials\":false,\"min_doc_count\":1,\"extended_bounds...github.com/codelibs/fess/src/main/assemblies/ex...Mon Aug 12 01:26:21 UTC 2019 18.2K bytes -
UriType.java
License. L15: */ L16:package org.codelibs.fess.validation; L17: L18:import static java.lang.annotation.ElementType.ANNOTATION_TYPE; L19:import static java.lang.annotation.ElementType.CONSTRUCTOR; L20:import static java.lang.annotation.ElementType.FIELD; L21:import static java.lang.annotation.ElementType.METHOD; L22:import static java.lang.annotation.ElementType.PARAMETER; L23:import static java.lang.annotation.RetentionPolicy.RUNTIME; L24: L25:import java.lang.annotation.Documented; L26:import j...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.6K bytes -
EsAbstractConditionBean.java
return new ConditionBeanExceptionThrower(); L94: } L95: L96: @Override L97: public void xsetPaging(boolean paging) { L98: // Do nothing because this is unsupported on ConditionBean. L99: // And it is possible that this method is called by PagingInvoker. L100: } L101: L102: @Override L103: public void enablePagingCountLater() { L104: // nothing L105: } L106: L107: @Override L108: public void disablePagingCountLater() { L109: // nothing L110: } L111:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 17.8K bytes -
ContentCache.java
private final byte[] data; L32: L33: private final File file; L34: L35: public ContentCache(final byte[] data) { L36: this.data = data; L37: this.file = null; L38: } L39: L40: public ContentCache(final File file) { L41: this.data = null; L42: this.file = file; L43: } L44: L45: @Override L46: public void close() throws IOException { L47: if (file != null) { L48: Files.delete(file.toPath()); L49: } L50: } L51: L52: public...github.com/codelibs/curl4j/src/main/java/org/co...Mon Nov 14 21:05:19 UTC 2022 1.6K bytes -
ContentOutputStream.java
super.close(); L49: } finally { L50: if (!isInMemory() && !done) { L51: final File file = super.getFile(); L52: if (file != null) { L53: try { L54: Files.deleteIfExists(file.toPath()); L55: } catch (final IOException e) { L56: logger.warning(e.getLocalizedMessage()); L57: } L58: } L59: } L60: } L61: } L62:}...github.com/codelibs/curl4j/src/main/java/org/co...Mon Nov 14 21:05:19 UTC 2022 1.9K bytes -
QueryContext.java
getQueryBuilder() { L127: return queryBuilder; L128: } L129: L130: public void addFieldLog(final String field, final String text) { L131: if (fieldLogMap == null) { L132: return; L133: } L134: L135: List<String> list = fieldLogMap.get(field); L136: if (list == null) { L137: list = new ArrayList<>(); L138: fieldLogMap.put(field, list); L139: } L140: list.add(text); L141: } L142: L143: public List<String> getDefaultKeyword()...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 5.8K bytes -
littleAdjustmentMap.dfprop
extendedDBFluteInitializerClass: (NotRequired - Default null) L108: # If you want to extend the embedded DBFlute initializer, L109: # specify the class name of your original initializer L110: # that extends the embedded one. L111: # *Basically for fixed DBFluteConfig settings L112: # L113: #; extendedDBFluteInitializerClass = com.example.ExtendedDBFluteInitializer L114: # - - - - - - - - - -/ L115: L116: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L117: # o shortCharHandlingMode:...github.com/codelibs/fess/dbflute_fess/dfprop/li...Sat Jul 25 06:04:16 UTC 2015 8.8K bytes -
SearchLog.java
void addFieldToSource(final Map<String, Object> sourceMap, final String field, final Object value) { L144: if (value instanceof final LocalDateTime ldt) { L145: final ZonedDateTime zdt = ZonedDateTime.of(ldt, ZoneId.systemDefault()); L146: super.addFieldToSource(sourceMap, field, DateTimeFormatter.ISO_INSTANT.format(zdt)); L147: } else { L148: super.addFieldToSource(sourceMap, field, value); L149: } L150: } L151: L152: @Override L153: public...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 6K bytes