- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for getPtype (2.52 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImpl.java
final MediaType mediaTypeFromFilename = mimeTypes.detect(null, metadata); return mediaTypeFromFilename.getType() + "/" + mediaTypeFromFilename.getSubtype(); } return mediaType.getType() + "/" + mediaType.getSubtype(); } catch (final IOException e) { throw new MimeTypeException("Could not detect a content type.", e); } }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
} /** * Gets the account ID from a SID. * @param sid The SID. * @return The account ID. */ public String getAccountId(final SID sid) { final int type = sid.getType(); if (logger.isDebugEnabled()) { try { logger.debug("Processing SID: {} {} {}", type, sid, sid.toDisplayString()); } catch (final Exception e) { // ignoreRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
} /** * Gets the type of the artifact based on its name. * * @return the artifact type */ public ArtifactType getType() { return ArtifactType.getType(name); } /** * Returns a string representation of the artifact. * * @return a string in the format "name:version" */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} @Override public Locale getLocale() { return Locale.ROOT; } @Override public SearchRequestType getType() { return SearchRequestType.JSON; } @Override public String getSimilarDocHash() { return request.getParameter("sdh"); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 55.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
.similarDocHash(params.getSimilarDocHash()) .responseFields(params.getResponseFields()) .searchRequestType(params.getType()) .trackTotalHits(params.getTrackTotalHits()) .minScore(params.getMinScore()) .build(); }; } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 09:24:04 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
final ResourceBundle resources = ResourceBundle.getBundle("fess_label", Locale.ENGLISH); final String[] fileTypes = ComponentUtil.getFileTypeHelper().getTypes(); for (final String fileType : fileTypes) { final String value = filetypeField + ":" + fileType; if (!values.contains(value)) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
} /** * Returns the type identifier for this dictionary file. * * @return the string "mapping" identifying this as a character mapping file */ @Override public String getType() { return MAPPING; } /** * Returns the file path of this character mapping dictionary. * * @return the file path as a string */ @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
* fessConfig.getThumbnailHtmlImageThumbnailWidthAsInteger().floatValue() / width); final BufferedImage thumbnail = new BufferedImage(thumbnailWidth, thumbnailHeight, image.getType()); thumbnail.getGraphics() .drawImage(image.getScaledInstance(thumbnailWidth, thumbnailHeight, Image.SCALE_AREA_AVERAGING), 0, 0,
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
* @param timestamp the file timestamp */ public ProtwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return PROTWORDS; } @Override public String getPath() { return path; } @Override public synchronized OptionalEntity<ProtwordsItem> get(final long id) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
} @Override public Locale getLocale() { return parent.getLocale(); } @Override public SearchRequestType getType() { return parent.getType(); } @Override public String getSimilarDocHash() { return parent.getSimilarDocHash(); } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0)