Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 770 for emberi (0.12 sec)

  1. docs_src/body_multiple_params/tutorial005_an.py

        name: str
        description: Union[str, None] = None
        price: float
        tax: Union[float, None] = None
    
    
    @app.put("/items/{item_id}")
    async def update_item(item_id: int, item: Annotated[Item, Body(embed=True)]):
        results = {"item_id": item_id, "item": item}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 457 bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.go

    // SVG pan and zoom library.
    // See copyright notice in string constant below.
    
    package svgpan
    
    import _ "embed"
    
    // https://github.com/aleofreddi/svgpan
    
    //go:embed svgpan.js
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 196 bytes
    - Viewed (0)
  3. pkg/volume/volume.go

    // implementations of methods in the volume interface must be idempotent.
    type Volume interface {
    	// GetPath returns the path to which the volume should be mounted for the
    	// pod.
    	GetPath() string
    
    	// MetricsProvider embeds methods for exposing metrics (e.g.
    	// used, available space).
    	MetricsProvider
    }
    
    // BlockVolume interface provides methods to generate global map path
    // and pod device map path.
    type BlockVolume interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/assets.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package assets
    
    import (
    	"embed"
    	"html/template"
    )
    
    // FS embeds the templates
    //
    //go:embed templates/* static/*
    var FS embed.FS
    
    func ParseTemplate(l *template.Template, name string) *template.Template {
    	b, err := FS.ReadFile(name)
    	if err != nil {
    		panic(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 900 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/ProjectIdentifier.java

         * The path of the project, relative to its build.
         *
         * @return the path, never null
         * @since 3.3
         */
        String getProjectPath();
    
        /**
         * Identifier of the build this project is a member of.
         *
         * @return build identifier, never null.
         */
        BuildIdentifier getBuildIdentifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/noder/noder.go

    	for _, pos := range pragma.Pos {
    		if pos.Flag&pragma.Flag != 0 {
    			p.error(syntax.Error{Pos: pos.Pos, Msg: "misplaced compiler directive"})
    		}
    	}
    	if len(pragma.Embeds) > 0 {
    		for _, e := range pragma.Embeds {
    			p.error(syntax.Error{Pos: e.Pos, Msg: "misplaced go:embed directive"})
    		}
    	}
    	if pragma.WasmImport != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. docs/de/docs/reference/websockets.md

    ::: fastapi.WebSocket
        options:
            members:
                - scope
                - app
                - url
                - base_url
                - headers
                - query_params
                - path_params
                - cookies
                - client
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:16:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. test/fixedbugs/issue14729.go

    // errorcheck
    
    // Copyright 2016 The Go Authors.  All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 14729: structs cannot embed unsafe.Pointer per the spec.
    
    package main
    
    import "unsafe"
    
    type s struct { unsafe.Pointer } // ERROR "embedded type cannot be a pointer|embedded type may not be a pointer||embedded field type cannot be unsafe.Pointer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 469 bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/symbolTestUtils.kt

        testServices: TestServices
    ) {
        if (ktFile.isScript()) return
        val expectedClassName = when {
            symbol.symbolKind == KaSymbolKind.LOCAL ->
                null
            ktClass != null ->
                // member
                ktClass.getClassId()?.asFqNameString()
            else ->
                // top-level
                ktFile.javaFileFacadeFqName.asString()
        }
        val actualClassName = symbol.getContainingJvmClassName()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

                        <simplelist columns="3" type="vert">
                            <member>
                                <apilink class="org.gradle.Subtype1"/>
                            </member>
                            <member>
                                <apilink class="org.gradle.Subtype2"/>
                            </member>
                            <member>
                                <apilink class="org.gradle.Subtype3"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 40.8K bytes
    - Viewed (0)
Back to top