- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for Knight (0.05 sec)
-
FessProp.java
eger(); L1848: L1849: java.math.BigDecimal getThumbnailHtmlImageMaxAspectRatioAsDecimal(); L1850: L1851: default boolean validateThumbnailSize(final int width, final int height) { L1852: if (width <= 0 || height <= 0 || width < getThumbnailHtmlImageMinWidthAsInteger().intValue() L1853: || height < getThumbnailHtmlImageMinHeightAsInteger().intValue()) { L1854: return false; L1855: } L1856: L1857: final float ratio = getThumbnailHtmlImageMaxAspe...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 87.2K bytes -
FessXpathTransformer.java
thumbnailUrl = getThumbnailSrc(responseData.getUrl(), attributes); L905: final Integer height = getAttributeAsInteger(attributes, "height"); L906: final Integer width = getAttributeAsInteger(attributes, "width"); L907: if (!fessConfig.isThumbnailHtmlImageUrl(thumbnailUrl)) { L908: continue; L909: } L910: if (height != null && width != null) { L911: try { L912: if (fes...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 13:01:38 UTC 2024 42.9K bytes -
FessConfig.java
r(); L6456: L6457: /** L6458: * Get the value for the key 'thumbnail.html.image.min.height'. <br> L6459: * The value is, e.g. 100 <br> L6460: * @return The value of found property. (NotNull: if not found, exception but basically no way) L6461: */ L6462: String getThumbnailHtmlImageMinHeight(); L6463: L6464: /** L6465: * Get the value for the key 'thumbnail.html.image.min.height' as {@link Integer}. <br> L6466: * The value is, e.g. 100 <br> L6467: * @return The...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
FessMultipartRequestHandler.java
} catch (final FileUploadException e) { // contains fileCount exceeded L89: handleFileUploadException(e); L90: } L91: } L92: L93: protected void prepareElementsHash() { // traditional name L94: // #thinking jflute might lazy-loaded be unneeded? because created per request (2024/09/08) L95: elementsAll = new HashMap<>(); L96: elementsText = new HashMap<>(); L97: elementsFile = new HashMap<>(); L98: } L99: L100: protected List<DiskFileItem>...github.com/codelibs/fess/src/main/java/org/code...Wed Oct 23 13:27:21 UTC 2024 18.6K bytes -
FessXpathTransformerTest.java
L847: data = "<img src=\"http://example/foo.jpg\" width=\"x\" height=\"x\">"; L848: assertNull(transformer.getThumbnailUrl(responseData, getDocument(data))); L849: L850: data = "<img src=\"http://example/foo.jpg\" width=\"10\" height=\"100\">"; L851: assertNull(transformer.getThumbnailUrl(responseData, getDocument(data))); L852: L853: data = "<img src=\"http://example/foo.jpg\" width=\"100\" height=\"10\">"; L854: assertNull(transformer.getThumbnailUrl(responseData,...github.com/codelibs/fess/src/test/java/org/code...Thu Oct 24 13:01:38 UTC 2024 41.3K bytes