Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 97 of 97 for appendable (0.05 seconds)

  1. docs/ko/docs/tutorial/dependencies/index.md

    이 모든 사항을 할 때 코드 반복을 최소화합니다.
    
    ## 첫번째 단계 { #first-steps }
    
    아주 간단한 예제를 봅시다. 너무 간단할 것이기에 지금 당장은 유용하지 않을 수 있습니다.
    
    하지만 이를 통해 **의존성 주입** 시스템이 어떻게 작동하는지에 중점을 둘 것입니다.
    
    ### 의존성 혹은 "디펜더블" 만들기 { #create-a-dependency-or-dependable }
    
    의존성에 집중해 봅시다.
    
    *경로 처리 함수*가 가질 수 있는 모든 매개변수를 갖는 단순한 함수입니다:
    
    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[8:9] *}
    
    이게 다입니다.
    
    **단 두 줄입니다**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  2. docs/ko/docs/_llm-test.md

    * child class
    * sibling class
    * class method
    
    * header
    * headers
    * authorization header
    * `Authorization` header
    * forwarded header
    
    * dependency injection system
    * dependency
    * dependable
    * dependant
    
    * I/O bound
    * CPU bound
    * concurrency
    * parallelism
    * multiprocessing
    
    * env var
    * environment variable
    * `PATH`
    * `PATH` variable
    
    * authentication
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  3. cmd/xl-storage.go

    	if err != nil {
    		return err
    	}
    
    	return s.writeAll(ctx, volume, path, b, true, volumeDir)
    }
    
    // AppendFile - append a byte array at path, if file doesn't exist at
    // path this call explicitly creates it.
    func (s *xlStorage) AppendFile(ctx context.Context, volume string, path string, buf []byte) (err error) {
    	volumeDir, err := s.getVolDir(volume)
    	if err != nil {
    		return err
    	}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 91.7K bytes
    - Click Count (0)
  4. docs/ja/docs/_llm-test.md

    * クラス
    * 基底クラス
    * 親クラス
    * サブクラス
    * 子クラス
    * 兄弟クラス
    * クラスメソッド
    
    * ヘッダー
    * ヘッダー(複数)
    * 認可ヘッダー
    * `Authorization` ヘッダー
    * Forwarded ヘッダー
    
    * 依存性注入システム
    * 依存関係
    * dependable
    * dependant
    
    * I/O バウンド
    * CPU バウンド
    * 同時実行性
    * 並列性
    * マルチプロセッシング
    
    * env var
    * 環境変数
    * `PATH`
    * `PATH` 環境変数
    
    * 認証
    * 認証プロバイダ
    * 認可
    * 認可フォーム
    * 認可プロバイダ
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 13.5K bytes
    - Click Count (0)
  5. cmd/storage-rest-server.go

    	filePath := r.Form.Get(storageRESTFilePath)
    
    	buf := make([]byte, r.ContentLength)
    	_, err := io.ReadFull(r.Body, buf)
    	if err != nil {
    		s.writeErrorResponse(w, err)
    		return
    	}
    	err = s.getStorage().AppendFile(r.Context(), volume, filePath, buf)
    	if err != nil {
    		s.writeErrorResponse(w, err)
    	}
    }
    
    // CreateFileHandler - copy the contents from the request.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue May 27 15:19:03 GMT 2025
    - 45.7K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.11.md

        * Default value for expendable pod priority cutoff in GCP deployment of Cluster Autoscaler changed from 0 to -10.
        * action required: users deploying workloads with priority lower than 0 may want to use priority lower than -10 to avoid triggering scale-up.
    
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 328.4K bytes
    - Click Count (0)
  7. CHANGELOG/CHANGELOG-1.12.md

        * Default value for expendable pod priority cutoff in GCP deployment of Cluster Autoscaler changed from 0 to -10.
        * action required: users deploying workloads with priority lower than 0 may want to use priority lower than -10 to avoid triggering scale-up.
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 293.8K bytes
    - Click Count (0)
Back to Top