- Sort Score
- Num 10 results
- Language All
Results 1191 - 1200 of 1,732 for intent (0.04 seconds)
-
helm-releases/minio-5.1.0.tgz
| quote }} {{- end }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.extraContainers }} {{- if eq (typeOf .) "string" }} {{- tpl . $ | nindent 8 }} {{- else }} {{- toYaml . | nindent 8 }} {{- end }} {{- end }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- include "minio.imagePullSecrets" . | indent 6 }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{-...Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Mar 03 18:49:37 GMT 2024 - 21.3K bytes - Click Count (0) -
helm-releases/minio-5.2.0.tgz
| quote }} {{- end }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.extraContainers }} {{- if eq (typeOf .) "string" }} {{- tpl . $ | nindent 8 }} {{- else }} {{- toYaml . | nindent 8 }} {{- end }} {{- end }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- include "minio.imagePullSecrets" . | indent 6 }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{-...Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Apr 28 10:14:37 GMT 2024 - 21.7K bytes - Click Count (0) -
docs/ko/docs/advanced/json-base64-bytes.md
``` /// tip | 팁 `aGVsbG8=`는 `hello`의 base64 인코딩입니다. /// 그러면 Pydantic이 base64 문자열을 디코딩하여 모델의 `data` 필드에 원래 바이트를 제공합니다. 다음과 같은 응답을 받게 됩니다: ```json { "description": "Some data", "content": "hello" } ``` ## 출력 데이터용 Pydantic `bytes` { #pydantic-bytes-for-output-data } 출력 데이터에도 모델 설정에서 `ser_json_bytes`와 함께 `bytes` 필드를 사용할 수 있습니다. 그러면 Pydantic이 JSON 응답을 생성할 때 바이트를 base64로 “직렬화”합니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:56:39 GMT 2026 - 2.9K bytes - Click Count (0) -
docs/tr/docs/tutorial/response-status-code.md
`status_code` parametresi, HTTP status code'u içeren bir sayı alır. /// info | Bilgi Alternatif olarak `status_code`, Python'un [`http.HTTPStatus`](https://docs.python.org/3/library/http.html#http.HTTPStatus)'ı gibi bir `IntEnum` da alabilir. /// Bu sayede: * Response'da o status code döner. * OpenAPI şemasında (dolayısıyla kullanıcı arayüzlerinde de) bu şekilde dokümante edilir:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4.4K bytes - Click Count (0) -
doc/README.md
[net/http] # package link [#12345](/issue/12345) # GitHub issues [CL 6789](/cl/6789) # Gerrit changelists To preview `next` content in merged form using a local instance of the website, run: ``` go run golang.org/x/website/cmd/golangorg@latest -goroot=.. ``` Then open http://localhost:6060/doc/next. Refresh the page to see your latest edits.
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Jul 22 17:55:04 GMT 2024 - 3.1K bytes - Click Count (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java
assertTrue(passwordValue instanceof char[], "Password should be stored as char[]"); assertArrayEquals("password123".toCharArray(), (char[]) passwordValue, "Password content should match"); } @Test @DisplayName("Test secure password wipe") void testSecureWipePassword() throws Exception { String testPassword = "testPassword123";Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 8.5K bytes - Click Count (0) -
docs/de/docs/_llm-test.md
Dies ist ein Codeschnipsel: `foo`. Und dies ist ein weiteres Codeschnipsel: `bar`. Und noch eins: `baz quux`. //// //// tab | Info Der Inhalt von Codeschnipseln sollte unverändert bleiben. Siehe Abschnitt `### Content of code snippets` im allgemeinen Prompt in `scripts/translate.py`. //// ## Anführungszeichen { #quotes } //// tab | TestCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 12.3K bytes - Click Count (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/Android10Platform.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package okhttp3.internal.platform import android.annotation.SuppressLint import android.content.Context import android.os.Build import android.os.StrictMode import android.security.NetworkSecurityPolicy import android.util.CloseGuard import android.util.Log import javax.net.ssl.SSLContext
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Jul 20 11:25:50 GMT 2025 - 4.5K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/json-base64-bytes.md
} ``` /// tip `aGVsbG8=` 是 `hello` 的 base64 編碼。 /// 接著 Pydantic 會將該 base64 字串解碼,並在模型的 `data` 欄位中提供原始位元組。 你會收到類似以下的回應: ```json { "description": "Some data", "content": "hello" } ``` ## Pydantic `bytes` 用於輸出資料 { #pydantic-bytes-for-output-data } 你也可以在模型設定中搭配 `ser_json_bytes` 使用 `bytes` 欄位來處理輸出資料;當產生 JSON 回應時,Pydantic 會將位元組以 base64 進行序列化。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:33:04 GMT 2026 - 2.4K bytes - Click Count (0) -
tests/test_security_http_bearer_description.py
"get": { "responses": { "200": { "description": "Successful Response", "content": {"application/json": {"schema": {}}}, } }, "summary": "Read Current User", "operationId": "read_current_user_users_me_get",
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 08 10:18:38 GMT 2026 - 2.5K bytes - Click Count (0)