Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,032 for Sfiles (0.2 sec)

  1. docs/ko/docs/tutorial/request-files.md

    ```
    
    ## `File` 매개변수 정의
    
    `Body` 및 `Form` 과 동일한 방식으로 파일의 매개변수를 생성합니다:
    
    ```Python hl_lines="7"
    {!../../../docs_src/request_files/tutorial001.py!}
    ```
    
    !!! info "정보"
        `File` 은 `Form` 으로부터 직접 상속된 클래스입니다.
    
        하지만 `fastapi`로부터 `Query`, `Path`, `File` 등을 임포트 할 때, 이것들은 특별한 클래스들을 반환하는 함수라는 것을 기억하기 바랍니다.
    
    !!! tip "팁"
        File의 본문을 선언할 때, 매개변수가 쿼리 매개변수 또는 본문(JSON) 매개변수로 해석되는  것을 방지하기 위해 `File` 을 사용해야합니다.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. hack/verify-file-sizes.sh

                    size="$(wc -c < "$file")"
                    if [ "${size}" -gt "$maxsize" ] &&
                           ! kube::util::array_contains "$file" "${allowlist[@]}"; then
                        echo    "$file is too large ($size bytes)"
                    fi
                    ;;
                w/|w/lf|w/crlf|w/mixed|w/none)
                    # Other files are okay.
                    ;;
                *)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/debug/pe/file.go

    resources, or cause panics.
    */
    package pe
    
    import (
    	"bytes"
    	"compress/zlib"
    	"debug/dwarf"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	"strings"
    )
    
    // A File represents an open PE file.
    type File struct {
    	FileHeader
    	OptionalHeader any // of type *OptionalHeader32 or *OptionalHeader64
    	Sections       []*Section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/request-files.md

    👆 💪 🔬 📁 📂 👩‍💻 ⚙️ `File`.
    
    !!! info
        📨 📂 📁, 🥇 ❎ <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        🤶 Ⓜ. `pip install python-multipart`.
    
        👉 ↩️ 📂 📁 📨 "📨 💽".
    
    ## 🗄 `File`
    
    🗄 `File` &amp; `UploadFile` ⚪️➡️ `fastapi`:
    
    ```Python hl_lines="1"
    {!../../../docs_src/request_files/tutorial001.py!}
    ```
    
    ## 🔬 `File` 🔢
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/request-files.md

    Mit `File` können sie vom Client hochzuladende Dateien definieren.
    
    !!! info
        Um hochgeladene Dateien zu empfangen, installieren Sie zuerst <a href="https://andrew-d.github.io/python-multipart/" class="external-link" target="_blank">`python-multipart`</a>.
    
        Z. B. `pip install python-multipart`.
    
        Das, weil hochgeladene Dateien als „Formulardaten“ gesendet werden.
    
    ## `File` importieren
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/vet/testdata/tagtest/file2.go

    // Copyright 2015 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.
    
    //go:build !testtag
    // +build !testtag
    
    package main
    
    import "fmt"
    
    func main() {
    	fmt.Printf("%s", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 265 bytes
    - Viewed (0)
  7. src/debug/macho/file.go

    				return nil, &FormatError{offset, "invalid section offset", s.Offset}
    			}
    			if int64(s.Filesz) < 0 {
    				return nil, &FormatError{offset, "invalid section file size", s.Filesz}
    			}
    			s.sr = io.NewSectionReader(r, int64(s.Offset), int64(s.Filesz))
    			s.ReaderAt = s.sr
    		}
    	}
    	return f, nil
    }
    
    func (f *File) parseSymtab(symdat, strtab, cmddat []byte, hdr *SymtabCmd, offset int64) (*Symtab, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    }
    
    // rotate checks to see whether the file f needs to be rotated,
    // meaning to start a new counter file with a different date in the name.
    // rotate is also used to open the file initially, meaning f.current can be nil.
    // In general rotate should be called just once for each file.
    // rotate will arrange a timer to call itself again when necessary.
    func (f *file) rotate() {
    	expire, cleanup := f.rotate1()
    	cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/kubelet/config/file.go

    				if !os.IsNotExist(err) {
    					klog.ErrorS(err, "Could not process manifest file", "path", path)
    				}
    			} else {
    				pods = append(pods, pod)
    			}
    		default:
    			klog.ErrorS(nil, "Manifest path is not a directory or file", "path", path, "mode", statInfo.Mode())
    		}
    	}
    	return pods, nil
    }
    
    // extractFromFile parses a file for Pod configuration information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 07:19:44 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  10. src/net/http/testdata/file

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 11 bytes
    - Viewed (0)
Back to top