- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 33 for Writer (0.08 sec)
-
fess
L1:#!/bin/sh L2: L3:# OPTIONS: L4:# -d daemonize (run in background) L5:# -p pidfile write PID to <pidfile> L6:# -h L7:# --help print command line options L8:# -v print fess version, then exit L9:# -D prop set JAVA system property L10:# -X prop set non-standard JAVA system property L11:# --prop=val L12:# --prop val set fess property (i.e. -Des.<prop>=<val>) L13: L14:CDPATH="" L15:SCRIPT="$0" L16: L17:# SCRIPT may be an arbitrarily...github.com/codelibs/fess/src/main/assemblies/fi...Sun Jan 15 06:32:15 UTC 2023 5.4K bytes -
outsideSqlMap.dfprop
Default true) L97: # [true] L98: # You should always write the title of outsideSql. L99: # If it doesn't exist, the OutsideSqlTest task fails. L100: # L101: #; isRequiredSqlTitle = true L102: # - - - - - - - - - -/ L103: L104: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L105: # o isRequiredSqlDescription: (NotRequired - Default true) L106: # [true] L107: # You should always write the description of outsideSql. L108: # If it doesn't...github.com/codelibs/fess/dbflute_fess/dfprop/ou...Sat Jul 25 06:04:16 UTC 2015 8K bytes -
ApiAdminLogAction.java
L59: final Path path = Paths.get(logFilePath, filename); L60: return asStream(filename).contentTypeOctetStream().stream(out -> { L61: try (InputStream in = Files.newInputStream(path)) { L62: out.write(in); L63: } L64: }); L65: } L66: return StreamResponse.asEmptyBody(); L67: } L68:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.7K bytes -
KuromojiFileTest.java
private KuromojiFile kuromojiFile; L27: L28: /* L29: // TODO L30: private File file1; L31: L32: @Override L33: protected void setUp() throws Exception { L34: file1 = File.createTempFile("kuromoji_", ".txt"); L35: FileUtil.write( L36: file1.getAbsolutePath(), L37: "token1,seg1,reading1,pos1\ntoken2,seg2,reading2,pos2\ntoken3,seg3,reading3,pos3" L38: .getBytes(Constants.UTF_8)); L39: } L40: L41: @Override L42: protected...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.3K bytes -
EsStatusPostcard.java
=========== L36: public static EsStatusPostcard droppedInto(Postbox postbox, MPCall<EsStatusPostcard> postcardLambda) { L37: EsStatusPostcard postcard = new EsStatusPostcard(); L38: postcardLambda.write(postcard); L39: postbox.post(postcard); L40: return postcard; L41: } L42: L43: // =================================================================================== L44: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.7K bytes -
TestmailPostcard.java
=========== L36: public static TestmailPostcard droppedInto(Postbox postbox, MPCall<TestmailPostcard> postcardLambda) { L37: TestmailPostcard postcard = new TestmailPostcard(); L38: postcardLambda.write(postcard); L39: postbox.post(postcard); L40: return postcard; L41: } L42: L43: // =================================================================================== L44: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.9K bytes -
CurlResponse.java
tAsStream()); L57: ByteArrayOutputStream baos = new ByteArrayOutputStream()) { L58: int length = bis.read(bytes); L59: while (length != -1) { L60: if (length != 0) { L61: baos.write(bytes, 0, length); L62: } L63: length = bis.read(bytes); L64: } L65: return baos.toString(encoding); L66: } catch (final Exception e) { L67: throw new CurlException("Failed to access...github.com/codelibs/curl4j/src/main/java/org/co...Mon Nov 14 21:05:19 UTC 2022 4K bytes -
AdminEsreqAction.java
lper().getCurrentTimeAsLong() + ".json").contentTypeOctetStream() L108: .stream(out -> { L109: try (final InputStream in = new FileInputStream(tempFile)) { L110: out.write(in); L111: } finally { L112: if (tempFile.exists() && !tempFile.delete()) { L113: logger.warn("Failed to delete {}", tempFile.getAbsolutePath()); L114: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 6.2K bytes -
codeql.yml
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} L31: timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} L32: permissions: L33: # required for all workflows L34: security-events: write L35: L36: # required to fetch internal or private CodeQL packs L37: packages: read L38: L39: # only required for workflows in private repositories L40: actions: read L41: contents: read L42: L43: strategy: L44: fail-fast:...github.com/codelibs/fess/.github/workflows/code...Wed Aug 14 23:51:19 UTC 2024 4.4K bytes -
HtmlTagBasedGenerator.java
image.getType()); L166: thumbnail.getGraphics().drawImage(image.getScaledInstance(thumbnailWidth, thumbnailHeight, Image.SCALE_AREA_AVERAGING), 0, L167: 0, thumbnailWidth, thumbnailHeight, null); L168: ImageIO.write(thumbnail, fessConfig.getThumbnailHtmlImageFormat(), outputFile); L169: image.flush(); L170: return Result.OK; L171: } finally { L172: reader.dispose(); L173: } L174: } L175:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.5K bytes