Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 411 for nsub (0.06 sec)

  1. cmd/iam.go

    1. retryInterval := time.Duration(r.Float64() * float64(time.Second))
    2. logger.Info("Waiting for all MinIO IAM sub-system to be initialized.. possible cause (%v) (retrying in %s)", err, retryInterval)
    3. time.Sleep(retryInterval)
    4. continue
    5. }
    6. iamLogIf(ctx, fmt.Errorf("IAM sub-system is partially initialized, unable to write the IAM format: %w", err), logger.WarningKind)
    7. return
    8. }
    9.  
    10. break
    11. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 29 16:01:48 UTC 2024
    - 74.6K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/body-nested-models.md

    1. Tudo isso, aninhado arbitrariamente.
    2.  
    3. ### Defina um sub-modelo
    4.  
    5. Por exemplo, nós podemos definir um modelo `Image`:
    6.  
    7. ```Python hl_lines="9-11"
    8. {!../../docs_src/body_nested_models/tutorial004.py!}
    9. ```
    10.  
    11. ### Use o sub-modelo como um tipo
    12.  
    13. E então podemos usa-lo como o tipo de um atributo:
    14.  
    15. ```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)
  3. internal/mountinfo/mountinfo_windows.go

    1. package mountinfo
    2.  
    3. import (
    4. "path/filepath"
    5. "sync"
    6.  
    7. "golang.org/x/sys/windows"
    8. )
    9.  
    10. // CheckCrossDevice - check if any input path has multiple sub-mounts.
    11. // this is a dummy function and returns nil for now.
    12. func CheckCrossDevice(paths []string) error {
    13. return nil
    14. }
    15.  
    16. // mountPointCache contains results of IsLikelyMountPoint
    17. 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)
  4. istioctl/pkg/multicluster/options.go

    1. // Inherit the common kubernetes flags defined in the root package. This is a bit of a hack,
    2. // but it allows us to directly get the final values for each of these flags without needing
    3. // to pass pointers-to-flags through all of the (sub)commands.
    4. func (o *KubeOptions) prepare(ctx cli.Context) {
    5. o.Namespace = ctx.Namespace()
    6. if o.Namespace == "" {
    7. o.Namespace = ctx.IstioNamespace()
    8.  
    9. 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)
  5. docs/ja/docs/tutorial/security/oauth2-jwt.md

    1. トークンの有効期限を表す`timedelta`を作成します。
    2.  
    3. JWTアクセストークンを作成し、それを返します。
    4.  
    5. ```Python hl_lines="115-130"
    6. {!../../docs_src/security/tutorial004.py!}
    7. ```
    8.  
    9. ### JWTの"subject" `sub` についての技術的な詳細
    10.  
    11. JWTの仕様では、トークンのsubjectを表すキー`sub`があるとされています。
    12.  
    13. 使用するかどうかは任意ですが、`sub`はユーザーの識別情報を入れるように規定されているので、ここで使用します。
    14.  
    15. JWTは、ユーザーを識別して、そのユーザーがAPI上で直接操作を実行できるようにする以外にも、他の用途で使用されることがあります。
    16.  
    17. 例えば、「車」や「ブログ記事」を識別することができます。
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.1K bytes
    - Viewed (1)
  6. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    1. ```Python hl_lines="3 5"
    2. {!../../docs_src/dependencies/tutorial007.py!}
    3. ```
    4.  
    5. ## Sub-dependencies with `yield`
    6.  
    7. You can have sub-dependencies and "trees" of sub-dependencies of any size and shape, and any or all of them can use `yield`.
    8.  
    9. **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)
  7. cmd/typed-errors.go

    1. // error returned in IAM service account
    2. var errIAMServiceAccountNotAllowed = errors.New("Specified service account action is not allowed")
    3.  
    4. // error returned in IAM subsystem when IAM sub-system is still being initialized.
    5. var errIAMNotInitialized = errors.New("IAM sub-system is being initialized, please try again")
    6.  
    7. // error returned when upload id not found
    8. 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)
  8. 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)
  9. docs/en/mkdocs.yml

    1. - tutorial/encoder.md
    2. - tutorial/body-updates.md
    3. - Dependencies:
    4. - tutorial/dependencies/index.md
    5. - tutorial/dependencies/classes-as-dependencies.md
    6. - tutorial/dependencies/sub-dependencies.md
    7. - tutorial/dependencies/dependencies-in-path-operation-decorators.md
    8. - tutorial/dependencies/global-dependencies.md
    9. - tutorial/dependencies/dependencies-with-yield.md
    10. - 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)
  10. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

    1. import java.util.Date;
    2.  
    3. import org.codelibs.core.beans.BeanDesc;
    4. import org.codelibs.core.beans.PropertyDesc;
    5. import org.codelibs.core.beans.factory.BeanDescFactory;
    6. import org.codelibs.core.beans.impl.sub.MogeBean;
    7. import org.codelibs.core.beans.impl.sub.MogeBeanFactory;
    8. import org.codelibs.core.exception.IllegalPropertyRuntimeException;
    9. import org.junit.Test;
    10.  
    11. /**
    12. * @author higa
    13. *
    14. */
    15. public class PropertyDescImplTest {
    16.  
    17. /**
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top