- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 411 for nsub (0.06 sec)
-
cmd/iam.go
- retryInterval := time.Duration(r.Float64() * float64(time.Second))
- logger.Info("Waiting for all MinIO IAM sub-system to be initialized.. possible cause (%v) (retrying in %s)", err, retryInterval)
- time.Sleep(retryInterval)
- continue
- }
- iamLogIf(ctx, fmt.Errorf("IAM sub-system is partially initialized, unable to write the IAM format: %w", err), logger.WarningKind)
- return
- }
- break
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/body-nested-models.md
- Tudo isso, aninhado arbitrariamente.
- ### Defina um sub-modelo
- Por exemplo, nós podemos definir um modelo `Image`:
- ```Python hl_lines="9-11"
- {!../../docs_src/body_nested_models/tutorial004.py!}
- ```
- ### Use o sub-modelo como um tipo
- E então podemos usa-lo como o tipo de um atributo:
- ```Python hl_lines="20"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.4K bytes - Viewed (0) -
internal/mountinfo/mountinfo_windows.go
- package mountinfo
- import (
- "path/filepath"
- "sync"
- "golang.org/x/sys/windows"
- )
- // CheckCrossDevice - check if any input path has multiple sub-mounts.
- // this is a dummy function and returns nil for now.
- func CheckCrossDevice(paths []string) error {
- return nil
- }
- // mountPointCache contains results of IsLikelyMountPoint
- var mountPointCache sync.Map
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 19 01:35:22 UTC 2021 - 2K bytes - Viewed (0) -
istioctl/pkg/multicluster/options.go
- // Inherit the common kubernetes flags defined in the root package. This is a bit of a hack,
- // but it allows us to directly get the final values for each of these flags without needing
- // to pass pointers-to-flags through all of the (sub)commands.
- func (o *KubeOptions) prepare(ctx cli.Context) {
- o.Namespace = ctx.Namespace()
- if o.Namespace == "" {
- o.Namespace = ctx.IstioNamespace()
- configAccess := clientcmd.NewDefaultPathOptions()
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Aug 01 23:59:49 UTC 2023 - 1.6K bytes - Viewed (0) -
docs/ja/docs/tutorial/security/oauth2-jwt.md
- トークンの有効期限を表す`timedelta`を作成します。
- JWTアクセストークンを作成し、それを返します。
- ```Python hl_lines="115-130"
- {!../../docs_src/security/tutorial004.py!}
- ```
- ### JWTの"subject" `sub` についての技術的な詳細
- JWTの仕様では、トークンのsubjectを表すキー`sub`があるとされています。
- 使用するかどうかは任意ですが、`sub`はユーザーの識別情報を入れるように規定されているので、ここで使用します。
- JWTは、ユーザーを識別して、そのユーザーがAPI上で直接操作を実行できるようにする以外にも、他の用途で使用されることがあります。
- 例えば、「車」や「ブログ記事」を識別することができます。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.1K bytes - Viewed (1) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
- ```Python hl_lines="3 5"
- {!../../docs_src/dependencies/tutorial007.py!}
- ```
- ## Sub-dependencies with `yield`
- You can have sub-dependencies and "trees" of sub-dependencies of any size and shape, and any or all of them can use `yield`.
- **FastAPI** will make sure that the "exit code" in each dependency with `yield` is run in the correct order.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14K bytes - Viewed (0) -
cmd/typed-errors.go
- // error returned in IAM service account
- var errIAMServiceAccountNotAllowed = errors.New("Specified service account action is not allowed")
- // error returned in IAM subsystem when IAM sub-system is still being initialized.
- var errIAMNotInitialized = errors.New("IAM sub-system is being initialized, please try again")
- // error returned when upload id not found
- var errUploadIDNotFound = errors.New("Specified Upload ID is not found")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 28 17:14:16 UTC 2024 - 5.8K bytes - Viewed (0) -
helm/minio/templates/statefulset.yaml
$nodeCount }}{{ $endIndex := add $factor $nodeCount }}{{ $beginIndex := mul $i $nodeCount }} {{ $scheme }}://{{ template `minio.fullname` $ }}-{{ `{` }}{{ $beginIndex }}...{{ sub $endIndex 1 }}{{ `}`}}.{{ template `minio.fullname` $ }}-svc.{{ $.Release.Namespace }}.svc{{if (gt $drivesPerNode 1)}}{{ $bucketRoot }}-{{ `{` }}0...{{ sub $drivesPerNode 1 }}{{ `}` }}{{ else }}{{ $bucketRoot }}{{end }}{{- end }} -S {{ .Values.certsPath }} --address :{{ .Values.minioAPIPort }} --console-address :{{ .Values.minioConsolePort...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 11 12:21:05 UTC 2024 - 10.4K bytes - Viewed (0) -
docs/en/mkdocs.yml
- - tutorial/encoder.md
- - tutorial/body-updates.md
- - Dependencies:
- - tutorial/dependencies/index.md
- - tutorial/dependencies/classes-as-dependencies.md
- - tutorial/dependencies/sub-dependencies.md
- - tutorial/dependencies/dependencies-in-path-operation-decorators.md
- - tutorial/dependencies/global-dependencies.md
- - tutorial/dependencies/dependencies-with-yield.md
- - Security:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 22 20:28:02 UTC 2024 - 10.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java
- import java.util.Date;
- import org.codelibs.core.beans.BeanDesc;
- import org.codelibs.core.beans.PropertyDesc;
- import org.codelibs.core.beans.factory.BeanDescFactory;
- import org.codelibs.core.beans.impl.sub.MogeBean;
- import org.codelibs.core.beans.impl.sub.MogeBeanFactory;
- import org.codelibs.core.exception.IllegalPropertyRuntimeException;
- import org.junit.Test;
- /**
- * @author higa
- *
- */
- public class PropertyDescImplTest {
- /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11.1K bytes - Viewed (0)