Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for independently (0.05 sec)

  1. android/guava/src/com/google/common/io/ByteSource.java

     * immutable <i>supplier</i> of {@code InputStream} instances.
     *
     * <p>{@code ByteSource} provides two kinds of methods:
     *
     * <ul>
     *   <li><b>Methods that return a stream:</b> These methods should return a <i>new</i>, independent
     *       instance each time they are called. The caller is responsible for ensuring that the
     *       returned stream is closed.
     *   <li><b>Convenience methods:</b> These are implementations of common operations that are
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 20 20:55:20 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/outsideSqlMap.dfprop

        #   e.g. list:{prefix:SP_}
        #  And you can specify procedures through DB link.
        #  This is treated as additional setting
        #  so it is independent from specifications for main schema.
        #   e.g. SP_FOO@NEXT_LINK (when DB link name is 'NEXT_LINK')  
        #
        #; targetProcedureNameList = list:{FOO_PROCEDURE ; prefix:FOO_ ; suffix:_FOO ; contain:_FOO_}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

            StackTraceElement[] newStackTrace = exception.getStackTrace();
            assertNotNull(newStackTrace);
        }
    
        public void test_multipleInstances() {
            // Test that multiple instances are independent
            String message1 = "First exception";
            String message2 = "Second exception";
    
            UnsupportedSearchException exception1 = new UnsupportedSearchException(message1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

                return value;
            }
            return defaultValue;
        }
    
        /**
         * Creates a new DataStoreParams instance with a copy of the current parameters.
         * This provides an independent copy that can be modified without affecting the original.
         *
         * @return a new DataStoreParams instance containing a copy of the current parameters
         */
        public DataStoreParams newInstance() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java

            dictionaryItem.id = Long.MIN_VALUE;
            assertEquals(Long.MIN_VALUE, dictionaryItem.getId());
        }
    
        public void test_multipleInstances() {
            // Test that different instances have independent ID values
            TestDictionaryItem item1 = new TestDictionaryItem();
            TestDictionaryItem item2 = new TestDictionaryItem();
    
            item1.id = 100L;
            item2.id = 200L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java

     * <ul>
     *   <li>returning the same iterator again
     *   <li>throwing an exception of some kind
     *   <li>or the usual, <i>robust</i> behavior, which all known {@link Collection} implementations
     *       have, of returning a new, independent iterator
     * </ul>
     *
     * <p>Because of this situation, any public method accepting an iterable should invoke the {@code
     * iterator} method only once, and should be tested using this class. Exceptions to this rule should
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/WebSocket.kt

     *
     *  * **Canceled:** the web socket connection failed. Messages that were successfully enqueued by
     *    either peer may not have been transmitted to the other.
     *
     * Note that the state progression is independent for each peer. Arriving at a gracefully-closed
     * state indicates that a peer has sent all of its outgoing messages and received all of its
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

            // Second execution
            String result2 = aggregateLogJob.execute();
            assertNotNull(result2);
            assertTrue(result2.contains("Error 2"));
    
            // Results should be independent
            assertFalse(result1.equals(result2));
        }
    
        public void test_execute_withEmptyStringException() {
            // Setup mock SearchLogHelper that throws exception with empty message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            // Create a copy
            DataStoreParams copy = dataStoreParams.newInstance();
    
            // Modify original
            dataStoreParams.put("key5", "value5");
    
            // Verify copy is independent
            assertTrue(dataStoreParams.containsKey("key5"));
            assertFalse(copy.containsKey("key5"));
    
            // Get as map and verify
            Map<String, Object> map = dataStoreParams.asMap();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java

                assertEquals("User is not found: testuser", e.getCause().getMessage());
            }
        }
    
        public void test_multipleInstances() {
            // Test that multiple instances are independent
            FessUserNotFoundException exception1 = new FessUserNotFoundException("user1");
            FessUserNotFoundException exception2 = new FessUserNotFoundException("user2");
    
            assertNotSame(exception1, exception2);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.6K bytes
    - Viewed (0)
Back to top