Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 953 for query1 (0.11 sec)

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

                cb.query().setTerm_Wildcard(wrapQuery(keyMatchPager.term));
            }
            if (StringUtil.isNotBlank(keyMatchPager.query)) {
                cb.query().setQuery_Wildcard(wrapQuery(keyMatchPager.query));
            }
            // TODO Long, Integer, String supported only.
    
            // setup condition
            cb.query().addOrderBy_Term_Asc();
    
            // search
    
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/request-forms.md

    Importar `Form` desde `fastapi`:
    
    {* ../../docs_src/request_forms/tutorial001_an_py39.py hl[3] *}
    
    ## Definir parรกmetros de `Form`
    
    Crea parรกmetros de formulario de la misma manera que lo harรญas para `Body` o `Query`:
    
    {* ../../docs_src/request_forms/tutorial001_an_py39.py hl[9] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/request-forms.md

    With `Form` you can declare the same configurations as with `Body` (and `Query`, `Path`, `Cookie`), including validation, examples, an alias (e.g. `user-name` instead of `username`), etc.
    
    /// info
    
    `Form` is a class that inherits directly from `Body`.
    
    ///
    
    /// tip
    
    To declare form bodies, you need to use `Form` explicitly, because without it the parameters would be interpreted as query parameters or body (JSON) parameters.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/keymatch/SearchForm.java

         */
        public SearchForm() {
        }
    
        /**
         * The search term field for key match configuration.
         */
        public String term;
    
        /**
         * The query field for key match configuration.
         */
        public String query;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/body-fields.md

    `Field` ๐Ÿ‘ท ๐ŸŽ ๐ŸŒŒ `Query`, `Path` & `Body`, โšซ๏ธ โœ”๏ธ ๐ŸŒ ๐ŸŽ ๐Ÿ”ข, โ™’๏ธ.
    
    /// note | ๐Ÿ“ก โ„น
    
    ๐Ÿค™, `Query`, `Path` & ๐ŸŽ ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ‘€ โญ โœ ๐ŸŽš ๐Ÿฟ โš  `Param` ๐ŸŽ“, โ” โšซ๏ธ ๐Ÿฟ Pydantic `FieldInfo` ๐ŸŽ“.
    
     & Pydantic `Field` ๐Ÿ“จ ๐Ÿ‘ `FieldInfo` ๐Ÿ‘.
    
    `Body` ๐Ÿ“จ ๐ŸŽš ๐Ÿฟ `FieldInfo` ๐Ÿ”—. & ๐Ÿ“ค ๐ŸŽ ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ‘€ โช ๐Ÿ‘ˆ ๐Ÿฟ `Body` ๐ŸŽ“.
    
    ๐Ÿ’ญ ๐Ÿ‘ˆ ๐Ÿ•โ” ๐Ÿ‘† ๐Ÿ—„ `Query`, `Path`, & ๐ŸŽ โšช๏ธโžก๏ธ `fastapi`, ๐Ÿ‘ˆ ๐Ÿค™ ๐Ÿ”ข ๐Ÿ‘ˆ ๐Ÿ“จ ๐ŸŽ ๐ŸŽ“.
    
    ///
    
    /// tip
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsPathMappingCQ.java

    import org.opensearch.index.query.RangeQueryBuilder;
    import org.opensearch.index.query.RegexpQueryBuilder;
    import org.opensearch.index.query.SpanTermQueryBuilder;
    import org.opensearch.index.query.TermQueryBuilder;
    import org.opensearch.index.query.TermsQueryBuilder;
    import org.opensearch.index.query.WildcardQueryBuilder;
    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 72.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

                    cb.query().setDescription_Wildcard(fileConfigPager.description);
                } else if (fileConfigPager.description.endsWith("*")) {
                    cb.query().setDescription_Prefix(fileConfigPager.description.replaceAll("\\*$", StringUtil.EMPTY));
                } else {
                    cb.query().setDescription_MatchPhrase(fileConfigPager.description);
                }
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/response-model.md

    ### Desabilitar modelo de resposta
    
    Continuando com o exemplo acima, vocรช pode nรฃo querer ter a validaรงรฃo de dados padrรฃo, documentaรงรฃo, filtragem, etc. que รฉ realizada pelo FastAPI.
    
    Mas vocรช pode querer manter a anotaรงรฃo do tipo de retorno na funรงรฃo para obter o suporte de ferramentas como editores e verificadores de tipo (por exemplo, mypy).
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Nov 26 22:51:05 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/cookie-params.md

    # ๐Ÿช ๐Ÿ”ข
    
    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ”ฌ ๐Ÿช ๐Ÿ”ข ๐ŸŽ ๐ŸŒŒ ๐Ÿ‘† ๐Ÿ”ฌ `Query` & `Path` ๐Ÿ”ข.
    
    ## ๐Ÿ—„ `Cookie`
    
    ๐Ÿฅ‡ ๐Ÿ—„ `Cookie`:
    
    {* ../../docs_src/cookie_params/tutorial001.py hl[3] *}
    
    ## ๐Ÿ“ฃ `Cookie` ๐Ÿ”ข
    
    โคด๏ธ ๐Ÿ“ฃ ๐Ÿช ๐Ÿ”ข โš™๏ธ ๐ŸŽ ๐Ÿ“Š โฎ๏ธ `Path` & `Query`.
    
    ๐Ÿฅ‡ ๐Ÿ’ฒ ๐Ÿ”ข ๐Ÿ’ฒ, ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšถโ€โ™€๏ธ ๐ŸŒ โž• ๐Ÿ”ฌ โš–๏ธ โœ ๐Ÿ”ข:
    
    {* ../../docs_src/cookie_params/tutorial001.py hl[9] *}
    
    /// note | ๐Ÿ“ก โ„น
    
    `Cookie` "๐Ÿ‘ญ" ๐ŸŽ“ `Path` & `Query`. โšซ๏ธ ๐Ÿ˜– โšช๏ธโžก๏ธ ๐ŸŽ โš  `Param` ๐ŸŽ“.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 828 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/exentity/KeyMatch.java

        }
    
        @Override
        public String toString() {
            return "KeyMatch [boost=" + boost + ", createdBy=" + createdBy + ", createdTime=" + createdTime + ", maxSize=" + maxSize
                    + ", query=" + query + ", term=" + term + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", docMeta="
                    + docMeta + "]";
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top