- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for generuje (0.07 sec)
-
generate-thumbnail
Shinsuke Sugaya <shinsuke@apache.org> 1686575608 +0900github.com/codelibs/fess/src/main/assemblies/fi...Mon Jun 12 13:13:28 UTC 2023 2.5K bytes -
HtmlTagBasedGenerator.java
(logger.isDebugEnabled()) { L54: logger.debug("Create thumbnail task: {}", task); L55: } L56: return task; L57: } L58: L59: @Override L60: public boolean generate(final String thumbnailId, final File outputFile) { L61: if (logger.isDebugEnabled()) { L62: logger.debug("Generate Thumbnail: {}", thumbnailId); L63: } L64: L65: if (outputFile.exists()) { L66: if (logger.isDebugEnabled()) { L67: logger.debug("The thumbnail...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.5K bytes -
CommandGenerator.java
L75: L76: @Override L77: public void destroy() { L78: destoryTimer.cancel(); L79: destoryTimer = null; L80: } L81: L82: @Override L83: public boolean generate(final String thumbnailId, final File outputFile) { L84: if (logger.isDebugEnabled()) { L85: logger.debug("Generate Thumbnail: {}", thumbnailId); L86: } L87: L88: if (outputFile.exists()) { L89: if (logger.isDebugEnabled()) { L90: logger.debug("The thumbnail...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 9.6K bytes -
ThumbnailGenerator.java
*/ L16:package org.codelibs.fess.thumbnail; L17: L18:import java.io.File; L19:import java.util.Map; L20: L21:import org.codelibs.core.misc.Tuple3; L22: L23:public interface ThumbnailGenerator { L24: L25: String getName(); L26: L27: boolean generate(String thumbnailId, File outputFile); L28: L29: boolean isTarget(Map<String, Object> docMap); L30: L31: boolean isAvailable(); L32: L33: void destroy(); L34: L35: Tuple3<String, String, String> createTask(String path, Map<String, Object>...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1K bytes -
EmptyGenerator.java
permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.thumbnail.impl; L17: L18:import java.io.File; L19: L20:public class EmptyGenerator extends BaseThumbnailGenerator { L21: L22: @Override L23: public boolean generate(final String thumbnailId, final File outputFile) { L24: return false; L25: } L26: L27: @Override L28: public void destroy() { L29: // nothing L30: } L31:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 939 bytes -
PopularWordHelper.java
L82: popularWordsRequestBuilder.execute().getResponse().getItems().stream().forEach(item -> wordList.add(item.getText())); L83: } catch (final SuggesterException e) { L84: logger.warn("Failed to generate popular words.", e); L85: } L86: L87: return wordList; L88: }); L89: } catch (final ExecutionException e) { L90: logger.warn("Failed to load popular words.", e); L91: } L92: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.6K bytes -
README.md
L115: L116:### Build Package L117: L118:Run the `package` goal and then the release file will be created in target/releases. L119: L120: $ mvn package L121: $ mvn rpm:rpm # .rpm package L122: $ mvn jdeb:jdeb # .deb package L123: L124:### Generate Source Code L125: L126: $ mvn dbflute:download # (one time command) L127: $ mvn dbflute:freegen L128: $ mvn license:format L129: L130:### Integration Tests L131: L132:Launch Fess Server and run the following command: L133: L134: $ mvn...github.com/codelibs/fess/README.mdSat Oct 12 07:19:47 UTC 2024 7.3K bytes -
ThumbnailManager.java
d()) { L138: logger.debug("Interupted task.", e); L139: } L140: } catch (final Exception e) { L141: if (generating) { L142: logger.warn("Failed to generate thumbnail.", e); L143: } L144: } L145: } L146: if (!taskList.isEmpty()) { L147: storeQueue(taskList); L148: } L149: }, "ThumbnailGenerator"); L150: t...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 21.5K bytes -
openapi-user.yaml
explode: true L506: schema: L507: type: array L508: items: L509: type: string L510: example: [label] L511: - name: field L512: in: query L513: description: Field name to generate suggest words L514: required: false L515: style: form L516: explode: true L517: schema: L518: type: array L519: items: L520: type: string L521: example: [python] L522:...github.com/codelibs/fess/src/main/config/openap...Thu May 09 06:31:27 UTC 2024 21.6K bytes -
GenerateThumbnailJob.java
cess(sessionId)); L70: } L71: L72: final TimeoutTask timeoutTask = createTimeoutTask(); L73: try { L74: executeThumbnailGenerator(); L75: } catch (final Exception e) { L76: logger.warn("Failed to generate thumbnails.", e); L77: resultBuf.append(e.getMessage()).append("\n"); L78: } finally { L79: if (timeoutTask != null && !timeoutTask.isCanceled()) { L80: timeoutTask.cancel(); L81: } L82: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 10.6K bytes