- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 227 for URLs (0.06 sec)
-
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
try { ImmutableList<URL> urls = ClassPath.parseJavaClassPath(); assertThat(urls.get(0).getProtocol()).isEqualTo("file"); assertThat(urls.get(0).getAuthority()).isNull(); assertThat(urls.get(0).getPath()).endsWith("/relative/path/to/some.jar"); assertThat(urls.get(1)).isEqualTo(new URL("file:///absolute/path/to/some.jar")); assertThat(urls.get(2).getProtocol()).isEqualTo("file");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 23K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
logger.debug("CrawlerClientCreator is unavailable.", e); } } } /** * Adds a client with a regular expression pattern. * @param regex The regular expression to match URLs. * @param client The CrawlerClient instance. */ public void addClient(final String regex, final CrawlerClient client) { if (StringUtil.isBlank(regex)) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
// Default constructor } /** URL filter for searching failure URLs. */ //@Maxbytelength(maxbytelength = 1000) public String url; /** Minimum error count filter for searching failure URLs. */ //@IntRange(min = 0, max = 2147483647) public String errorCountMin; /** Maximum error count filter for searching failure URLs. */ //@IntRange(min = 0, max = 2147483647) public String errorCountMax;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
logHelper.log(key, objs); } } /** * Runs the crawling process in a separate thread. * This method fetches URLs from the queue, accesses content, processes responses, * and extracts child URLs until the crawling process is done or no more URLs are available. */ @Override public void run() { log(logHelper, LogType.START_THREAD, crawlerContext);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/AbstractIntervalController.java
* <ul> * <li>Before processing a URL ({@link #delayBeforeProcessing()})</li> * <li>After processing a URL ({@link #delayAfterProcessing()})</li> * <li>When there are no URLs in the queue ({@link #delayAtNoUrlInQueue()})</li> * <li>While waiting for new URLs to be added to the queue ({@link #delayForWaitingNewUrl()})</li> * </ul> * * <p> * Subclasses are responsible for implementing the abstract methods to define the actual delay
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/NetServerFileEntryAdapterIteratorTest.java
@Mock SmbResourceLocator parentLocator; private CIFSContext ctx; @BeforeEach void setup() { // Use a real CIFS context to provide a working URLStreamHandler for smb:// URLs this.ctx = SingletonContext.getInstance(); } private void setupParentForUrlCreation() throws CIFSException { // Only set up parent mocks when they're actually needed for URL creation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
/** XML element name for start URLs configuration. */ protected static final String START_URLS = "start_urls"; /** XML element name for good (included) URLs configuration. */ protected static final String GOOD_URLS = "good_urls"; /** XML element name for bad (excluded) URLs configuration. */ protected static final String BAD_URLS = "bad_urls";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
if (pathMappingList == null) { return url; } return replaceUrl(pathMappingList, url); } /** * Replaces URLs in text. * * @param text the text containing URLs * @return the text with replaced URLs */ public String replaceUrls(final String text) { if (cachedPathMappingList == null) { synchronized (this) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
*/ @Size(max = 1000) public String description; /** * The URLs to be crawled by this web configuration. */ @Required @UriType(protocolType = ProtocolType.WEB) @CustomSize(maxKey = "form.admin.max.input.size") public String urls; /** * URL patterns to include during crawling. */ @CustomSize(maxKey = "form.admin.max.input.size")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
* * <p> * It provides methods to set and retrieve the server address, port, username, * password, and domain. Additionally, it offers a method to construct a path * prefix for SMB1 URLs based on the configured server and port. * </p> * * <p> * The path prefix is in the format "smb1://server:port/", where the port is * included only if it's greater than 0. If the server is not set, the path
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 3.9K bytes - Viewed (0)