Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 218 for exited (0.06 sec)

  1. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

        /** Parameter key for controlling deletion of old documents */
        private static final String DELETE_OLD_DOCS = "delete_old_docs";
    
        /** Parameter key for controlling retention of expired documents */
        private static final String KEEP_EXPIRES_DOCS = "keep_expires_docs";
    
        /**
         * Interval in milliseconds between crawler thread executions.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

        }
    
        public void test_inheritance() {
            // Verify that FessWebResourceRoot extends StandardRoot
            assertTrue("FessWebResourceRoot should extend StandardRoot", StandardRoot.class.isAssignableFrom(FessWebResourceRoot.class));
            assertTrue("FessWebResourceRoot should implement WebResourceRoot",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/ConnectionPool.kt

     * application. The tuning parameters in this pool are subject to change in future OkHttp releases.
     * Currently this pool holds up to 5 idle connections which will be evicted after 5 minutes of
     * inactivity.
     */
    class ConnectionPool internal constructor(
      internal val delegate: RealConnectionPool,
    ) {
      internal constructor(
        maxIdleConnections: Int = 5,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jun 03 17:10:08 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtStatus.java

        int NT_STATUS_INVALID_LOGON_HOURS = 0xC000006f;
        /** Logon failure: user not allowed to log on to this computer */
        int NT_STATUS_INVALID_WORKSTATION = 0xC0000070;
        /** The user's password has expired */
        int NT_STATUS_PASSWORD_EXPIRED = 0xC0000071;
        /** The referenced account is currently disabled */
        int NT_STATUS_ACCOUNT_DISABLED = 0xC0000072;
        /** No mapping between account names and security IDs was done */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  5. src/main/resources/CLMessages.properties

    ECL0012=argument[{0}] is null or empty collection.
    ECL0013=argument[{0}] is null or empty map.
    ECL0014=argument[{0}] which is null the index of array is negative integer.
    ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}].
    ECL0016=key[{0}] is not included in this BeanMap : {1}.
    ECL0017=Exception occurred, because {0}
    ECL0041={0}''s creation failure, because {1}
    ECL0040=IOException occurred, because {0}
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

        /**
         * Constructs a new system monitor target.
         */
        public SystemMonitorTarget() {
            super();
        }
    
        @Override
        public void expired() {
            final StringBuilder buf = new StringBuilder(1000);
    
            buf.append("[SYSTEM MONITOR] ");
            buf.append('{');
    
            appendOsStats(buf);
            appendProcessStats(buf);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/witness/WitnessEnumTest.java

            assertNotNull(WitnessRegistration.WitnessRegistrationState.UNREGISTERING);
            assertNotNull(WitnessRegistration.WitnessRegistrationState.FAILED);
            assertNotNull(WitnessRegistration.WitnessRegistrationState.EXPIRED);
        }
    
        @Test
        void testEnumToStringConversions() {
            // Test that enum toString methods work properly
            assertEquals("CLUSTER_WITNESS", WitnessServiceType.CLUSTER_WITNESS.toString());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Supplier.java

     * <i>other type</i> of supplier is expected, use the method reference {@code supplier::get}. A
     * future version of {@code com.google.common.base.Supplier} will be made to <i>extend</i> {@code
     * java.util.function.Supplier}, making conversion code necessary only in one direction. At that
     * time, this interface will be officially discouraged.
     *
     * @author Harry Heymann
     * @since 2.0
     */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jun 19 17:20:48 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

          }
          b.append(',').append(' ');
        }
      }
    
      /**
       * Saves the state to a stream (that is, serializes it).
       *
       * @serialData The length of the array is emitted (int), followed by all of its elements (each a
       *     {@code double}) in the proper order.
       */
      private void writeObject(ObjectOutputStream s) throws IOException {
        s.defaultWriteObject();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/context/BaseContextTest.java

        }
    
        @Test
        @DisplayName("Context should extend AbstractCIFSContext")
        void testInheritanceHierarchy() {
            // Then
            assertTrue(context instanceof AbstractCIFSContext, "BaseContext should extend AbstractCIFSContext");
        }
    
        @Test
        @DisplayName("Context should handle concurrent access safely")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top