Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 407 for multiples (0.06 sec)

  1. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            data.put("key1", "value1");
            callback.store(params, data);
    
            assertEquals(1L, callback.getDocumentSize());
            assertEquals(100L, callback.getExecuteTime());
    
            // Test multiple stores
            callback.store(params, data);
            callback.store(params, data);
    
            assertEquals(3L, callback.getDocumentSize());
            assertEquals(300L, callback.getExecuteTime());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.2.md

    PersistentVolumeClaim.
      * Run multiple schedulers in parallel, e.g. one or more custom schedulers
    alongside the default Kubernetes scheduler, using pod annotations to select
    among the schedulers for each pod. Documentation is [here](http://kubernetes.io/docs/admin/multiple-schedulers.md), design doc is [here](docs/proposals/multiple-schedulers.md).
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java

            }
    
            for (int i = 0; i < items.length; i++) {
                assertEquals(i + 1, items[i].getId());
            }
        }
    
        public void test_idModification() {
            // Test modifying ID value multiple times
            TestDictionaryItem item = new TestDictionaryItem();
    
            // Initial value
            assertEquals(0L, item.getId());
    
            // First modification
            item.id = 50L;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for creating mapping dictionary entries.
     * Mapping dictionaries allow administrators to define synonym mappings
     * where multiple input terms can be mapped to a single output term for search normalization.
     *
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/AbstractIteratorTest.java

                  fail("Should not have been invoked again");
                }
                alreadyCalledEndOfData = true;
                return endOfData();
              }
            };
    
        /*
         * We test multiple calls to peek() to make sure that one bad call doesn't interfere with its
         * ability to throw the correct exception in the future.
         */
        assertThrows(NoSuchElementException.class, empty::peek);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LongAdder.java

     * reduce contention. Method {@link #sum} (or, equivalently, {@link #longValue}) returns the current
     * total combined across the variables maintaining the sum.
     *
     * <p>This class is usually preferable to {@link AtomicLong} when multiple threads update a common
     * sum that is used for purposes such as collecting statistics, not for fine-grained synchronization
     * control. Under low update contention, the two classes have similar characteristics. But under
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

     * highest valued code point that requires escaping. For example a replacement map containing the
     * single character '{@code \}{@code u1000}' will require approximately 16K of memory. If you need
     * to create multiple escaper instances that have the same character replacement mapping consider
     * using {@link ArrayBasedEscaperMap}.
     *
     * @author David Beaumont
     * @since 15.0
     */
    @GwtCompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

         */
        public OptionalEntity<WebConfig> getWebConfig(final String id) {
            return webConfigBhv.selectByPK(id);
        }
    
        /**
         * Gets a web configuration by its name.
         * If multiple configurations have the same name, returns the first one ordered by sort order.
         *
         * @param name The name of the web configuration
         * @return Optional containing the web configuration if found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_edit.jsp

                                        <div class="col-sm-9">
                                            <la:errors property="labelTypeIds"/>
                                            <la:select styleId="labelTypeIds" property="labelTypeIds" multiple="true"
                                                       styleClass="form-control">
                                                <c:forEach var="l" varStatus="s" items="${labelTypeItems}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/EquivalenceTest.java

       * gets translated back to `Integer.valueOf` because that is the only thing J2KT can support. And
       * anyway, it's nice to avoid `Integer.valueOf` because the Android toolchain optimizes multiple
       * `Integer.valueOf` calls into one! So we stick with the deprecated `Integer` constructor.
       */
    
      public void testEqualsEquivalent() {
        EquivalenceTester.of(Equivalence.equals())
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top