Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 310 for occur (0.02 sec)

  1. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

        public void test_constructor() {
            // Test that constructor creates instance without error
            PurgeLogJob job = new PurgeLogJob();
            assertNotNull(job);
        }
    
        // Test multiple exceptions occur
        public void test_execute_multipleExceptions() {
            // Create mock services with exceptions
            CrawlingInfoService crawlingInfoService = new CrawlingInfoService() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Ascii.java

       *   <li>{@code string.toUpperCase().equals("UPPER CASE ASCII")}
       *   <li>{@code string.toLowerCase().equals("lower case ascii")}
       * </ul>
       *
       * <p>due to case-folding of some non-ASCII characters (which does not occur in {@link
       * String#equalsIgnoreCase}). However in almost all cases that ASCII strings are used, the author
       * probably wanted the behavior provided by this method rather than the subtle and sometimes
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            assertNotNull(result);
            assertTrue(result.contains("Session Id:"));
            assertNotNull(suggestJob.sessionId);
            assertEquals(15, suggestJob.sessionId.length());
            // Cache clearing may not always occur in test environment
            // The real behavior depends on the actual SuggestJob implementation
        }
    
        // Test execute method with failure
        public void test_execute_failure() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        assertThat(suppressed[1]).hasCauseThat().hasMessageThat().isEqualTo("start failure");
        LogRecord record = Iterables.getOnlyElement(logHandler.getStoredLogRecords());
        // We log failures that occur after startup
        assertThat(record.getMessage())
            .contains("Service FailRunService [FAILED] has failed in the RUNNING state");
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 20:34:52 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

       *
       *   o READ lines track accesses for LRU.
       *
       *   o REMOVE lines track entries that have been deleted.
       *
       * The journal file is appended to as cache operations occur. The journal may occasionally be
       * compacted by dropping redundant lines. A temporary file named "journal.tmp" will be used during
       * compaction; that file should be deleted if it exists when the cache is opened.
       */
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multiset.java

       * e]}.
       */
      @Override
      String toString();
    
      // Refined Collection Methods
    
      /**
       * {@inheritDoc}
       *
       * <p>Elements that occur multiple times in the multiset will appear multiple times in this
       * iterator, though not necessarily sequentially.
       */
      @Override
      Iterator<E> iterator();
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/Configuration.java

         */
        long getAttributeCacheTimeout();
    
        /**
         *
         *
         * Property {@code jcifs.smb.client.ignoreCopyToException} (boolean, false)
         *
         * @return whether to ignore exceptions that occur during file copy
         */
        boolean isIgnoreCopyToException();
    
        /**
         * Gets the batch limit for a specific SMB command
         *
         * @param cmd the SMB command name
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_4x.md

        even if the host names do not. In 4.4.0 we introduced a regression where we shared a connection
        when certificates matched but the DNS addresses did not. This would only occur when following a
        redirect from one hostname to another, and where both hosts had common certificates.
    
     *  Fix: Don't fail on a redirect when a client has configured a 'trust everything' trust manager.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                    logger.debug("Skipped. No content. ");
                }
    
            }
        }
    
        /**
         * Retrieves the access result data from an OpenSearch access result.
         * Handles exceptions that may occur during data retrieval.
         *
         * @param accessResult the access result to extract data from
         * @return the access result data, or null if retrieval fails
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/ListsTest.java

        }
        iterator.remove();
        assertEquals(asList("2", "3", "4"), list);
        assertFalse(list.isEmpty());
    
        // An UnsupportedOperationException or IllegalStateException may occur.
        try {
          iterator.add("1");
          fail("transformed list iterator is addable");
        } catch (UnsupportedOperationException | IllegalStateException expected) {
        }
        try {
          iterator.set("1");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.4K bytes
    - Viewed (0)
Back to top