- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 194 for major (0.07 sec)
-
helm-releases/minio-5.3.0.tgz
"minio.imagePullSecrets" . | indent 6 }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }} {{- if and (gt $replicas 1) (ge .Capabilities.KubeVersion.Major "1") (ge .Capabilities.KubeVersion.Minor "19") }} {{- with .Values.topologySpreadConstr }} topologySpreadConstr: {{- toYaml . | nindent 8 }} {{- end }} {{- end }} volumes: - name: minio-user secret: secretName: {{ template "minio.secretName" . }} {{-...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 11 12:21:05 UTC 2024 - 21.7K bytes - Viewed (0) -
api/go1.2.txt
pkg syscall (freebsd-386-cgo), type BpfStat struct, Recv uint32 pkg syscall (freebsd-386-cgo), type BpfVersion struct pkg syscall (freebsd-386-cgo), type BpfVersion struct, Major uint16 pkg syscall (freebsd-386-cgo), type BpfVersion struct, Minor uint16 pkg syscall (freebsd-386-cgo), type BpfZbuf struct pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Bufa *uint8
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 18 04:36:59 UTC 2013 - 1.9M bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.12.md
- [Downloads for v1.12.0](#downloads-for-v1120) - [Client Binaries](#client-binaries-10) - [Server Binaries](#server-binaries-10) - [Node Binaries](#node-binaries-10) - [Known Issues](#known-issues) - [Major Themes](#major-themes) - [SIG API Machinery](#sig-api-machinery) - [SIG-autoscaling](#sig-autoscaling) - [SIG-Azure](#sig-azure) - [SIG-cli](#sig-cli) - [SIG-cloud-provider](#sig-cloud-provider)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 293.8K bytes - Viewed (0) -
docs/es/docs/async.md
Y como puede tener paralelismo y asincronía al mismo tiempo, obtienes un mayor rendimiento que la mayoría de los frameworks de NodeJS probados y a la par con Go, que es un lenguaje compilado más cercano a C <a href="https://www.techempower.com/benchmarks/#section=data-r17&hw=ph&test=query&l=zijmkf-1" class="external-link" target="_blank">(todo gracias Starlette)</a>. ### ¿Es la concurrencia mejor que el paralelismo? ¡No! Esa no es la moraleja de la historia.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 19 18:15:21 UTC 2024 - 24.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.21.md
- [Client Binaries](#client-binaries-14) - [Server Binaries](#server-binaries-14) - [Node Binaries](#node-binaries-14) - [Changelog since v1.20.0](#changelog-since-v1200) - [What's New (Major Themes)](#whats-new-major-themes) - [Deprecation of PodSecurityPolicy](#deprecation-of-podsecuritypolicy) - [Kubernetes API Reference Documentation](#kubernetes-api-reference-documentation)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Fri Oct 14 07:03:14 UTC 2022 - 367.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.16.md
- [Server Binaries](#server-binaries-16) - [Node Binaries](#node-binaries-16) - [Kubernetes v1.16.0 Release Notes](#kubernetes-v1160-release-notes) - [What’s New (Major Themes)](#what’s-new-major-themes) - [Additional Notable Feature Updates](#additional-notable-feature-updates) - [Known Issues](#known-issues) - [Urgent Upgrade Notes](#urgent-upgrade-notes-1)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 11 10:00:57 UTC 2021 - 345.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.23.md
- [Client Binaries](#client-binaries-17) - [Server Binaries](#server-binaries-17) - [Node Binaries](#node-binaries-17) - [Changelog since v1.22.0](#changelog-since-v1220) - [What's New (Major Themes)](#whats-new-major-themes) - [Deprecation of FlexVolume](#deprecation-of-flexvolume) - [Deprecation of klog specific flags](#deprecation-of-klog-specific-flags)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Feb 28 21:06:52 UTC 2023 - 424.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.22.md
- [Client Binaries](#client-binaries-17) - [Server Binaries](#server-binaries-17) - [Node Binaries](#node-binaries-17) - [Changelog since v1.21.0](#changelog-since-v1210) - [What's New (Major Themes)](#whats-new-major-themes) - [Removal of several beta Kubernetes APIs](#removal-of-several-beta-kubernetes-apis) - [Kubernetes release cadence change](#kubernetes-release-cadence-change)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Dec 13 12:43:45 UTC 2022 - 454.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.25.md
- [Server Binaries](#server-binaries-16) - [Node Binaries](#node-binaries-16) - [Container Images](#container-images-16) - [Changelog since v1.24.0](#changelog-since-v1240) - [What's New (Major Themes)](#whats-new-major-themes) - [PodSecurityPolicy is Removed, Pod Security Admission graduates to Stable](#podsecuritypolicy-is-removed-pod-security-admission-graduates-to-stable)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Mon May 06 09:23:20 UTC 2024 - 419.1K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-params-numeric-validations.md
``` ## Validações numéricas: maior que ou igual Com `Query` e `Path` (e outras que você verá mais tarde) você pode declarar restrições numéricas. Aqui, com `ge=1`, `item_id` precisará ser um número inteiro maior que ("`g`reater than") ou igual ("`e`qual") a 1. ```Python hl_lines="8" {!../../docs_src/path_params_numeric_validations/tutorial004.py!} ``` ## Validações numéricas: maior que e menor que ou igual
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.6K bytes - Viewed (0)