Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 721 - 730 of 944 for consume (0.09 seconds)

  1. cmd/metacache-entries.go

    					if other.isDir() {
    						if serverDebugLog {
    							console.Debugln("mergeEntryChannels: discarding directory", other.name, "for object", best.name)
    						}
    						// Discard the directory.
    						if err := selectFrom(otherIdx); err != nil {
    							return err
    						}
    						continue
    					}
    					// Replace directory with object.
    					if serverDebugLog {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Aug 08 15:29:58 GMT 2024
    - 24.1K bytes
    - Click Count (0)
  2. BUILDING.md

    
    This artifact can be resolved by the consumer project as shown in the example below:
    
    ```
    dependencies {
      //add the test fixtures of `:providing-project` to testImplementation configuration.
      testImplementation(testArtifact(project(":fixture-providing-project')))
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 23 07:45:59 GMT 2021
    - 6.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java

            // Test printStackTrace doesn't throw exception
            DictionaryExpiredException exception = new DictionaryExpiredException();
    
            try {
                // Redirect to ByteArrayOutputStream to avoid console output
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                java.io.PrintStream ps = new java.io.PrintStream(baos);
                exception.printStackTrace(ps);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  4. docs/ko/docs/advanced/templates.md

    설정을 쉽게 할 수 있는 유틸리티가 있으며, 이를 **FastAPI** 애플리케이션에서 직접 사용할 수 있습니다(Starlette 제공).
    
    ## 의존성 설치 { #install-dependencies }
    
    [가상 환경](../virtual-environments.md)을 생성하고, 활성화한 후 `jinja2`를 설치해야 합니다:
    
    <div class="termy">
    
    ```console
    $ pip install jinja2
    
    ---> 100%
    ```
    
    </div>
    
    ## `Jinja2Templates` 사용하기 { #using-jinja2templates }
    
    * `Jinja2Templates`를 가져옵니다.
    * 나중에 재사용할 수 있는 `templates` 객체를 생성합니다.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  5. docs/zh/docs/_llm-test.md

    ```bash
    # 向宇宙打印问候
    echo "Hello universe"
    ```
    
    ...以及一个控制台代码示例...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting server
            Searching for package file structure
    ```
    
    ...以及另一个控制台代码示例...
    
    ```console
    // 创建目录 "code"
    $ mkdir code
    // 切换到该目录
    $ cd code
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  6. cmd/global-heal.go

    	"github.com/minio/minio/internal/bucket/versioning"
    	"github.com/minio/minio/internal/color"
    	"github.com/minio/minio/internal/config/storageclass"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/console"
    	"github.com/minio/pkg/v3/wildcard"
    	"github.com/minio/pkg/v3/workers"
    )
    
    const (
    	bgHealingUUID = "0000-0000-0000-0000"
    )
    
    // NewBgHealSequence creates a background healing sequence
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Apr 04 13:49:12 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  7. docs/zh/docs/advanced/templates.md

    Flask 等工具使用的 Jinja2 是最用的模板引擎。
    
    在 Starlette 的支持下,**FastAPI** 应用可以直接使用工具轻易地配置 Jinja2。
    
    ## 安装依赖项 { #install-dependencies }
    
    确保你创建一个[虚拟环境](../virtual-environments.md),激活它,并安装 `jinja2`:
    
    <div class="termy">
    
    ```console
    $ pip install jinja2
    
    ---> 100%
    ```
    
    </div>
    
    ## 使用 `Jinja2Templates` { #using-jinja2templates }
    
    * 导入 `Jinja2Templates`
    * 创建可复用的 `templates` 对象
    * 在返回模板的*路径操作*中声明 `Request` 参数
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 3K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle

            }
          } else {
            tag jobName
            value 'Job Name', jobName
          }
    
          tag 'CI'
          link 'CI Build', buildUrl
          link 'GCP Upload', "https://console.cloud.google.com/storage/browser/_details/elasticsearch-ci-artifacts/jobs/${URLEncoder.encode(jobName, "UTF-8")}/build/${buildNumber}.tar.bz2"
          value 'Job Number', buildNumber
          if (jobBranch) {
            tag jobBranch
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 21 20:40:34 GMT 2021
    - 4.6K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/advanced/async-tests.md

    檔案 `test_main.py` 會包含針對 `main.py` 的測試,現在可能像這樣:
    
    {* ../../docs_src/async_tests/app_a_py310/test_main.py *}
    
    ## 執行 { #run-it }
    
    如常執行測試:
    
    <div class="termy">
    
    ```console
    $ pytest
    
    ---> 100%
    ```
    
    </div>
    
    ## 詳解 { #in-detail }
    
    標記 `@pytest.mark.anyio` 告訴 pytest 這個測試函式應以非同步方式執行:
    
    {* ../../docs_src/async_tests/app_a_py310/test_main.py hl[7] *}
    
    /// tip
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  10. docs/es/docs/_llm-test.md

    ```
    
    ...y un ejemplo de código de consola...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting server
            Searching for package file structure
    ```
    
    ...y otro ejemplo de código de consola...
    
    ```console
    // Crea un directorio "Code"
    $ mkdir code
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 12.2K bytes
    - Click Count (0)
Back to Top