Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 331 - 340 of 409 for apis (0.02 seconds)

  1. cmd/api-response_test.go

    Menno Finlay-Smits <******@****.***> 1761278719 +1300
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 24 04:05:19 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  2. docs/ko/docs/tutorial/security/index.md

    "OpenID"라는 명세도 있었습니다. 이는 **OpenID Connect**와 같은 문제를 해결하려고 했지만, OAuth2를 기반으로 하지 않았습니다.
    
    따라서 완전히 별도의 추가 시스템이었습니다.
    
    요즘에는 그다지 인기 있거나 사용되지는 않습니다.
    
    ## OpenAPI { #openapi }
    
    OpenAPI(이전에는 Swagger로 알려짐)는 API를 구축하기 위한 공개 명세입니다(현재 Linux Foundation의 일부).
    
    **FastAPI**는 **OpenAPI**를 기반으로 합니다.
    
    이 덕분에 여러 자동 대화형 문서 인터페이스, 코드 생성 등과 같은 기능을 사용할 수 있습니다.
    
    OpenAPI에는 여러 보안 "scheme"을 정의하는 방법이 있습니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Jan 16 11:54:01 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  3. mockwebserver-junit5/api/mockwebserver3-junit5.api

    Jesse Wilson <******@****.***> 1750245197 -0400
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Jun 18 11:13:17 GMT 2025
    - 114 bytes
    - Click Count (0)
  4. okhttp-coroutines/api/okhttp-coroutines.api

    Jesse Wilson <******@****.***> 1713403478 -0400
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Apr 18 01:24:38 GMT 2024
    - 163 bytes
    - Click Count (0)
  5. okhttp-dnsoverhttps/api/okhttp-dnsoverhttps.api

    Jesse Wilson <******@****.***> 1645975423 -0500
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 27 15:23:43 GMT 2022
    - 1.5K bytes
    - Click Count (0)
  6. cmd/api-errors_test.go

    		}
    	}
    }
    
    // Check if an API error is properly defined
    func TestAPIErrCodeDefinition(t *testing.T) {
    	for errAPI := ErrNone + 1; errAPI < apiErrCodeEnd; errAPI++ {
    		errCode, ok := errorCodes[errAPI]
    		if !ok {
    			t.Fatal(errAPI, "error code is not defined in the API error code table")
    		}
    		if errCode.Code == "" {
    			t.Fatal(errAPI, "error code has an empty XML code")
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Apr 09 14:28:39 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  7. cmd/api-headers.go

    			// avoiding S3’s heuristic-driven issues.
    			//
    			// For MinIO developers, decode S3 metadata with mime.WordDecoder, validate outputs,
    			// report encoding bugs to AWS, and use ASCII-only metadata to ensure reliable S3 API
    			// compatibility.
    			if needsMimeEncoding(v) {
    				// see https://github.com/golang/go/blob/release-branch.go1.24/src/net/mail/message.go#L325
    				if strings.ContainsAny(v, "\"#$%&'(),.:;<>@[]^`{|}~") {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  8. okhttp-logging-interceptor/api/logging-interceptor.api

    Jesse Wilson <******@****.***> 1759850146 -0400
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Oct 07 15:15:46 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  9. okhttp-brotli/api/okhttp-brotli.api

    Yuri Schimke <******@****.***> 1753986872 +0000
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Jul 31 18:34:32 GMT 2025
    - 428 bytes
    - Click Count (0)
  10. cmd/api-errors.go

    	if apiErr.Code == "InternalError" {
    		// Make sure to log the errors which we cannot translate
    		// to a meaningful S3 API errors. This is added to aid in
    		// debugging unexpected/unhandled errors.
    		internalLogIf(ctx, err)
    	}
    
    	return apiErr
    }
    
    // getAPIError provides API Error for input API error code.
    func getAPIError(code APIErrorCode) APIError {
    	if apiErr, ok := errorCodes[code]; ok {
    		return apiErr
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Apr 16 07:34:24 GMT 2025
    - 93K bytes
    - Click Count (3)
Back to Top