- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 487 for Curl (0.02 sec)
-
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsFavoriteLog.java
this.queryId = value; } public String getUrl() { checkSpecifiedProperty("url"); return convertEmptyToNull(url); } public void setUrl(String value) { registerModifiedProperty("url"); this.url = value; } public String getUserInfoId() { checkSpecifiedProperty("userInfoId");Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/builder/RequestDataBuilderTest.java
assertEquals(Method.HEAD, data.getMethod()); } public void test_url() { // Test url() method String url = "https://example.com/path"; RequestData data = RequestDataBuilder.newRequestData().url(url).build(); assertEquals(url, data.getUrl()); } public void test_weight() { // Test weight() methodRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContentNotFoundException.java
/** * Constructs a new ContentNotFoundException with the specified parent URL and URL. * * @param parentUrl the URL of the parent document * @param url the URL of the content that was not found */ public ContentNotFoundException(final String parentUrl, final String url) { super("Not Found: " + url + " Parent: " + parentUrl, false, false); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java
* @param url the DCERPC URL specifying the endpoint * @param auth the NTLM authentication credentials * @throws UnknownHostException if the host cannot be resolved * @throws MalformedURLException if the URL is malformed * @throws DcerpcException if DCERPC initialization fails */ public DcerpcPipeHandle(String url, final NtlmPasswordAuthentication auth)Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/UrlFilterServiceImpl.java
/** * Implementation of the {@link UrlFilterService} interface. * This class provides methods for managing URL filtering rules, * including adding include and exclude URL patterns, deleting patterns, * and retrieving lists of compiled URL patterns. It utilizes a * {@link MemoryDataHelper} to store and manage the URL patterns in memory. * */ public class UrlFilterServiceImpl implements UrlFilterService { /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
* * Invariant: * A directory resource must have a trailing slash/backslash for both URL and UNC path at all times. * * @author mbechler * */ class SmbResourceLocatorImpl implements SmbResourceLocatorInternal, Cloneable { private static final Logger log = LoggerFactory.getLogger(SmbResourceLocatorImpl.class); private final URL url; private DfsReferralData dfsReferral = null; // For getDfsPath() and getServerWithDfs()Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchUrlQueue.java
/** * Field name for method. */ public static final String METHOD = "method"; /** * Field name for URL. */ public static final String URL = "url"; /** * Field name for parent URL. */ public static final String PARENT_URL = "parentUrl"; /** * Field name for depth. */ public static final String DEPTH = "depth";Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java
logger.debug("Crawling access exception at url: {}", urlQueue.getUrl(), e); } else if (e.isInfoEnabled()) { logger.info(e.getMessage()); } else if (e.isWarnEnabled()) { logger.warn("Crawling access exception at url: {}", urlQueue.getUrl(), e); } else if (e.isErrorEnabled()) { logger.error("Crawling access exception at url: {}", urlQueue.getUrl(), e); } }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
protected static final String OIC_SCOPE = "oic.scope"; /** Configuration key for OpenID Connect redirect URL. */ protected static final String OIC_REDIRECT_URL = "oic.redirect.url"; /** Configuration key for OpenID Connect token server URL. */ protected static final String OIC_TOKEN_SERVER_URL = "oic.token.server.url"; /** Configuration key for OpenID Connect client secret. */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 16.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapAlternateLink.java
public void setHreflang(final String hreflang) { this.hreflang = hreflang; } /** * Gets the href URL. * @return the href URL */ public String getHref() { return href; } /** * Sets the href URL. * @param href the href URL to set */ public void setHref(final String href) { this.href = href; } @Override
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 2.6K bytes - Viewed (0)