Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 234 for 33 (0.01 seconds)

  1. docs/tr/docs/how-to/custom-docs-ui-assets.md

    * `swagger_css_url`: Swagger UI dokümanlarınızın HTML'inin **CSS** dosyasını alacağı URL. Bu, özel CDN URL'idir.
    
    ReDoc için de benzer şekilde...
    
    {* ../../docs_src/custom_docs_ui/tutorial001_py310.py hl[2:6,11:19,22:24,27:33] *}
    
    /// tip | İpucu
    
    `swagger_ui_redirect` için olan *path operation*, OAuth2 kullandığınızda yardımcı olması için vardır.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    Jayanth Krishnamurthy ******@****.*** <******@****.***> 1730236297 -0500
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Nov 21 18:27:17 GMT 2024
    - 51.7K bytes
    - Click Count (0)
  3. helm-releases/minio-4.0.2.tgz

    Description of the configuration parameters used above - - `buckets[].name` - name of the bucket to create, must be a string with length > 0 - `buckets[].policy` - can be one of none|download|upload|public - `buckets[].purge` - purge if bucket exists already 33# Create policies after install Install the chart, specifying the policies you want to create after install: ```bash helm install --set policies[0].name=mypolicy,policies[0].statements[0].resources[0]='arn:aws:s3:::bucket1',policies[0].statements[0]...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon May 09 04:25:47 GMT 2022
    - 18K bytes
    - Click Count (0)
  4. helm-releases/minio-4.0.3.tgz

    Description of the configuration parameters used above - - `buckets[].name` - name of the bucket to create, must be a string with length > 0 - `buckets[].policy` - can be one of none|download|upload|public - `buckets[].purge` - purge if bucket exists already 33# Create policies after install Install the chart, specifying the policies you want to create after install: ```bash helm install --set policies[0].name=mypolicy,policies[0].statements[0].resources[0]='arn:aws:s3:::bucket1',policies[0].statements[0]...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Jul 08 06:16:22 GMT 2022
    - 18K bytes
    - Click Count (0)
  5. helm-releases/minio-4.0.11.tgz

    Description of the configuration parameters used above - - `buckets[].name` - name of the bucket to create, must be a string with length > 0 - `buckets[].policy` - can be one of none|download|upload|public - `buckets[].purge` - purge if bucket exists already 33# Create policies after install Install the chart, specifying the policies you want to create after install: ```bash helm install --set policies[0].name=mypolicy,policies[0].statements[0].resources[0]='arn:aws:s3:::bucket1',policies[0].statements[0]...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Aug 07 05:41:47 GMT 2022
    - 19.2K bytes
    - Click Count (0)
  6. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 19.6K bytes
    - Click Count (0)
  7. docs/ko/docs/advanced/stream-data.md

    바이너리 데이터를 스트리밍할 때는 반환 타입 애너테이션을 굳이 선언할 필요가 없습니다.
    
    FastAPI는 데이터를 Pydantic으로 JSON으로 변환하거나 어떤 방식으로든 직렬화하지 않으므로, 이 경우 타입 애너테이션은 편집기나 도구를 위한 용도일 뿐이며 FastAPI에서는 사용되지 않습니다.
    
    {* ../../docs_src/stream_data/tutorial001_py310.py ln[32:35] hl[33] *}
    
    이는 곧 `StreamingResponse`를 사용할 때 타입 애너테이션과 무관하게, 전송 기준에 맞춰 바이트 데이터를 생성하고 인코딩할 자유와 책임이 여러분에게 있음을 의미합니다. 🤓
    
    ### 바이트 스트리밍 { #stream-bytes }
    
    주요 사용 사례 중 하나는 문자열 대신 `bytes`를 스트리밍하는 것입니다. 물론 그렇게 할 수 있습니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  8. guava/src/com/google/common/collect/Range.java

       * equal to one another, despite the fact that they each contain precisely the same set of values.
       * Similarly, empty ranges are not equal unless they have exactly the same representation, so
       * {@code [3..3)}, {@code (3..3]}, {@code (4..4]} are all unequal.
       */
      @Override
      public boolean equals(@Nullable Object object) {
        if (object instanceof Range) {
          Range<?> other = (Range<?>) object;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 28.3K bytes
    - Click Count (0)
  9. docs/ko/docs/advanced/openapi-callbacks.md

    이제 *여러분의 API 경로 처리 데코레이터*에서 `callbacks` 파라미터를 사용해, 그 콜백 라우터의 `.routes` 속성(실제로는 routes/*경로 처리*의 `list`)을 전달합니다:
    
    {* ../../docs_src/openapi_callbacks/tutorial001_py310.py hl[33] *}
    
    /// tip | 팁
    
    `callback=`에 라우터 자체(`invoices_callback_router`)를 넘기는 것이 아니라, `invoices_callback_router.routes`처럼 `.routes` 속성을 넘긴다는 점에 주목하세요.
    
    ///
    
    ### 문서 확인하기 { #check-the-docs }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  10. cmd/object-api-datatypes_gen.go

    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z *ObjectInfo) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 33
    	// string "Bucket"
    	o = append(o, 0xde, 0x0, 0x21, 0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74)
    	o = msgp.AppendString(o, z.Bucket)
    	// string "Name"
    	o = append(o, 0xa4, 0x4e, 0x61, 0x6d, 0x65)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 71.7K bytes
    - Click Count (0)
Back to Top