Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,763 for farm (0.07 sec)

  1. docs/ru/docs/tutorial/request-forms-and-files.md

    !!! warning "Внимание"
        Вы можете объявить несколько параметров `File` и `Form` в операции *path*, но вы не можете также объявить поля `Body`, которые вы ожидаете получить в виде JSON, так как запрос будет иметь тело, закодированное с помощью `multipart/form-data` вместо `application/json`.
    
        Это не ограничение **Fast API**, это часть протокола HTTP.
    
    ## Резюме
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/runtime/asan_ppc64le.s

    #define RARG2 R5
    #define RARG3 R6
    #define FARG R12
    
    // Called from instrumented code.
    // func runtime·doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    TEXT	runtime·doasanread(SB),NOSPLIT|NOFRAME,$0-32
    	MOVD	addr+0(FP), RARG0
    	MOVD	sz+8(FP), RARG1
    	MOVD	sp+16(FP), RARG2
    	MOVD	pc+24(FP), RARG3
    	// void __asan_read_go(void *addr, uintptr_t sz, void *sp, void *pc);
    	MOVD	$__asan_read_go(SB), FARG
    	BR	asancall<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 18:13:33 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	index uint16
    }
    
    // functions dispatchable per form
    type lookupFunc func(b input, i int) Properties
    
    // formInfo holds Form-specific functions and tables.
    type formInfo struct {
    	form                     Form
    	composing, compatibility bool // form type
    	info                     lookupFunc
    	nextMain                 iterFunc
    }
    
    var formTable = []*formInfo{{
    	form:          NFC,
    	composing:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. docs_src/request_files/tutorial003_an.py

    
    @app.get("/")
    async def main():
        content = """
    <body>
    <form action="/files/" enctype="multipart/form-data" method="post">
    <input name="files" type="file" multiple>
    <input type="submit">
    </form>
    <form action="/uploadfiles/" enctype="multipart/form-data" method="post">
    <input name="files" type="file" multiple>
    <input type="submit">
    </form>
    </body>
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 987 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	index uint16
    }
    
    // functions dispatchable per form
    type lookupFunc func(b input, i int) Properties
    
    // formInfo holds Form-specific functions and tables.
    type formInfo struct {
    	form                     Form
    	composing, compatibility bool // form type
    	info                     lookupFunc
    	nextMain                 iterFunc
    }
    
    var formTable = []*formInfo{{
    	form:          NFC,
    	composing:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse upgradeFrom(final UpgradeForm form) {
            validate(form, messages -> {}, this::asIndexHtml);
            verifyToken(this::asIndexHtml);
    
            if (VERSION_13_0.equals(form.targetVersion)) {
                try {
                    upgradeFrom13_0();
                    upgradeFrom13_1();
                    upgradeFrom13_2();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse crawlingConfig(final CrawlingConfigForm form) {
            validate(form, messages -> {}, () -> asHtml(path_AdminWizard_AdminWizardConfigJsp));
            verifyTokenKeep(this::asIndexHtml);
            final String name = crawlingConfigInternal(form);
            saveInfo(messages -> messages.addSuccessCreateCrawlingConfigAtWizard(GLOBAL, name));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-arm.txt

    golang.org/******@****.***-arm
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.netbsd-arm"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 296 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.plan9-arm.txt

    golang.org/******@****.***9-arm
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.plan9-arm"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/rc
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 294 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.android-arm.txt

    golang.org/******@****.***d-arm
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.android-arm"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 298 bytes
    - Viewed (0)
Back to top