- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 68 for fwrite (0.08 sec)
-
AdminMaintenanceAction.java
final String data = "{\"index\":{\"_index\":\"" + index + "\",\"_id\":\"" + StringEscapeUtils.escapeJson(hit.getId()) L228: + "\"}}\n" + hit.getSourceAsString() + "\n"; L229: try { L230: zos.write(data.getBytes(Constants.CHARSET_UTF_8)); L231: } catch (final IOException e) { L232: logger.warn("Failed to access /{}/{}.", index, hit.getId(), e); L233: } L234: return true; L235: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 14K bytes -
daterangepicker.css
rotate(135deg); L145:} L146: L147:.daterangepicker .calendar-table th, .daterangepicker .calendar-table td { L148: white-space: nowrap; L149: text-align: center; L150: vertical-align: middle; L151: min-width: 32px; L152: width: 32px; L153: height: 24px; L154: line-height: 24px; L155: font-size: 12px; L156: border-radius: 4px; L157: border: 1px solid transparent; L158: white-space: nowrap; L159: cursor: pointer; L160:} L161: L162:.daterangepicker .calendar-table { L163: border: 1px solid...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 7.5K bytes -
DocumentHelper.java
(hash != null && !hash.startsWith(SIMILAR_DOC_HASH_PREFIX)) { L242: try (ByteArrayOutputStream baos = new ByteArrayOutputStream()) { L243: try (GZIPOutputStream gos = new GZIPOutputStream(baos)) { L244: gos.write(hash.getBytes(Constants.UTF_8)); L245: } L246: return SIMILAR_DOC_HASH_PREFIX + Base64.getUrlEncoder().withoutPadding().encodeToString(baos.toByteArray()); L247: } catch (final IOException e) { L248: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 12K bytes -
ProcessHelper.java
== null) { L156: throw new JobNotFoundException("Job for " + sessionId + " is not found."); L157: } L158: try { L159: final OutputStream out = jobProcess.getProcess().getOutputStream(); L160: IOUtils.write(command + "\n", out, Constants.CHARSET_UTF_8); L161: out.flush(); L162: } catch (final IOException e) { L163: throw new JobProcessingException(e); L164: } L165: } L166:}...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 6.4K bytes -
SearchApiManager.java
buf.append('{'); L1194: if (StringUtil.isNotBlank(body)) { L1195: buf.append(body); L1196: } L1197: buf.append('}'); L1198: if (isJsonp) { L1199: buf.append(')'); L1200: } L1201: write(buf.toString(), mimeType, Constants.UTF_8); L1202: } L1203: L1204: protected String escapeCallbackName(final String callbackName) { L1205: return "/**/" + callbackName.replaceAll("[^0-9a-zA-Z_\\$\\.]", StringUtil.EMPTY); L1206: } L1207:...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 50.3K bytes -
README.md
Probleme/Fragen L20: L21:[discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/) L22: L23:## Erste Schritte L24: L25:Es gibt zwei Möglichkeiten, Fess auszuprobieren. Die erste besteht darin, es selbst herunterzuladen und zu installieren. Die zweite besteht darin, [Docker](https://www.docker.com/products/docker-engine) zu verwenden. L26: L27:### Herunterladen und Installieren/Ausführen L28: L29:Fess 14.17 ist jetzt verfügbar und kann auf der [Release-Seite](https://github.com/codelibs/fess/releases...github.com/codelibs/fess/docs/de/README.mdSat Oct 12 07:19:47 UTC 2024 7.6K bytes -
AdminStorageAction.java
ComponentUtil.getFessConfig(); L239: final GetObjectArgs args = GetObjectArgs.builder().bucket(fessConfig.getStorageBucket()).object(objectName).build(); L240: try (InputStream in = createClient(fessConfig).getObject(args)) { L241: out.write(in); L242: } catch (final Exception e) { L243: throw new StorageException("Failed to download " + objectName, e); L244: } L245: } L246: L247: public static void deleteObject(final String objectName) { L248: try...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 19.9K bytes -
SearchLogHelper.java
{ L447: final Map<String, Object> source = toSource(event); L448: searchLogLogger.info(objectMapper.writeValueAsString(source)); L449: } catch (final JsonProcessingException e) { L450: logger.warn("Failed to write {}", event, e); L451: } L452: } L453: L454: protected Map<String, Object> toSource(final SearchLogEvent searchLogEvent) { L455: final Map<String, Object> source = toLowerHyphen(searchLogEvent.toSource()); L456: source.put("_id",...github.com/codelibs/fess/src/main/java/org/code...Mon Jul 22 02:07:37 UTC 2024 21.7K bytes -
bootstrap.min.css
to!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left...github.com/codelibs/fess/src/main/webapp/css/bo...Wed Dec 25 08:05:52 UTC 2019 155.8K bytes -
bootstrap.min.css.map
}\n.font-italic { font-style: italic !important; }\n\n// Contextual colors\n\n.text-white { color: $white !important; }\n\n@each $color, $value in $theme-colors {\n @include text-emphasis-variant(\".text-#{$color}\", $value, true);\n}\n\n.text-body { color: $body-color !important; }\n.text-muted { color: $text-muted !important; }\n\n.text-black-50 { color: rgba($black, .5) !important; }\n.text-white-50 { color: rgba($white, .5) !important; }\n\n// Misc\n\n.text-hide {\n @include text-hide($ignore-warning:...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 639.3K bytes