Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 551 - 560 of 662 for middle (0.06 seconds)

  1. src/main/resources/fess_label_en.properties

    labels.saml_default_roles=Default Roles
    labels.general_menu_spnego=SPNEGO
    labels.spnego_krb5_conf=Krb5 Config
    labels.spnego_login_conf=Login Config
    labels.spnego_login_client_module=Login Client Module
    labels.spnego_login_server_module=Login Server Module
    labels.spnego_preauth_username=Pre-Auth Username
    labels.spnego_preauth_password=Pre-Auth Password
    labels.spnego_allow_basic=Allow Basic Auth
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/python-types.md

    你可以宣告所有標準的 Python 型別,不只 `str`。
    
    例如你可以用:
    
    * `int`
    * `float`
    * `bool`
    * `bytes`
    
    {* ../../docs_src/python_types/tutorial005_py310.py hl[1] *}
    
    ### `typing` 模組 { #typing-module }
    
    在一些其他情境中,你可能需要從標準程式庫的 `typing` 模組匯入一些東西,比如當你想宣告某個東西可以是「任何型別」時,可以用 `typing` 裡的 `Any`:
    
    ```python
    from typing import Any
    
    
    def some_function(data: Any):
        print(data)
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  3. src/main/java/jcifs/util/transport/Transport.java

                final long firstKey = doSend(request, response, params, timeout);
    
                if (Thread.currentThread() == this.thread) {
                    // we are in the transport thread, ie. on idle disconnecting
                    // this is synchronous operation
                    // This does not handle compound requests
                    synchronized (this.inLock) {
                        final Long peekKey = peekKey();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 27.8K bytes
    - Click Count (0)
  4. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

     * thread, which yields its execution privilege while calling [runTasks], [runNextTask], or
     * [advanceUntil]. These functions don't return until the task threads are all idle.
     *
     * Task threads release their execution privilege in these ways:
     *
     *  * By yielding in [TaskRunner.Backend.coordinatorWait].
     *  * By yielding in [BlockingQueue.poll].
     *  * By completing.
     */
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed May 28 23:28:25 GMT 2025
    - 11.9K bytes
    - Click Count (0)
  5. docs/zh-hant/docs/virtual-environments.md

    ///
    
    確保虛擬環境是啟動的(使用上面的指令),然後運行:
    
    <div class="termy">
    
    ```console
    $ python -m pip install --upgrade pip
    
    ---> 100%
    ```
    
    </div>
    
    /// tip | 注意
    
    有時你在嘗試升級 pip 時,可能會遇到 **`No module named pip`** 的錯誤。
    
    如果發生這種情況,請用下面的指令安裝並升級 pip:
    
    <div class="termy">
    
    ```console
    $ python -m ensurepip --upgrade
    
    ---> 100%
    ```
    
    </div>
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 21K bytes
    - Click Count (0)
  6. docs/zh/docs/virtual-environments.md

    ///
    
    确保虚拟环境是激活的 (使用上面的命令),然后运行:
    
    <div class="termy">
    
    ```console
    $ python -m pip install --upgrade pip
    
    ---> 100%
    ```
    
    </div>
    
    /// tip | 提示
    
    有时在尝试升级 pip 时,你可能会遇到 **`No module named pip`** 错误。
    
    如果发生这种情况,使用下面的命令来安装并升级 pip:
    
    <div class="termy">
    
    ```console
    $ python -m ensurepip --upgrade
    
    ---> 100%
    ```
    
    </div>
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  7. docs/es/docs/python-types.md

    Puedes usar, por ejemplo:
    
    * `int`
    * `float`
    * `bool`
    * `bytes`
    
    {* ../../docs_src/python_types/tutorial005_py310.py hl[1] *}
    
    ### Módulo `typing` { #typing-module }
    
    Para algunos casos adicionales, podrías necesitar importar algunas cosas del módulo `typing` de la standard library, por ejemplo cuando quieres declarar que algo tiene "cualquier tipo", puedes usar `Any` de `typing`:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 11.6K bytes
    - Click Count (1)
  8. docs/pt/docs/python-types.md

    Você pode usar, por exemplo:
    
    * `int`
    * `float`
    * `bool`
    * `bytes`
    
    {* ../../docs_src/python_types/tutorial005_py310.py hl[1] *}
    
    ### Módulo `typing` { #typing-module }
    
    Para alguns casos adicionais, você pode precisar importar alguns itens do módulo padrão `typing`, por exemplo, quando quiser declarar que algo pode ter "qualquer tipo", você pode usar `Any` de `typing`:
    
    ```python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  9. docs/tr/docs/python-types.md

    Örneğin şunları kullanabilirsiniz:
    
    * `int`
    * `float`
    * `bool`
    * `bytes`
    
    {* ../../docs_src/python_types/tutorial005_py310.py hl[1] *}
    
    ### `typing` modülü { #typing-module }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  10. docs/uk/docs/python-types.md

    Ви можете використовувати, наприклад:
    
    * `int`
    * `float`
    * `bool`
    * `bytes`
    
    {* ../../docs_src/python_types/tutorial005_py310.py hl[1] *}
    
    ### Модуль `typing` { #typing-module }
    
    Для деяких додаткових випадків використання може знадобитися імпортувати елементи зі стандартної бібліотеки, модуля `typing`. Наприклад, коли ви хочете оголосити, що щось має «будь-який тип», ви можете використати `Any` з `typing`:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 17.4K bytes
    - Click Count (0)
Back to Top