Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 273 for uuid3 (2.51 sec)

  1. security/pkg/nodeagent/sds/sdsservice.go

    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	sds "github.com/envoyproxy/go-control-plane/envoy/service/secret/v3"
    	"github.com/google/uuid"
    	uberatomic "go.uber.org/atomic"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/status"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	mesh "istio.io/api/mesh/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/go.mod

    // This is a generated file. Do not edit directly.
    
    module k8s.io/cli-runtime
    
    go 1.22.0
    
    require (
    	github.com/google/gnostic-models v0.6.8
    	github.com/google/go-cmp v0.6.0
    	github.com/google/uuid v1.3.1
    	github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de
    	github.com/moby/term v0.0.0-20221205130635-1aeaba878587
    	github.com/spf13/cobra v1.8.0
    	github.com/spf13/pflag v1.0.5
    	github.com/stretchr/testify v1.8.4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. docs/uk/docs/tutorial/extra-data-types.md

    * Конвертація даних з вхідних запитів.
    * Конвертація даних для відповіді.
    * Валідація даних.
    * Автоматична анотація та документація.
    
    ## Інші типи даних
    
    Ось додаткові типи даних для використання:
    
    * `UUID`:
        * Стандартний "Універсальний Унікальний Ідентифікатор", який часто використовується як ідентифікатор у багатьох базах даних та системах.
        * У запитах та відповідях буде представлений як `str`.
    * `datetime.datetime`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/extra-data-types.md

    * Datenkonvertierung für Response-Daten.
    * Datenvalidierung.
    * Automatische Annotation und Dokumentation.
    
    ## Andere Datentypen
    
    Hier sind einige der zusätzlichen Datentypen, die Sie verwenden können:
    
    * `UUID`:
        * Ein standardmäßiger „universell eindeutiger Bezeichner“ („Universally Unique Identifier“), der in vielen Datenbanken und Systemen als ID üblich ist.
        * Wird in Requests und Responses als `str` dargestellt.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/extra-data-types.md

    * Data conversion for response data.
    * Data validation.
    * Automatic annotation and documentation.
    
    ## Other data types
    
    Here are some of the additional data types you can use:
    
    * `UUID`:
        * A standard "Universally Unique Identifier", common as an ID in many databases and systems.
        * In requests and responses will be represented as a `str`.
    * `datetime.datetime`:
        * A Python `datetime.datetime`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/server.go

    	"fmt"
    	"os"
    	"time"
    
    	coordinationapiv1 "k8s.io/api/coordination/v1"
    	apiv1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/uuid"
    	"k8s.io/apimachinery/pkg/util/wait"
    	apiserverfeatures "k8s.io/apiserver/pkg/features"
    	peerreconcilers "k8s.io/apiserver/pkg/reconcilers"
    	genericregistry "k8s.io/apiserver/pkg/registry/generic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. docs/fr/docs/advanced/response-directly.md

    Par exemple, vous ne pouvez pas mettre un modèle Pydantic dans une `JSONResponse` sans d'abord le convertir en un `dict` avec tous les types de données (comme `datetime`, `UUID`, etc.) convertis en types compatibles avec JSON.
    
    Pour ces cas, vous pouvez spécifier un appel à `jsonable_encoder` pour convertir vos données avant de les passer à une réponse :
    
    ```Python hl_lines="6-7  21-22"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

              .put(OptionalInt.class, OptionalInt.empty())
              .put(OptionalLong.class, OptionalLong.empty())
              .put(OptionalDouble.class, OptionalDouble.empty())
              .put(UUID.class, UUID.randomUUID())
              // common.base
              .put(CharMatcher.class, CharMatcher.none())
              .put(Joiner.class, Joiner.on(','))
              .put(Splitter.class, Splitter.on(','))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/extra-data-types.md

    * `int`
    * `float`
    * `str`
    * `bool`
    
    但是您也可以使用更复杂的数据类型。
    
    您仍然会拥有现在已经看到的相同的特性:
    
    * 很棒的编辑器支持。
    * 传入请求的数据转换。
    * 响应数据转换。
    * 数据验证。
    * 自动补全和文档。
    
    ## 其他数据类型
    
    下面是一些你可以使用的其他数据类型:
    
    * `UUID`:
        * 一种标准的 "通用唯一标识符" ,在许多数据库和系统中用作ID。
        * 在请求和响应中将以 `str` 表示。
    * `datetime.datetime`:
        * 一个 Python `datetime.datetime`.
        * 在请求和响应中将表示为 ISO 8601 格式的 `str` ,比如: `2008-09-15T15:53:00+05:00`.
    * `datetime.date`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

              .put(TimeUnit.class, TimeUnit.SECONDS)
              .put(Charset.class, Charsets.UTF_8)
              .put(Currency.class, Currency.getInstance(Locale.US))
              .put(Locale.class, Locale.US)
              .put(UUID.class, UUID.randomUUID())
              // common.base
              .put(CharMatcher.class, CharMatcher.none())
              .put(Joiner.class, Joiner.on(','))
              .put(Splitter.class, Splitter.on(','))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top