- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for setWeight (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java
} /** * Gets the weight/priority of this request. * @return the weight */ public float getWeight() { return weight; } /** * Sets the weight/priority of this request. * @param weight the weight */ public void setWeight(float weight) { this.weight = weight; } /** * Returns the hash code for this RequestData.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueue.java
/** * Retrieves the weight of the URL queue. * * @return the weight as a float value. */ float getWeight(); /** * Sets the weight of the URL queue. * * @param weight the weight to set */ void setWeight(float weight);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java
* * @param weight the weight to set * @return the current RequestDataContext instance */ public RequestDataContext weight(final float weight) { data.setWeight(weight); return this; } /** * Builds and returns the constructed RequestData object. * * @return the constructed RequestData object */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java
*/ @Override public void setLastModified(final Long lastModified) { this.lastModified = lastModified; } @Override public float getWeight() { return weight; } @Override public void setWeight(float weight) { this.weight = weight; } /** * Returns a string representation of this object. * @return A string representation.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/ExtractorFactoryTest.java
@Override public int getWeight() { return 5; } }); assertEquals(10, extractorFactory.getExtractor(key).getWeight()); assertEquals(5, extractorFactory.getExtractors(key)[1].getWeight()); assertEquals(1, extractorFactory.getExtractors(key)[2].getWeight()); assertEquals(3, extractorFactory.getExtractors(key).length); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGeneratorTest.java
BufferedImage img = ImageIO.read(file); logger.debug("width: {}, height: {}", img.getWidth(), img.getHeight()); assertEquals("Image Width", width, img.getWidth()); assertEquals("Image Height", height, img.getHeight()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java
} throw new ExtractException("Failed to extract the content using available extractors."); } @Override public int getWeight() { return extractors[0].getWeight(); } }; } /** * Retrieves all extractors for the specified key. * @param key The key associated with the extractors.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/Extractor.java
/** * Returns the weight of the extractor. * The default implementation returns a weight of 1. * * @return the weight of the extractor */ default int getWeight() { return 1; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.6K bytes - Viewed (0)