Search Options

Results per page
Sort
Preferred Languages
Advance

Results 381 - 390 of 911 for rquery (1.49 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java

        private String fileName;
    
        /**
         * Constructs an SMB2 query directory request with the given configuration.
         *
         * @param config the configuration for this request
         */
        public Smb2QueryDirectoryRequest(final Configuration config) {
            this(config, Smb2Constants.UNSPECIFIED_FILEID);
        }
    
        /**
         * Constructs a SMB2 query directory request with the specified configuration and file ID
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/request-forms.md

    ## Importe `Form`
    
    Importe `Form` de `fastapi`:
    
    {* ../../docs_src/request_forms/tutorial001.py hl[1] *}
    
    ## Declare parâmetros de `Form`
    
    Crie parâmetros de formulário da mesma forma que você faria para `Body` ou `Query`:
    
    {* ../../docs_src/request_forms/tutorial001.py hl[7] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Jan 22 13:41:56 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionBean.java

        }
    
        @Override
        public SpecifiedColumn invokeSpecifyColumn(String columnPropertyPath) {
            return null;
        }
    
        @Override
        public void invokeOrScopeQuery(OrQuery<ConditionBean> orQuery) {
            // do nothing
        }
    
        @Override
        public void invokeOrScopeQueryAndPart(AndQuery<ConditionBean> andQuery) {
            // do nothing
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionBean.java

        }
    
        @Override
        public SpecifiedColumn invokeSpecifyColumn(String columnPropertyPath) {
            return null;
        }
    
        @Override
        public void invokeOrScopeQuery(OrQuery<ConditionBean> orQuery) {
            // do nothing
        }
    
        @Override
        public void invokeOrScopeQueryAndPart(AndQuery<ConditionBean> andQuery) {
            // do nothing
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java

     * Contains query and document ID fields for targeted document deletion.
     */
    public class DeleteForm {
    
        /**
         * Creates a new instance of DeleteForm.
         * This constructor initializes the form for deleting documents from search results
         * in the admin interface with validation rules for query and document identification.
         */
        public DeleteForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java

        /**
         * Constructs a Trans2QueryPathInformation request.
         *
         * @param config the SMB configuration
         * @param filename the path to query information for
         * @param informationLevel the information level to query
         */
        public Trans2QueryPathInformation(final Configuration config, final String filename, final int informationLevel) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

    import org.codelibs.fess.opensearch.config.exentity.DataConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.index.query.BoolQueryBuilder;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Helper class for managing data crawling operations in Fess.
     * This class coordinates the execution of data store crawling processes,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  8. docs/nl/docs/index.md

    * Beide _paden_ hebben `GET` operaties (ook bekend als HTTP _methoden_).
    * Het _pad_ `/items/{item_id}` heeft een _pad parameter_ `item_id` dat een `int` moet zijn.
    * Het _pad_ `/items/{item_id}` heeft een optionele `str` _query parameter_ `q`.
    
    ### Interactieve API documentatie
    
    Ga naar <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionAggregation.java

    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    
    import org.dbflute.exception.InvalidQueryRegisteredException;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.search.aggregations.AbstractAggregationBuilder;
    import org.opensearch.search.aggregations.AggregationBuilders;
    import org.opensearch.search.aggregations.bucket.filter.FilterAggregationBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  10. internal/stmt_store/stmt_store.go

    type ConnPool interface {
    	PrepareContext(ctx context.Context, query string) (*sql.Stmt, error)
    }
    
    // New creates a new Stmt object for executing SQL queries.
    // It caches the Stmt object for future use and handles preparation and error states.
    // Parameters:
    //
    //	ctx: Context for the request, used to carry deadlines, cancellation signals, etc.
    //	key: The key representing the SQL query, used for caching and preparing the statement.
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun Apr 27 06:05:16 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top