Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for UniqueItems (0.25 sec)

  1. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                  "type": "string",
                  "uniqueItems": true
                }
              },
              {
                "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
                "in": "query",
                "name": "fieldSelector",
                "schema": {
                  "type": "string",
                  "uniqueItems": true
                }
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/api__v1_openapi.json

                "type": "string",
                "uniqueItems": true
              }
            },
            {
              "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
              "in": "query",
              "name": "fieldSelector",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "type": "string",
                "uniqueItems": true
              }
            },
            {
              "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
              "in": "query",
              "name": "fieldSelector",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  4. api/openapi-spec/swagger.json

          "name": "command",
          "type": "string",
          "uniqueItems": true
        },
        "container-1GeXxFDC": {
          "description": "The container for which to stream logs. Defaults to only container if there is one container in the pod.",
          "in": "query",
          "name": "container",
          "type": "string",
          "uniqueItems": true
        },
        "container-_Q-EJ3nR": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string",
                "uniqueItems": true
              }
            },
            {
              "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
              "in": "query",
              "name": "fieldSelector",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    	ret.ExclusiveMinimum = v.ExclusiveMinimum
    	ret.MaxLength = v.MaxLength
    	ret.MinLength = v.MinLength
    	ret.Pattern = v.Pattern
    	ret.MaxItems = v.MaxItems
    	ret.MinItems = v.MinItems
    	ret.UniqueItems = v.UniqueItems
    	ret.MultipleOf = v.MultipleOf
    	if v.Enum != nil {
    		ret.Enum = make([]interface{}, 0, len(v.Enum))
    		for i := range v.Enum {
    			ret.Enum = append(ret.Enum, v.Enum[i].Object)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/extra-data-types.md

    * `frozenset`:
        * 📨 & 📨, 😥 🎏 `set`:
            * 📨, 📇 🔜 ✍, ❎ ❎ & 🏭 ⚫️ `set`.
            * 📨, `set` 🔜 🗜 `list`.
            * 🏗 🔗 🔜 ✔ 👈 `set` 💲 😍 (⚙️ 🎻 🔗 `uniqueItems`).
    * `bytes`:
        * 🐩 🐍 `bytes`.
        * 📨 & 📨 🔜 😥 `str`.
        * 🏗 🔗 🔜 ✔ 👈 ⚫️ `str` ⏮️ `binary` "📁".
    * `Decimal`:
        * 🐩 🐍 `Decimal`.
        * 📨 & 📨, 🍵 🎏 `float`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    		ExclusiveMinimum: s.ExclusiveMinimum,
    		MaxLength:        s.MaxLength,
    		MinLength:        s.MinLength,
    		Pattern:          s.Pattern,
    		MaxItems:         s.MaxItems,
    		MinItems:         s.MinItems,
    		UniqueItems:      s.UniqueItems,
    		MultipleOf:       s.MultipleOf,
    		MaxProperties:    s.MaxProperties,
    		MinProperties:    s.MinProperties,
    		Required:         s.Required,
    		Not:              not,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/extra-data-types.md

            * В ответах `set` будет преобразован в `list`.
            * В сгенерированной схеме будет указано, что значения `set` уникальны (с помощью JSON-схемы `uniqueItems`).
    * `bytes`:
        * Встроенный в Python `bytes`.
        * В запросах и ответах будет рассматриваться как `str`.
        * В сгенерированной схеме будет указано, что это `str` в формате `binary`.
    * `Decimal`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/extra-data-types.md

            * Nas respostas, o `set` será convertido para uma `list`.
            * O esquema gerado vai especificar que os valores do `set` são unicos (usando o `uniqueItems` do JSON Schema).
    * `bytes`:
        * O `bytes` padrão do Python.
        * Em requisições e respostas será representado como uma `str`.
        * O esquema gerado vai especificar que é uma `str` com o "formato" `binary`.
    * `Decimal`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top