Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 694 for defines (0.14 sec)

  1. docs/es/docs/advanced/openapi-webhooks.md

    Esto normalmente se llama un **webhook**.
    
    ## Pasos de los webhooks
    
    El proceso normalmente es que **tú defines** en tu código cuál es el mensaje que enviarás, el **body de la request**.
    
    También defines de alguna manera en qué **momentos** tu aplicación enviará esas requests o eventos.
    
    Y **tus usuarios** definen de alguna manera (por ejemplo en un panel web en algún lugar) el **URL** donde tu aplicación debería enviar esas requests.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. internal/stmt_store/stmt_store.go

    	Delete(key string)
    }
    
    // defaultMaxSize defines the default maximum capacity of the cache.
    // Its value is the maximum value of the int64 type, which means that when the cache size is not specified,
    // the cache can theoretically store as many elements as possible.
    // (1 << 63) - 1 is the maximum value that an int64 type can represent.
    const (
    	defaultMaxSize = math.MaxInt
    	// defaultTTL defines the default time-to-live (TTL) for each cache entry.
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun Apr 27 06:05:16 UTC 2025
    - 6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        /**
         * LDAP base DN (Distinguished Name) for user searches.
         * Defines the root of the LDAP directory tree for user lookups.
         */
        @Size(max = 1000)
        public String ldapBaseDn;
    
        /**
         * LDAP filter for finding user accounts.
         * Defines the search filter used to locate user accounts in LDAP.
         */
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/index.md

    That's what makes it possible to have multiple automatic interactive documentation interfaces, code generation, etc.
    
    OpenAPI has a way to define multiple security "schemes".
    
    By using them, you can take advantage of all these standard-based tools, including these interactive documentation systems.
    
    OpenAPI defines the following security schemes:
    
    * `apiKey`: an application specific key that can come from:
        * A query parameter.
        * A header.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheScope.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.smb2.lease;
    
    /**
     * Defines the scope of directory caching for SMB3 directory leasing
     */
    public enum DirectoryCacheScope {
        /**
         * Cache only direct children of the directory
         */
        IMMEDIATE_CHILDREN,
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  6. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Parser.java

     * under the License.
     */
    package org.apache.maven.api.cli;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Defines the contract for parsing Maven command-line arguments and creating an execution or invoker requests.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface Parser {
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jan 31 20:56:58 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/create/CreateContextRequest.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.smb2.create;
    
    import jcifs.Encodable;
    
    /**
     * SMB2 Create Context request interface. This interface defines the contract for
     * context data included in SMB2 Create requests.
     *
     * @author mbechler
     *
     */
    public interface CreateContextRequest extends Encodable {
    
        /**
         * Get the name of this create context.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnsh/ShellOptions.java

     * under the License.
     */
    package org.apache.maven.api.cli.mvnsh;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.cli.Options;
    
    /**
     * Defines the options specific to the Maven Shell tool.
     * This interface extends the general {@link Options} interface, adding shell-specific configuration options.
     *
     * @since 4.0.0
     */
    @Experimental
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbRenewableCredentials.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.smb;
    
    /**
     * Interface for renewable SMB credentials.
     *
     * This interface defines methods for credentials that can be
     * automatically renewed during long-running operations.
     *
     * @author mbechler
     */
    public interface SmbRenewableCredentials extends CredentialsInternal {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  10. docs/es/docs/tutorial/cookie-params.md

    # Parámetros de Cookie
    
    Puedes definir parámetros de Cookie de la misma manera que defines los parámetros `Query` y `Path`.
    
    ## Importar `Cookie`
    
    Primero importa `Cookie`:
    
    {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[3] *}
    
    ## Declarar parámetros de `Cookie`
    
    Luego declara los parámetros de cookie usando la misma estructura que con `Path` y `Query`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 17:46:44 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top