Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,361 for openat (0.12 sec)

  1. docs/en/docs/advanced/openapi-callbacks.md

    * The *path* can contain an <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#key-expression" class="external-link" target="_blank">OpenAPI 3 expression</a> (see more below) where it can use variables with parameters and parts of the original request sent to *your API*.
    
    ### The callback path expression
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. hack/verify-openapi-docs-urls.sh

    # This script checks the documentation (description) from the OpenAPI specification for URLs, and
    # verifies those URLs are valid.
    # Usage: `hack/verify-openapi-docs-links.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    SPECROOT="${KUBE_ROOT}/api/openapi-spec"
    SPECV3PATH="${SPECROOT}/v3"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. docs/em/docs/how-to/conditional-openapi.md

    ```
    
    ๐Ÿ“ฅ ๐Ÿ‘ฅ ๐Ÿ“ฃ โš’ `openapi_url` โฎ๏ธ ๐ŸŽ ๐Ÿ”ข `"/openapi.json"`.
    
    &amp; โคด๏ธ ๐Ÿ‘ฅ โš™๏ธ โšซ๏ธ ๐Ÿ•โ” ๐Ÿ— `FastAPI` ๐Ÿ“ฑ.
    
    โคด๏ธ ๐Ÿ‘† ๐Ÿ’ช โŽ ๐Ÿ—„ (โœ… ๐ŸŽš ๐Ÿฉบ) โš’ ๐ŸŒ ๐Ÿ”ข `OPENAPI_URL` ๐Ÿ› ๐ŸŽป, ๐Ÿ’–:
    
    <div class="termy">
    
    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. hack/verify-openapi-spec.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks whether updating of OpenAPI specification is needed or not.
    # We should run `hack/update-openapi-spec.sh` if OpenAPI specification is out of
    # date.
    # Usage: `hack/verify-openapi-spec.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:41 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. docs/de/docs/how-to/separate-openapi-schemas.md

    # Separate OpenAPI-Schemas fรผr Eingabe und Ausgabe oder nicht
    
    Bei Verwendung von **Pydantic v2** ist die generierte OpenAPI etwas genauer und **korrekter** als zuvor. ๐Ÿ˜Ž
    
    Tatsรคchlich gibt es in einigen Fรคllen sogar **zwei JSON-Schemas** in OpenAPI fรผr dasselbe Pydantic-Modell fรผr Eingabe und Ausgabe, je nachdem, ob sie **Defaultwerte** haben.
    
    Sehen wir uns an, wie das funktioniert und wie Sie es bei Bedarf รคndern kรถnnen.
    
    ## Pydantic-Modelle fรผr Eingabe und Ausgabe
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. docs/em/docs/advanced/openapi-callbacks.md

    *  *โžก* ๐Ÿ’ช ๐Ÿ”Œ <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#key-expression" class="external-link" target="_blank">๐Ÿ—„ 3๏ธโƒฃ ๐Ÿงฌ</a> (๐Ÿ‘€ ๐ŸŒ– ๐Ÿ”›) ๐ŸŒโ” โšซ๏ธ ๐Ÿ’ช โš™๏ธ ๐Ÿ”ข โฎ๏ธ ๐Ÿ”ข &amp; ๐Ÿ• โฎ๏ธ ๐Ÿ“จ ๐Ÿ“จ *๐Ÿ‘† ๐Ÿ› ๏ธ*.
    
    ### โฒ โžก ๐Ÿงฌ
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_openatAddr() *(func(dirfd int, path string, flags int, mode uint32) (fd int, err error))
    
    var openat = enter_openat
    
    func enter_openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) {
    	funcref := get_openatAddr()
    	if funcptrtest(GetZosLibVec()+SYS___OPENAT_A<<4, "") == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  8. src/main/config/openapi/openapi-user.yaml

                              example: "Open Source Enterprise Search Server: Fess โ€” Fess 11.0 documentation"
                            content_title:
                              type: string
                              example: "Open Source Enterprise Search Server: Fess โ€” Fe..."
                            digest:
                              type: string
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. internal/config/identity/openid/openid.go

    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/config/identity/openid/provider"
    	"github.com/minio/minio/internal/hash/sha256"
    	"github.com/minio/pkg/v3/env"
    	xnet "github.com/minio/pkg/v3/net"
    	"github.com/minio/pkg/v3/policy"
    )
    
    // OpenID keys and envs.
    const (
    	ClientID      = "client_id"
    	ClientSecret  = "client_secret"
    	ConfigURL     = "config_url"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    limitations under the License.
    */
    
    // Code generated by openapi-gen. DO NOT EDIT.
    
    package openapi
    
    import (
    	v1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	v1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	common "k8s.io/kube-openapi/pkg/common"
    	spec "k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
Back to top