Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 301 for Catching (0.17 sec)

  1. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

             * Returns true if "cache" is present in the values or if there's a single "true" value
             * for backward compatibility.
             *
             * @return true if caching is enabled, false otherwise
             */
            public boolean isCache() {
                for (final String value : values) {
                    if ("cache".equalsIgnoreCase(value)) {
                        return true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DfsImpl.java

            }
    
            String p = "\\" + target + "\\" + root;
            if (path != null) {
                p += path;
            }
            try {
                if (log.isDebugEnabled()) {
                    log.debug("Fetching referral for " + p);
                }
                final DfsReferralData dr = trans.getDfsReferrals(tf, p, targetHost, targetDomain, 0);
                if (dr != null) {
    
                    if (log.isDebugEnabled()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/SmbTreeTest.java

        /**
         * Setup method executed before each test.
         */
        @BeforeEach
        void setUp() {
            // Common setup if needed
        }
    
        /**
         * Test for unwrap() method with matching type.
         * Verifies that unwrap returns the correct instance when the type matches.
         */
        @Test
        void testUnwrap_withMatchingType() {
            // Create a custom SmbTree type for testing
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  4. okhttp-testing-support/src/main/kotlin/okhttp3/RecordingEventListener.kt

              null -> return // no open event
              true -> return // found open event
              false -> return@loop // this is not the open event so continue
            }
          }
          fail<Any>("event $e without matching start event")
        }
      }
    
      override fun proxySelectStart(
        call: Call,
        url: HttpUrl,
      ) = logEvent(ProxySelectStart(System.nanoTime(), call, url))
    
      override fun proxySelectEnd(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            docMap.put("_id", "docid1");
            docMap.put("url", "http://example.com");
    
            boolean result = thumbnailManager.offer(docMap);
            assertTrue(result);
        }
    
        // Test offer with no matching generator
        public void test_offer_noMatchingGenerator() {
            TestThumbnailGenerator generator = new TestThumbnailGenerator();
            generator.available = true;
            generator.target = false;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtStatus.java

        int NT_STATUS_PATH_NOT_COVERED = 0xC0000257;
        /** The IO operation on the reparse point failed */
        int NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED = 0xC0000279;
        /** No more files were found matching the file specification */
        int NT_STATUS_NO_MORE_FILES = 0x80000006;
    
        /** Array of all NT status codes defined in this interface */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbResource.java

         * @throws CIFSException if an error occurs accessing the resource
         */
        CloseableIterator<SmbResource> children() throws CIFSException;
    
        /**
         * Fetch children matching pattern, server-side filtering
         *
         * <p>
         * The wildcard expression may consist of two special meta
         * characters in addition to the normal filename characters. The '*'
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 28K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

     * This filter processes requests with specific encoding requirements and converts
     * character encodings according to configured mapping rules.
     *
     * <p>The filter intercepts requests matching configured path patterns and
     * redirects them with proper character encoding applied to parameters.</p>
     */
    public class EncodingFilter implements Filter {
        /** Configuration key for encoding rules mapping */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java

            testData.add(createRelatedContent("Java", "Java Programming", ""));
            mockBhv.setTestData(testData);
    
            relatedContentHelper.load();
    
            // Test case insensitive matching
            String[] results = relatedContentHelper.getRelatedContents("java");
            assertEquals(1, results.length);
            assertEquals("Java Programming", results[0]);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

                return null;
            }
        }
    
        /**
         * Implementation of {@link ModelSource} that extends {@link PathSource} with model-specific
         * functionality. This implementation uses request-scoped caching ({@link CacheRetention#REQUEST_SCOPED})
         * since it represents a POM file that is actively being built and may change during the build process.
         * <p>
         * The request-scoped retention policy ensures that:
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 8K bytes
    - Viewed (0)
Back to top