Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 3,587 for findall (0.03 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

        } catch (Throwable t) {
          restoreInterruptIfIsInterruptedException(t);
          // This exception is irrelevant in this thread, but useful for the client.
          setException(t);
          return;
        } finally {
          function = null;
        }
    
        /*
         * If set()/setValue() throws an Error, we let it propagate. Why? The most likely Error is a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 20 18:03:37 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CurlHelperTest.java

                assertNull(sslSocketFactory);
    
            } catch (IOException e) {
                fail("Failed to create test certificate file: " + e.getMessage());
            } finally {
                if (invalidCertFile != null && invalidCertFile.exists()) {
                    invalidCertFile.delete();
                }
            }
        }
    
        public void test_init_withNonExistentSSLCertificate() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

            try {
                final int numThreads = 10;
                final int attemptsPerThread = 5;
    
                Thread[] threads = new Thread[numThreads];
                final AtomicInteger successfulThreads = new AtomicInteger(0);
                final AtomicInteger blockedAttempts = new AtomicInteger(0);
                final AtomicInteger exceptionCount = new AtomicInteger(0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

         */
        protected List<String> getUrlFromTagAttribute(final URL url, final Document document, final String xpath, final String attr,
                final String encoding) {
            if (logger.isDebugEnabled()) {
                logger.debug("Base URL: {}", url);
            }
            final List<String> urlList = new ArrayList<>();
            try {
                final XPathNodes list = getXPathAPI().selectNodeList(document, xpath);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 28.5K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java

        public void test_concurrentOperations() throws Exception {
            final TestTransformer transformer = new TestTransformer("concurrentTransformer");
            final int threadCount = 5;
            final int operationsPerThread = 10;
            final CountDownLatch startLatch = new CountDownLatch(1);
            final CountDownLatch endLatch = new CountDownLatch(threadCount);
            final AtomicInteger successCount = new AtomicInteger(0);
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 28K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

        private static final String ERROR_KEY_SUFFIX = ".error";
    
        public DefaultUpdateCheckManager() {}
    
        public DefaultUpdateCheckManager(Logger logger) {
            enableLogging(logger);
        }
    
        public static final String LAST_UPDATE_TAG = ".lastUpdated";
    
        private static final String TOUCHFILE_NAME = "resolver-status.properties";
    
        @Override
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Apr 22 22:13:51 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  7. docs/smb3-features/02-persistent-handles-design.md

            private static final long serialVersionUID = 1L;
            
            private final String path;
            private final HandleGuid createGuid;
            private final byte[] fileId;
            private final HandleType type;
            private final long timeout;
            private final long createTime;
            private volatile long lastAccessTime;
            private final Smb2LeaseKey leaseKey;  // Associated lease if any
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static final String SEARCH_HELPER = "searchHelper";
    
        private static final String THEME_HELPER = "themeHelper";
    
        private static final String PLUGIN_HELPER = "pluginHelper";
    
        private static final String LANGUAGE_HELPER = "languageHelper";
    
        private static final String CURL_HELPER = "curlHelper";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  9. src/bufio/scan.go

    //
    // The value is useful to stop processing early or when it is necessary to
    // deliver a final empty token (which is different from a nil token).
    // One could achieve the same behavior with a custom error value but
    // providing one here is tidier.
    // See the emptyFinalToken example for a use of this value.
    var ErrFinalToken = errors.New("final token")
    
    // Scan advances the [Scanner] to the next token, which will then be
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed May 21 18:05:26 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/CriticalPerformanceTest.java

                        totalTime.addAndGet(threadEnd - threadStart);
    
                    } catch (InterruptedException e) {
                        Thread.currentThread().interrupt();
                    } finally {
                        endLatch.countDown();
                    }
                });
            }
    
            startLatch.countDown(); // Start all threads
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.3K bytes
    - Viewed (0)
Back to top