Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 158 for reqLen (0.48 sec)

  1. docs/de/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    !!! info
        In diesem Beispiel verwenden wir zwei erfundene benutzerdefinierte Header `X-Key` und `X-Token`.
    
        Aber in realen Fällen würden Sie bei der Implementierung von Sicherheit mehr Vorteile durch die Verwendung der integrierten [Sicherheits-Werkzeuge (siehe nächstes Kapitel)](../security/index.md){.internal-link target=_blank} erzielen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:09:16 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/compare.go

    		n.X = cheapExpr(n.X, init)
    		n.Y = cheapExpr(n.Y, init)
    		eqlen, eqmem := compare.EqString(n.X, n.Y)
    		// quick check of len before full compare for == or !=.
    		// memequal then tests equality up to length len.
    		if n.Op() == ir.OEQ {
    			// len(left) == len(right) && memequal(left, right, len)
    			r = ir.NewLogicalExpr(base.Pos, ir.OANDAND, eqlen, eqmem)
    		} else {
    			// len(left) != len(right) || !memequal(left, right, len)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. src/net/dnsconfig_unix.go

    					n, _, _ := dtoi(s[9:])
    					if n < 1 {
    						n = 1
    					}
    					conf.attempts = n
    				case s == "rotate":
    					conf.rotate = true
    				case s == "single-request" || s == "single-request-reopen":
    					// Linux option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    					// "By default, glibc performs IPv4 and IPv6 lookups in parallel [...]
    					//  This option disables the behavior and makes glibc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    	Vfs      uint32
    	Type     uint32
    	Gen      uint32
    	Reserved [9]uint32
    }
    
    type StatxTimestamp struct{}
    
    type Statx_t struct{}
    
    type Dirent struct {
    	Offset uint32
    	Ino    uint32
    	Reclen uint16
    	Namlen uint16
    	Name   [256]uint8
    }
    
    type RawSockaddrInet4 struct {
    	Len    uint8
    	Family uint8
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/extractor/eml/sample4.eml

    versehen, nach Hause tragen.
    Workshop Nr. 4:
    Seifen gießen. Eine hautfreundliche Rohseife wird eingeschmolzen, mit Lebensmittelfarben und reinen ätherischen Ölen
    versetzt und in Formen gegossen. Ein kleiner Exkurs in die Chemie und Geschichte gesiedeter Seifen rundet das Programm
    ab.
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Jan 07 09:15:11 UTC 2018
    - 681K bytes
    - Viewed (0)
  6. src/syscall/ztypes_solaris_amd64.go

    	Whence    int16
    	Pad_cgo_0 [4]byte
    	Start     int64
    	Len       int64
    	Sysid     int32
    	Pid       int32
    	Pad       [4]int64
    }
    
    type Dirent struct {
    	Ino       uint64
    	Off       int64
    	Reclen    uint16
    	Name      [1]int8
    	Pad_cgo_0 [5]byte
    }
    
    type RawSockaddrInet4 struct {
    	Family uint16
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/path-operation-configuration.md

    !!! info "Informação"
        Note que `response_description` se refere especificamente à resposta, a `description` se refere à *operação de rota* em geral.
    
    !!! check
        OpenAPI especifica que cada *operação de rota* requer uma descrição de resposta.
    
        Então, se você não fornecer uma, o **FastAPI** irá gerar automaticamente uma de "Resposta bem-sucedida".
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    	Gen      uint32
    	Reserved [9]uint32
    	Padto_ll uint32
    	Size     int64
    }
    
    type StatxTimestamp struct{}
    
    type Statx_t struct{}
    
    type Dirent struct {
    	Offset uint64
    	Ino    uint64
    	Reclen uint16
    	Namlen uint16
    	Name   [256]uint8
    	_      [4]byte
    }
    
    type RawSockaddrInet4 struct {
    	Len    uint8
    	Family uint8
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/os/stat_windows.go

    	}
    
    	fi, err := statHandle(name, h)
    	syscall.CloseHandle(h)
    	if err == nil && followSurrogates && fi.(*fileStat).isReparseTagNameSurrogate() {
    		// To obtain information about the link target, we reopen the file without
    		// FILE_FLAG_OPEN_REPARSE_POINT and examine the resulting handle.
    		// (See https://devblogs.microsoft.com/oldnewthing/20100212-00/?p=14963.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/syscall/ztypes_netbsd_386.go

    	Spare         [2]uint32
    }
    
    type Statfs_t [0]byte
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno    uint64
    	Reclen    uint16
    	Namlen    uint16
    	Type      uint8
    	Name      [512]int8
    	Pad_cgo_0 [3]byte
    }
    
    type Fsid struct {
    	X__fsid_val [2]int32
    }
    
    const (
    	pathMax = 0x400
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
Back to top