Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 306 for sort2 (0.02 sec)

  1. docs/fr/docs/tutorial/body-multiple-params.md

    ///
    
    **FastAPI** effectue la conversion de la requête de façon transparente, de sorte que les objets `item` et `user` se trouvent correctement définis.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 11:10:17 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/main/config/openapi/openapi-user.yaml

                type: integer
                minimum: 0
                exclusiveMinimum: false
                maximum: 100
                exclusiveMaximum: false
                default: 20
                example: 20
            - name: sort
              in: query
              description: Sorted field name
              required: false
              schema:
                type: string
                example: score
            - name: fields.label
              in: query
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java

         * {@link CoreExtensions} is validated, but the list elements may have overlapping elements, that requires
         * some logic to sort out (like precedence).
         * <p>
         * The list of {@link CoreExtensions} if present, is in precedence order.
         *
         * @return an {@link Optional} containing the {@link CoreExtensions}, or empty if not configured
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

        public String regularName;
    
        /** Search/filter parameter for duplicate hostname pattern. */
        public String duplicateHostName;
    
        /** Search/filter parameter for duplicate host sort order. */
        public String sortOrder;
    
        /** Search/filter parameter for duplicate host creator. */
        public String createdBy;
    
        /** Search/filter parameter for duplicate host creation time. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/form-validator/sweden.js

    th||"467"===c)&&((11===b.length||"467"!==c)&&(/07[0-9{1}]/.test(c)||"467"===c))},errorMessage:"",errorMessageKey:"badTelephone"});var c=function(b){var c=[];return a.each(b,function(a,b){c.push(b.substr(0,1).toUpperCase()+b.substr(1,b.length))}),c.sort(),c};a.fn.suggestSwedishCounty=function(b){var d=c(a.formUtils.validators.validate_swecounty.counties);return a.formUtils.suggest(this,d,b)},a.fn.suggestSwedishMunicipality=function(b){var d=c(a.formUtils.validators.validate_swemunicipality.municipalities);return...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java

        public String id;
    
        /** URL expression for search filtering. */
        public String urlExpr;
    
        /** Boost expression for search filtering. */
        public String boostExpr;
    
        /** Sort order for search filtering. */
        public String sortOrder;
    
        /** Creator username for search filtering. */
        public String createdBy;
    
        /** Creation time for search filtering. */
        public String createdTime;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

            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
         */
        public OptionalEntity<WebConfig> getWebConfigByName(final String name) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

    import static java.util.Arrays.asList;
    import static java.util.Collections.nCopies;
    import static java.util.Collections.singletonList;
    import static java.util.Collections.sort;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.BoundType;
    import com.google.common.collect.Iterators;
    import com.google.common.collect.Multiset.Entry;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 20:14:36 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. generics.go

    package gorm
    
    import (
    	"context"
    	"database/sql"
    	"fmt"
    	"sort"
    	"strings"
    
    	"gorm.io/gorm/clause"
    	"gorm.io/gorm/logger"
    )
    
    type result struct {
    	Result       sql.Result
    	RowsAffected int64
    }
    
    func (info *result) ModifyStatement(stmt *Statement) {
    	stmt.Result = info
    }
    
    // Build implements clause.Expression interface
    func (result) Build(clause.Builder) {
    }
    
    func WithResult() *result {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            }
        }
    
        // Helper method to assert arrays are equal (handles sorting)
        private void assertArrayEquals(String[] expected, String[] actual) {
            java.util.Arrays.sort(expected);
            java.util.Arrays.sort(actual);
            assertEquals(expected.length, actual.length);
            for (int i = 0; i < expected.length; i++) {
                assertEquals(expected[i], actual[i]);
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.5K bytes
    - Viewed (0)
Back to top