- Sort Score
- Num 10 results
- Language All
Results 4051 - 4060 of 4,250 for inst (0.07 seconds)
-
docs/es/docs/advanced/custom-response.md
Puedes devolverla directamente. Acepta los siguientes parámetros: * `content` - Un `str` o `bytes`. * `status_code` - Un código de estado HTTP `int`. * `headers` - Un `dict` de strings. * `media_type` - Un `str` que da el media type. Por ejemplo, `"text/html"`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 11.6K bytes - Click Count (0) -
docs/en/docs/advanced/settings.md
Next it will convert and validate the data. So, when you use that `settings` object, you will have data of the types you declared (e.g. `items_per_user` will be an `int`). ### Use the `settings` { #use-the-settings } Then you can use the new `settings` object in your application: {* ../../docs_src/settings/tutorial001_py310.py hl[18:20] *} ### Run the server { #run-the-server }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 10.9K bytes - Click Count (0) -
docs/ko/docs/advanced/settings.md
그 다음, 해당 `Settings` 클래스의 인스턴스(여기서는 `settings` 객체)를 생성하면 Pydantic이 대소문자를 구분하지 않고 환경 변수를 읽습니다. 따라서 대문자 변수 `APP_NAME`도 `app_name` 속성에 대해 읽힙니다. 이후 데이터를 변환하고 검증합니다. 그래서 그 `settings` 객체를 사용할 때는 선언한 타입의 데이터를 갖게 됩니다(예: `items_per_user`는 `int`가 됩니다). ### `settings` 사용하기 { #use-the-settings } 이제 애플리케이션에서 새 `settings` 객체를 사용할 수 있습니다: {* ../../docs_src/settings/tutorial001_py310.py hl[18:20] *} ### 서버 실행하기 { #run-the-server }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 11.9K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/settings.md
如果你想要可以直接複製貼上的範例,先別用這個,請改用本文最後一個範例。 /// 接著,當你建立該 `Settings` 類別的實例(此處為 `settings` 物件)時,Pydantic 會以不區分大小寫的方式讀取環境變數,因此,即使環境變數是大寫的 `APP_NAME`,也會被讀入屬性 `app_name`。 然後它會轉換並驗證資料。因此,當你使用該 `settings` 物件時,你會得到你宣告的型別的資料(例如 `items_per_user` 會是 `int`)。 ### 使用 `settings` { #use-the-settings } 接著你可以在應用程式中使用新的 `settings` 物件: {* ../../docs_src/settings/tutorial001_py310.py hl[18:20] *} ### 執行伺服器 { #run-the-server }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 10.3K bytes - Click Count (0) -
cmd/sftp-server.go
} return filteredAlgos } func startSFTPServer(args []string) { var ( port int publicIP string sshPrivateKey string userCaKeyFile string disablePassAuth bool ) allowPubKeys := supportedPubKeyAuthAlgos allowKexAlgos := preferredKexAlgos
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 16.5K bytes - Click Count (0) -
internal/rest/client.go
} return req, nil } type respBodyMonitor struct { io.ReadCloser expectTimeouts bool errorStatusOnce sync.Once } func (r *respBodyMonitor) Read(p []byte) (n int, err error) { n, err = r.ReadCloser.Read(p) r.errorStatus(err) return n, err } func (r *respBodyMonitor) Close() (err error) { err = r.ReadCloser.Close() r.errorStatus(err) return err }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 14.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* </ul> */ public class Suggester { private static final Logger logger = LogManager.getLogger(Suggester.class); /** The expected number of indices for an alias. */ private static final int EXPECTED_INDEX_COUNT = 1; /** The OpenSearch client. */ protected final Client client; /** The suggest settings. */ protected final SuggestSettings suggestSettings; /** The reading converter. */Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 21.6K bytes - Click Count (3) -
helm-releases/minio-5.0.3.tgz
template "minio.fullname" . }}-prometheus key: token {{- end }} {{- end }} minio/templates/statefulset.yaml {{- if eq .Values.mode "distributed" }} {{ $poolCount := .Values.pools | int }} {{ $nodeCount := .Values.replicas | int }} {{ $replicas := mul $poolCount $nodeCount }} {{ $drivesPerNode := .Values.drivesPerNode | int }} {{ $scheme := "http" }} {{- if .Values.tls.enabled }} {{ $scheme = "https" }} {{ end }} {{ $mountPath := .Values.mountPath }} {{ $bucketRoot := or ($.Values.bucketRoot) ($.Values.mountPath)...
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Dec 19 08:53:02 GMT 2022 - 20.3K bytes - Click Count (0) -
helm-releases/minio-5.0.4.tgz
template "minio.fullname" . }}-prometheus key: token {{- end }} {{- end }} minio/templates/statefulset.yaml {{- if eq .Values.mode "distributed" }} {{ $poolCount := .Values.pools | int }} {{ $nodeCount := .Values.replicas | int }} {{ $replicas := mul $poolCount $nodeCount }} {{ $drivesPerNode := .Values.drivesPerNode | int }} {{ $scheme := "http" }} {{- if .Values.tls.enabled }} {{ $scheme = "https" }} {{ end }} {{ $mountPath := .Values.mountPath }} {{ $bucketRoot := or ($.Values.bucketRoot) ($.Values.mountPath)...
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Dec 23 20:29:40 GMT 2022 - 20.3K bytes - Click Count (0) -
helm-releases/minio-5.0.5.tgz
template "minio.fullname" . }}-prometheus key: token {{- end }} {{- end }} minio/templates/statefulset.yaml {{- if eq .Values.mode "distributed" }} {{ $poolCount := .Values.pools | int }} {{ $nodeCount := .Values.replicas | int }} {{ $replicas := mul $poolCount $nodeCount }} {{ $drivesPerNode := .Values.drivesPerNode | int }} {{ $scheme := "http" }} {{- if .Values.tls.enabled }} {{ $scheme = "https" }} {{ end }} {{ $mountPath := .Values.mountPath }} {{ $bucketRoot := or ($.Values.bucketRoot) ($.Values.mountPath)...
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Feb 03 20:54:02 GMT 2023 - 20.3K bytes - Click Count (0)