- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 521 for configured (0.18 sec)
-
src/main/java/jcifs/util/PathValidator.java
log.warn("Path is blacklisted: {}", sanitizeForLog(normalized)); throw new SmbException("Path is not allowed"); } // Check against whitelist if configured if (!whitelistedPaths.isEmpty() && !isWhitelisted(normalized)) { log.warn("Path is not whitelisted: {}", sanitizeForLog(normalized)); throw new SmbException("Path is not in allowed list");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0) -
README.md
### Things to consider MinIO redirects browser access requests to the configured server port (i.e. `127.0.0.1:9000`) to the configured Console port. MinIO uses the hostname or IP address specified in the request when building the redirect URL. The URL and port *must* be accessible by the client for the redirection to work.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt
private const val UNICODE_3 = 0x2202 /** Arbitrary code point that's 4 bytes in UTF-8 and valid in IdnaMappingTable.txt. */ private const val UNICODE_4 = 0x1d11e /** * Returns a new instance configured with a default encode set for the ASCII range. The specific * rules vary per-component: for example, '?' may be identity-encoded in a fragment, but must be * percent-encoded in a path. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12.3K bytes - Viewed (0) -
helm-releases/minio-2.0.1.tgz
Cluster on [Kubernetes](http://kubernetes.io) using the [Helm](https://helm.sh) package manager. Prerequisites ---------- - Helm cli with Kubernetes cluster configured. - PV provisioner support in the underlying infrastructure. (We recommend using https://github.com/minio/direct-csi) - Use Kubernetes version v1.19 and later for best experience. Configure MinIO Helm repo ---------- ```bash helm repo add minio https://charts.min.io/ ``` Installing the Chart ---------- Install this chart using: ```bash helm...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 31 09:09:09 UTC 2021 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
protected LoadingCache<String, StatsObject> statsCache; /** * Initializes the crawler statistics helper. * Sets up the statistics logger and creates the cache for storing * statistics objects with the configured size and expiration settings. */ @PostConstruct public void init() { statsLogger = LogManager.getLogger(loggerName); statsCache = CacheBuilder.newBuilder()
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
logger.warn("Failed to initiaize TikaExtractor.", e); } } /** * Processes and normalizes a document title. * Applies text normalization using configured space characters and returns * a clean title suitable for indexing. * * @param responseData the response data from crawling (not currently used) * @param title the raw title text to process
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/jcifs/netbios/LmhostsTest.java
mockConfig = mock(Configuration.class); when(mockContext.getConfig()).thenReturn(mockConfig); } @Test void testGetByNameWithNullLmHostsFile() { // Test when lmhosts file is not configured when(mockConfig.getLmHostsFileName()).thenReturn(null); NbtAddress result = lmhosts.getByName("TEST_HOST", mockContext); assertNull(result); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
super.storeChildUrl(url, parentUrl, weight, depth); } } /** * Retrieves the appropriate crawler client for the given URL based on configured rules. * This method uses client rules to determine which specific client implementation * should be used for crawling the URL, falling back to the default client if no * specific rule matches. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
if (settings.getIdpSingleLogoutServiceUrl() == null) { if (logger.isDebugEnabled()) { logger.debug("IdP single logout service URL is not configured, skipping SLO for user: {}", samlUser); } return null; } final Auth auth = new Auth(settings, request, response);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (1) -
src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java
assertFalse(errorHandler.shouldFallbackToTcp(timeoutError), "Timeout errors should not immediately suggest TCP fallback"); System.out.println("Error handler configured with 3 retries and 50ms delay"); } @Test public void testRdmaBufferManagerUnitTests() throws Exception { RdmaProvider provider = RdmaProviderFactory.selectBestProvider();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 13.8K bytes - Viewed (0)