Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 451 for onder (0.01 seconds)

  1. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 32.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

        }
    
        @Test
        @Order(3)
        void crawlingInfoDeleteAllTest() {
            logger.info("start crawlingInfoDeleteAllTest");
            testDeleteAllCrawlingInfo();
        }
    
        @Test
        @Order(4)
        void failureUrlTest() {
            logger.info("start failureUrlTest");
            testReadFailureUrl();
            testDeleteFailureUrl();
        }
    
        @Test
        @Order(5)
        void searchListTest() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/entity/FacetInfoTest.java

            assertEquals(BucketOrder.count(false), order);
    
            facetInfo.sort = "term.DESC";
            order = facetInfo.getBucketOrder();
            assertNotNull(order);
            assertEquals(BucketOrder.key(false), order);
    
            facetInfo.sort = "key.ASC";
            order = facetInfo.getBucketOrder();
            assertNotNull(order);
            assertEquals(BucketOrder.key(true), order);
        }
    
        // Test addQuery with null query array
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/query/QueryCommand.java

        }
    
        /**
         * Creates a sort builder for the specified field and order.
         * @param field The field name to sort by.
         * @param order The sort order (ascending or descending).
         * @return The appropriate sort builder for the field.
         */
        protected SortBuilder<?> createFieldSortBuilder(final String field, final SortOrder order) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 11:39:05 GMT 2025
    - 11.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/ClickLogDbm.java

                0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnOrder = cci("order", "order", null, null, Integer.class, "order", null, false, false, false,
                "Integer", 0, 0, null, null, false, null, null, null, null, null, false);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 10.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  7. 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();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/QueryHelper.java

         */
        protected SortBuilder<?> createFieldSortBuilder(final String field, final SortOrder order) {
            if (QueryFieldConfig.SCORE_FIELD.equals(field) || QueryFieldConfig.DOC_SCORE_FIELD.equals(field)) {
                return SortBuilders.scoreSort().order(order);
            }
            return SortBuilders.fieldSort(field).order(order);
        }
    
        /**
         * Sets the prefix used for highlight field names in search results.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsClickLogCA.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 45.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.9K bytes
    - Click Count (0)
Back to Top