Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 140 for infer (0.67 sec)

  1. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            // Test with nested exceptions
            String url = "http://example.com/test";
            String message = "Outer error message";
            Exception innerCause = new IllegalArgumentException("Inner cause");
            Exception middleCause = new IllegalStateException("Middle cause", innerCause);
            Exception outerCause = new RuntimeException("Outer cause", middleCause);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResourceLocator.java

         * @throws CIFSException if the address cannot be resolved
         */
        Address getAddress() throws CIFSException;
    
        /**
         * Determines whether this resource represents an IPC (Inter-Process Communication) connection.
         *
         * @return whether this is a IPC connection
         */
        boolean isIPC();
    
        /**
         * Returns type of of object this <code>SmbFile</code> represents.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/validation/CronExpressionTest.java

            bean.setComposedCron("invalid");
    
            Set<ConstraintViolation<ComposedBean>> violations = validator.validate(bean);
            assertFalse(violations.isEmpty());
        }
    
        // Inner test classes for validation testing
    
        private static class TestBean {
            @CronExpression
            private String cronExpression;
    
            public String getCronExpression() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            public Class<?> getLastCredentialType() {
                return lastCredentialType;
            }
    
            public Function<?, ?> getLastFunction() {
                return lastFunction;
            }
        }
    
        // Inner class for test credential
        private static class TestLoginCredential implements LoginCredential {
            private final String username;
            private final String password;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

                !item.equals(item.toString()));
          }
        }
      }
    
      /**
       * Class used to test whether equals() correctly handles an instance of an incompatible class.
       * Since it is a private inner class, the invoker can never pass in an instance to the tester
       */
      private enum NotAnInstance {
        EQUAL_TO_NOTHING;
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/Trans2FindFirst2ResponseTest.java

        private Trans2FindFirst2Response response;
    
        @BeforeEach
        void setUp() {
            response = new Trans2FindFirst2Response();
        }
    
        // Test cases for SmbFindFileBothDirectoryInfo inner class
        @Test
        void testSmbFindFileBothDirectoryInfo_Getters() {
            Trans2FindFirst2Response.SmbFindFileBothDirectoryInfo info = response.new SmbFindFileBothDirectoryInfo();
            info.filename = "test.txt";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

         */
        @Override
        public String toString() {
            return "MappingFile [path=" + path + ", mappingItemList=" + mappingItemList + ", id=" + id + "]";
        }
    
        /**
         * Inner class for handling updates to the character mapping file.
         * This class manages the temporary file creation, writing operations,
         * and atomic updates to ensure data consistency during modifications.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

        }
    
        @Override
        public String toString() {
            return "StemmerOverrideFile [path=" + path + ", stemmerOverrideItemList=" + stemmerOverrideItemList + ", id=" + id + "]";
        }
    
        /**
         * An inner class for updating the stemmer override file.
         * This class handles the process of writing changes to a temporary file
         * and then replacing the original file upon successful commit.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    # Maximum concurrent group results for collapse queries.
    query.collapse.max.concurrent.group.results=4
    # Inner hits name for collapse queries.
    query.collapse.inner.hits.name=similar_docs
    # Inner hits size for collapse queries.
    query.collapse.inner.hits.size=0
    # Sorts for inner hits in collapse queries.
    query.collapse.inner.hits.sorts=
    # Default languages for queries.
    query.default.languages=
    # Default preference for JSON queries.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/JobHelper.java

         * @param monitorInterval the monitor interval in seconds
         */
        public void setMonitorInterval(final int monitorInterval) {
            this.monitorInterval = monitorInterval;
        }
    
        /**
         * Inner class that implements TimeoutTarget for monitoring job execution.
         */
        static class MonitorTarget implements TimeoutTarget {
    
            /** The job log being monitored */
            private final JobLog jobLog;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
Back to top