Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,436 for Struct (0.18 sec)

  1. logger/sql_test.go

    			NumericRegexp: nil,
    			Vars:          []interface{}{"jinzhu", 1, 999.99, true, []byte("12345"), tt, &tt, nil, "w@g.\"com", myrole, pwd, js, es},
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Thu Mar 21 08:00:02 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  2. api/go1.19.txt

    pkg go/doc/comment, type LinkDef struct #51082
    pkg go/doc/comment, type LinkDef struct, Text string #51082
    pkg go/doc/comment, type LinkDef struct, URL string #51082
    pkg go/doc/comment, type LinkDef struct, Used bool #51082
    pkg go/doc/comment, type List struct #51082
    pkg go/doc/comment, type List struct, ForceBlankBefore bool #51082
    pkg go/doc/comment, type List struct, ForceBlankBetween bool #51082
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  3. api/go1.20.txt

    pkg runtime/cgo (linux-arm-cgo), type Incomplete struct #46731
    pkg runtime/cgo (netbsd-386-cgo), type Incomplete struct #46731
    pkg runtime/cgo (netbsd-amd64-cgo), type Incomplete struct #46731
    pkg runtime/cgo (netbsd-arm64-cgo), type Incomplete struct #46731
    pkg runtime/cgo (netbsd-arm-cgo), type Incomplete struct #46731
    pkg runtime/cgo (openbsd-386-cgo), type Incomplete struct #46731
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  4. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), type BpfStat struct, Drop uint32
    pkg syscall (freebsd-386-cgo), type BpfStat struct, Recv uint32
    pkg syscall (freebsd-386-cgo), type BpfVersion struct
    pkg syscall (freebsd-386-cgo), type BpfVersion struct, Major uint16
    pkg syscall (freebsd-386-cgo), type BpfVersion struct, Minor uint16
    pkg syscall (freebsd-386-cgo), type BpfZbuf struct
    pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Bufa *uint8
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  5. cmd/object-api-datatypes.go

    // client during CompleteMultipartUpload request.
    type CompleteMultipartUpload struct {
    	Parts []CompletePart `xml:"Part"`
    }
    
    // NewMultipartUploadResult contains information about a newly created multipart upload.
    type NewMultipartUploadResult struct {
    	UploadID     string
    	ChecksumAlgo string
    }
    
    type getObjectAttributesResponse struct {
    	ETag         string                    `xml:",omitempty"`
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  6. api/go1.21.txt

    pkg crypto/tls, type QUICEvent struct #44886
    pkg crypto/tls, type QUICEvent struct, Data []uint8 #44886
    pkg crypto/tls, type QUICEvent struct, Kind QUICEventKind #44886
    pkg crypto/tls, type QUICEvent struct, Level QUICEncryptionLevel #44886
    pkg crypto/tls, type QUICEvent struct, Suite uint16 #44886
    pkg crypto/tls, type SessionState struct #60105
    pkg crypto/tls, type SessionState struct, EarlyData bool #60107
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  7. internal/hash/errors.go

    type SHA256Mismatch struct {
    	ExpectedSHA256   string
    	CalculatedSHA256 string
    }
    
    func (e SHA256Mismatch) Error() string {
    	return "Bad sha256: Expected " + e.ExpectedSHA256 + " does not match calculated " + e.CalculatedSHA256
    }
    
    // BadDigest - Content-MD5 you specified did not match what we received.
    type BadDigest struct {
    	ExpectedMD5   string
    	CalculatedMD5 string
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon May 15 21:08:54 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  8. cmd/object-api-errors.go

    type InvalidETag struct{}
    
    func (e InvalidETag) Error() string {
    	return "etag of the object has changed"
    }
    
    // BackendDown is returned for network errors
    type BackendDown struct {
    	Err string
    }
    
    func (e BackendDown) Error() string {
    	return e.Err
    }
    
    // NotImplemented If a feature is not implemented
    type NotImplemented struct {
    	Message string
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  9. api/except.txt

    pkg syscall (freebsd-386), type Dirent struct, Fileno uint32
    pkg syscall (freebsd-386), type Dirent struct, Namlen uint8
    pkg syscall (freebsd-386), type Stat_t struct, Blksize uint32
    pkg syscall (freebsd-386), type Stat_t struct, Dev uint32
    pkg syscall (freebsd-386), type Stat_t struct, Gen uint32
    pkg syscall (freebsd-386), type Stat_t struct, Ino uint32
    pkg syscall (freebsd-386), type Stat_t struct, Lspare int32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 25 00:13:30 GMT 2023
    - 34.6K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/fakes_test.go

    	f.addedPods.Add(1)
    	return f.addError
    }
    
    func (f *fakeZtunnel) Close() error {
    	return nil
    }
    
    // fakeNs is a mock struct for testing
    type fakeNs struct {
    	closed *atomic.Bool
    	fd     uintptr
    	inode  uint64
    }
    
    func newFakeNs(fd uintptr) *fakeNs {
    	// the fake inode is the fd! magic.
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 3.9K bytes
    - Viewed (0)
Back to top