Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 280 for Cordero (0.04 sec)

  1. src/main/webapp/js/search.js

            queryId = $("#queryId").val(),
            order = $(this).attr("data-order"),
            url = $(this).attr("href"),
            buf = [],
            hashIndex,
            hashStr;
        buf.push(contextPath);
        buf.push("/go/?rt=");
        buf.push(rt);
        buf.push("&docId=");
        buf.push(docId);
        buf.push("&queryId=");
        buf.push(queryId);
        buf.push("&order=");
        buf.push(order);
    
        hashIndex = url.indexOf("#");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/TreeBasedTable.java

      }
    
      /**
       * Creates an empty {@code TreeBasedTable} that is ordered by the specified comparators.
       *
       * @param rowComparator the comparator that orders the row keys
       * @param columnComparator the comparator that orders the column keys
       */
      public static <R, C, V> TreeBasedTable<R, C, V> create(
          Comparator<? super R> rowComparator, Comparator<? super C> columnComparator) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/TreeBasedTable.java

      }
    
      /**
       * Creates an empty {@code TreeBasedTable} that is ordered by the specified comparators.
       *
       * @param rowComparator the comparator that orders the row keys
       * @param columnComparator the comparator that orders the column keys
       */
      public static <R, C, V> TreeBasedTable<R, C, V> create(
          Comparator<? super R> rowComparator, Comparator<? super C> columnComparator) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

                "contents were not equal and in the same order: "
                    + "expected = "
                    + expected
                    + ", actual = "
                    + actual);
          }
        }
    
        if (expectedIter.hasNext() || actualIter.hasNext()) {
          // actual either had too few or too many elements
          fail(
              "contents were not equal and in the same order: "
                  + "expected = "
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ByFunctionOrdering.java

    import com.google.common.base.Function;
    import java.io.Serializable;
    import java.util.Objects;
    import org.jspecify.annotations.Nullable;
    
    /**
     * An ordering that orders elements by applying an order to the result of a function on those
     * elements.
     */
    @GwtCompatible
    final class ByFunctionOrdering<F extends @Nullable Object, T extends @Nullable Object>
        extends Ordering<F> implements Serializable {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

        }
    
        /**
         * Sets up the database query conditions for listing crawling information records.
         * Applies filters based on the pager criteria such as ID and session ID,
         * and orders results by creation time in descending order.
         *
         * @param cb the condition bean for building the database query
         * @param crawlingInfoPager the pager containing filter criteria
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/entity/FacetInfoTest.java

            BucketOrder order = facetInfo.getBucketOrder();
            assertNotNull(order);
            assertEquals(BucketOrder.key(true), order);
        }
    
        // Test getBucketOrder with only key type (no order)
        public void test_getBucketOrder_onlyKeyType() {
            facetInfo.sort = "key";
            BucketOrder order = facetInfo.getBucketOrder();
            assertNotNull(order);
            assertEquals(BucketOrder.key(true), order);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

            scoreUpdater.addScoreBooster(booster2);
            scoreUpdater.addScoreBooster(booster3);
    
            // Clear execution order before test
            PriorityTrackingBooster.clearExecutionOrder();
    
            scoreUpdater.execute();
    
            // Boosters should be executed in priority order (3, 2, 1)
            List<Integer> executionOrder = PriorityTrackingBooster.getExecutionOrder();
            assertEquals(3, executionOrder.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

         * Callers of TestContainerGenerator.order need to be prepared for implementations to return a new
         * collection.
         */
        @SuppressWarnings("CanIgnoreReturnValueSuggester")
        @Override
        public List<String> order(List<String> insertionOrder) {
          sort(insertionOrder, Collections.reverseOrder());
          return insertionOrder;
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    "site:aaa");
    
            assertQueryBuilder("{\"timestamp\":{\"order\":\"asc\"}}", "sort:timestamp");
            assertQueryBuilder("{\"timestamp\":{\"order\":\"asc\"}}", "sort:timestamp.asc");
            assertQueryBuilder("{\"timestamp\":{\"order\":\"desc\"}}", "sort:timestamp.desc");
    
            try {
                assertQueryBuilder("", "sort:xxx");
                fail();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.4K bytes
    - Viewed (0)
Back to top