Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,361 for openat (0.13 sec)

  1. hack/unwanted-dependencies.json

          "github.com/go-openapi/analysis": "use k8s.io/kube-openapi/pkg/validation/spec",
          "github.com/go-openapi/spec": "use k8s.io/kube-openapi/pkg/validation/spec instead",
          "github.com/go-openapi/strfmt": "use k8s.io/kube-openapi/pkg/validation/strfmt instead",
          "github.com/go-openapi/validate": "use k8s.io/kube-openapi/pkg/validation/validate instead",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. internal/config/identity/openid/help.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package openid
    
    import "github.com/minio/minio/internal/config"
    
    // Help template for OpenID identity feature.
    var (
    	defaultHelpPostfix = func(key string) string {
    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	Help = config.HelpKVS{
    		config.HelpKV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 23 14:45:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. docs/zh/docs/tutorial/first-steps.md

    ### OpenAPI
    
    **FastAPI** 使用定义 API 的 **OpenAPI** 标准将你的所有 API 转换成「模式」。
    
    #### 「模式」
    
    「模式」是对事物的一种定义或描述。它并非具体的实现代码,而只是抽象的描述。
    
    #### API「模式」
    
    在这种场景下,OpenAPI 是一种规定如何定义 API 模式的规范。
    
    定义的 OpenAPI 模式将包括你的 API 路径,以及它们可能使用的参数等等。
    
    #### 数据「模式」
    
    「模式」这个术语也可能指的是某些数据比如 JSON 的结构。
    
    在这种情况下,它可以表示 JSON 的属性及其具有的数据类型,等等。
    
    #### OpenAPI 和 JSON Schema
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  4. docs/fr/docs/advanced/additional-responses.md

    ```
    
    ## Plus d'informations sur les réponses OpenAPI
    
    Pour voir exactement ce que vous pouvez inclure dans les réponses, vous pouvez consulter ces sections dans la spécification OpenAPI :
    
    * <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#responsesObject" class="external-link" target="_blank">Objet Responses de OpenAPI </a>, il inclut le `Response Object`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller_test.go

    		openapi := t.fetchOpenAPIOrDie()
    		if conditionFunc(openapi) {
    			return true, nil
    		}
    		return false, nil
    	})
    }
    
    func (t *testEnv) pollForPathExists(path string) {
    	wait.Poll(time.Second*1, wait.ForeverTestTimeout, func() (bool, error) {
    		openapi := t.fetchOpenAPIOrDie()
    		if _, ok := openapi.Paths.Paths[path]; !ok {
    			return false, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. docs/zh/docs/tutorial/metadata.md

    * **Swagger...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. staging/publishing/import-restrictions.yaml

      - k8s.io/apiserver
      - k8s.io/client-go
      - k8s.io/code-generator
      - k8s.io/component-base
      - k8s.io/klog
      - k8s.io/kube-openapi
      - k8s.io/utils
    
    - baseImportPath: "./vendor/k8s.io/kube-openapi"
      allowedImports:
      - k8s.io/kube-openapi
      - k8s.io/gengo
      - k8s.io/klog
      - k8s.io/utils
    
    - baseImportPath: "./staging/src/k8s.io/sample-cli-plugin"
      allowedImports:
      - k8s.io/api
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. tests/test_additional_responses_bad.py

    async def a():
        pass  # pragma: no cover
    
    
    openapi_schema = {
        "openapi": "3.1.0",
        "info": {"title": "FastAPI", "version": "0.1.0"},
        "paths": {
            "/a": {
                "get": {
                    "responses": {
                        # this is how one would imagine the openapi schema to be
                        # but since the key is not valid, openapi.utils.get_openapi will raise ValueError
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    package validation
    
    import (
    	"reflect"
    
    	"k8s.io/apiserver/pkg/cel/common"
    	celopenapi "k8s.io/apiserver/pkg/cel/openapi"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    	"k8s.io/kube-openapi/pkg/validation/strfmt"
    	"k8s.io/kube-openapi/pkg/validation/validate"
    )
    
    // schemaArgs are the arguments to constructor for OpenAPI schema validator,
    // NewSchemaValidator
    type schemaArgs struct {
    	schema       *spec.Schema
    	root         interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. docs/em/docs/advanced/generate-clients.md

    ### 🏗 📕 👩‍💻
    
    🔜 👈 👥 ✔️ 📱 ⏮️ 🏷, 👥 💪 🏗 👩‍💻 📟 🕸.
    
    #### ❎ `openapi-ts`
    
    👆 💪 ❎ `openapi-ts` 👆 🕸 📟 ⏮️:
    
    <div class="termy">
    
    ```console
    $ npm install @hey-api/openapi-ts --save-dev
    
    ---> 100%
    ```
    
    </div>
    
    #### 🏗 👩‍💻 📟
    
    🏗 👩‍💻 📟 👆 💪 ⚙️ 📋 ⏸ 🈸 `openapi-ts` 👈 🔜 🔜 ❎.
    
    ↩️ ⚫️ ❎ 🇧🇿 🏗, 👆 🎲 🚫🔜 💪 🤙 👈 📋 🔗, ✋️ 👆 🔜 🚮 ⚫️ 🔛 👆 `package.json` 📁.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top