- Sort Score
- Num 10 results
- Language All
Results 281 - 290 of 934 for scheme (0.06 seconds)
-
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
public static final String LABELS_NUM = "{labels.num}"; /** The key of the message: Page Number */ public static final String LABELS_PN = "{labels.pn}"; /** The key of the message: Scheme */ public static final String LABELS_PROTOCOL_SCHEME = "{labels.protocolScheme}"; /** The key of the message: Purge Bots */ public static final String LABELS_PURGE_BY_BOTS = "{labels.purgeByBots}";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 172.6K bytes - Click Count (0) -
docs/ko/docs/tutorial/security/index.md
**FastAPI**는 **OpenAPI**를 기반으로 합니다. 이 덕분에 여러 자동 대화형 문서 인터페이스, 코드 생성 등과 같은 기능을 사용할 수 있습니다. OpenAPI에는 여러 보안 "scheme"을 정의하는 방법이 있습니다. 이를 사용하면 이러한 대화형 문서 시스템을 포함해, 표준 기반 도구들을 모두 활용할 수 있습니다. OpenAPI는 다음 보안 scheme들을 정의합니다: * `apiKey`: 다음에서 전달될 수 있는 애플리케이션 전용 키: * 쿼리 파라미터 * 헤더 * 쿠키 * `http`: 표준 HTTP 인증 시스템, 예: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) -
docs/tr/docs/advanced/security/http-basic-auth.md
## Basit HTTP Basic Auth { #simple-http-basic-auth } * `HTTPBasic` ve `HTTPBasicCredentials` import edin. * `HTTPBasic` kullanarak bir "`security` scheme" oluşturun. * *path operation*’ınızda bir dependency ile bu `security`’yi kullanın. * Bu, `HTTPBasicCredentials` tipinde bir nesne döndürür: * İçinde gönderilen `username` ve `password` bulunur.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 5.5K bytes - Click Count (0) -
cmd/admin-handlers-users_test.go
ServerTypeDescription: fmt.Sprintf("%s%s", c.serverType, etcdStr), withEtcdBackend: withEtcdBackend, } } func (s *TestSuiteIAM) iamSetup(c *check) { var err error // strip url scheme from endpoint s.endpoint = strings.TrimPrefix(s.endPoint, "http://") if s.secure { s.endpoint = strings.TrimPrefix(s.endPoint, "https://") } s.adm, err = madmin.New(s.endpoint, s.accessKey, s.secretKey, s.secure)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Oct 15 17:00:45 GMT 2025 - 50.6K bytes - Click Count (0) -
internal/config/policy/opa/config.go
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 5.3K bytes - Click Count (0) -
docs/tr/docs/tutorial/security/index.md
**FastAPI**, **OpenAPI** tabanlıdır. Bu sayede birden fazla otomatik etkileşimli dokümantasyon arayüzü, code generation vb. mümkün olur. OpenAPI, birden fazla security "scheme" tanımlamanın bir yolunu sunar. Bunları kullanarak, etkileşimli dokümantasyon sistemleri de dahil olmak üzere tüm bu standart tabanlı araçlardan faydalanabilirsiniz. OpenAPI şu security scheme’lerini tanımlar:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 05 15:43:38 GMT 2026 - 5K bytes - Click Count (0) -
internal/config/policy/plugin/config.go
if err = args.Validate(); err != nil { return args, err } return args, nil } // New - initializes Authorization Management Plugin. func New(args Args) *AuthZPlugin { if args.URL == nil || args.URL.Scheme == "" && args.AuthToken == "" { return nil } return &AuthZPlugin{ args: args, client: &http.Client{Transport: args.Transport}, } }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 5.8K bytes - Click Count (0) -
docs/uk/docs/advanced/security/http-basic-auth.md
Потім, коли ви введете це ім'я користувача та пароль, браузер автоматично надішле їх у заголовку. ## Простий HTTP Basic Auth { #simple-http-basic-auth } - Імпортуйте `HTTPBasic` і `HTTPBasicCredentials`. - Створіть «`security` scheme» за допомогою `HTTPBasic`. - Використайте цей `security` як залежність у вашій операції шляху. - Він повертає об'єкт типу `HTTPBasicCredentials`: - Він містить надіслані `username` і `password`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 7.6K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2ExchangeCodec.kt
val host = request.header("Host") if (host != null) { result.add(Header(TARGET_AUTHORITY, host)) // Optional. } result.add(Header(TARGET_SCHEME, request.url.scheme)) for (i in 0 until headers.size) { // header names must be lowercase. val name = headers.name(i).lowercase(Locale.US) if (name !in HTTP_2_SKIPPED_REQUEST_HEADERS ||
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jul 29 21:11:09 GMT 2025 - 7K bytes - Click Count (0) -
docs/debugging/s3-check-md5/main.go
if e != nil { log.Fatalln("Unable to parse --modified-since:", e) } } u, err := url.Parse(endpoint) if err != nil { log.Fatalln(err) } secure := strings.EqualFold(u.Scheme, "https") transport, err := minio.DefaultTransport(secure) if err != nil { log.Fatalln(err) } if insecure { // skip TLS verification transport.TLSClientConfig.InsecureSkipVerify = true }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 6.3K bytes - Click Count (0)