Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for activado (0.09 sec)

  1. docs/es/docs/how-to/configure-swagger-ui.md

    ## Desactivar el resaltado de sintaxis
    
    Por ejemplo, podrías desactivar el resaltado de sintaxis en Swagger UI.
    
    Sin cambiar la configuración, el resaltado de sintaxis está activado por defecto:
    
    <img src="/img/tutorial/extending-openapi/image02.png">
    
    Pero puedes desactivarlo estableciendo `syntaxHighlight` en `False`:
    
    {* ../../docs_src/configure_swagger_ui/tutorial001.py hl[3] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. docs/es/docs/deployment/https.md

    # Sobre HTTPS
    
    Es fácil asumir que HTTPS es algo que simplemente está "activado" o no.
    
    Pero es mucho más complejo que eso.
    
    /// tip | Consejo
    
    Si tienes prisa o no te importa, continúa con las siguientes secciones para ver instrucciones paso a paso para configurar todo con diferentes técnicas.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 13K bytes
    - Viewed (0)
  3. docs/es/docs/virtual-environments.md

    ```
    
    ## Qué Significa Activar un Entorno Virtual
    
    Cuando activas un entorno virtual, por ejemplo con:
    
    //// tab | Linux, macOS
    
    <div class="termy">
    
    ```console
    $ source .venv/bin/activate
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ .venv\Scripts\Activate.ps1
    ```
    
    </div>
    
    ////
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/mdo/profiles.mdo

          <description><![CDATA[
            This is an activator which will detect an operating system's attributes in order to activate
            its profile.
          ]]></description>
          <fields>
            <field>
              <name>name</name>
              <version>1.0.0</version>
              <type>String</type>
              <description>The name of the OS to be used to activate a profile</description>
            </field>
            <field>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 22 11:03:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  5. api/maven-api-settings/src/main/mdo/settings.mdo

          <description>
            This is an activator which will detect an operating system's attributes in order to activate
            its profile.
          </description>
          <fields>
            <field>
              <name>name</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>
                The name of the OS to be used to activate a profile.
              </description>
            </field>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun May 18 09:15:56 UTC 2025
    - 33.8K bytes
    - Viewed (0)
  6. logger/sql_test.go

    	}{
    		{
    			SQL:           "create table users (name, age, height, actived, bytes, create_at, update_at, deleted_at, email, role, pass) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
    			NumericRegexp: nil,
    			Vars:          []interface{}{"jinzhu", 1, 999.99, true, []byte("12345"), tt, &tt, nil, "w@g.\"com", myrole, pwd},
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. docs/en/docs/virtual-environments.md

    /// details | `.venv` or other name
    
    You could create the virtual environment in a different directory, but there's a convention of calling it `.venv`.
    
    ///
    
    ## Activate the Virtual Environment { #activate-the-virtual-environment }
    
    Activate the new virtual environment so that any Python command you run or package you install uses it.
    
    /// tip
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  8. docs/ru/docs/virtual-environments.md

    ///
    
    //// tab | Linux, macOS
    
    <div class="termy">
    
    ```console
    $ source .venv/bin/activate
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ .venv\Scripts\Activate.ps1
    ```
    
    </div>
    
    ////
    
    //// tab | Windows Bash
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Dec 10 11:34:19 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/FileProfileActivator.java

                    if (logger.isDebugEnabled()) {
                        logger.debug("Failed to interpolate missing file location for profile activator: " + fileString, e);
                    } else {
                        logger.warn("Failed to interpolate missing file location for profile activator: " + fileString
                                + ", enable verbose output (-X) for more details");
                    }
                }
            }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  10. docs/es/docs/tutorial/request-forms-and-files.md

    Asegúrate de crear un [entorno virtual](../virtual-environments.md){.internal-link target=_blank}, actívalo y luego instálalo, por ejemplo:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## Importar `File` y `Form`
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py39.py hl[3] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top