Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for ifmat6 (0.48 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    	SizeofRtMetrics   = 0x38
    )
    
    type IfMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Data    IfData
    }
    
    type IfData struct {
    	Type       uint8
    	Typelen    uint8
    	Physical   uint8
    	Addrlen    uint8
    	Hdrlen     uint8
    	Recvquota  uint8
    	Xmitquota  uint8
    	Unused1    uint8
    	Mtu        uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. cmd/object-handlers-common.go

    		}
    	}
    
    	// If-Match : Return the object only if its entity tag (ETag) is the same as the one specified;
    	// otherwise return a 412 (precondition failed).
    	ifMatchETagHeader := r.Header.Get(xhttp.IfMatch)
    	if ifMatchETagHeader != "" {
    		if !isETagEqual(objInfo.ETag, ifMatchETagHeader) {
    			// If the object ETag does not match with the specified ETag.
    			writeHeaders()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), type IfData struct, Reserved1 uint32
    pkg syscall (darwin-arm64), type IfData struct, Reserved2 uint32
    pkg syscall (darwin-arm64), type IfData struct, Type uint8
    pkg syscall (darwin-arm64), type IfData struct, Typelen uint8
    pkg syscall (darwin-arm64), type IfData struct, Unused1 uint8
    pkg syscall (darwin-arm64), type IfData struct, Unused2 uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/nettest/nettest.go

    			continue
    		}
    		return &ifi, nil
    	}
    	return nil, errNoAvailableInterface
    }
    
    func hasRoutableIP(network string, ifi *net.Interface) (net.IP, bool) {
    	ifat, err := ifi.Addrs()
    	if err != nil {
    		return nil, false
    	}
    	for _, ifa := range ifat {
    		switch ifa := ifa.(type) {
    		case *net.IPAddr:
    			if ip, ok := routableIP(network, ifa.IP); ok {
    				return ip, true
    			}
    		case *net.IPNet:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), type IfData struct, Hwassist uint64
    pkg syscall (freebsd-arm64), type IfData struct, Ibytes uint64
    pkg syscall (freebsd-arm64), type IfData struct, Ierrors uint64
    pkg syscall (freebsd-arm64), type IfData struct, Imcasts uint64
    pkg syscall (freebsd-arm64), type IfData struct, Ipackets uint64
    pkg syscall (freebsd-arm64), type IfData struct, Iqdrops uint64
    pkg syscall (freebsd-arm64), type IfData struct, Lastchange Timeval
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IfData.Ipackets", Field, 0},
    		{"IfData.Iqdrops", Field, 0},
    		{"IfData.Lastchange", Field, 0},
    		{"IfData.Link_state", Field, 0},
    		{"IfData.Mclpool", Field, 2},
    		{"IfData.Metric", Field, 0},
    		{"IfData.Mtu", Field, 0},
    		{"IfData.Noproto", Field, 0},
    		{"IfData.Obytes", Field, 0},
    		{"IfData.Oerrors", Field, 0},
    		{"IfData.Omcasts", Field, 0},
    		{"IfData.Opackets", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. internal/http/headers.go

    const (
    	XCache       = "X-Cache"
    	XCacheLookup = "X-Cache-Lookup"
    )
    
    // Standard S3 HTTP request constants
    const (
    	IfModifiedSince   = "If-Modified-Since"
    	IfUnmodifiedSince = "If-Unmodified-Since"
    	IfMatch           = "If-Match"
    	IfNoneMatch       = "If-None-Match"
    
    	// Request tags used in GetObjectAttributes
    	Checksum     = "Checksum"
    	StorageClass = "StorageClass"
    	ObjectSize   = "ObjectSize"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. api/go1.20.txt

    pkg syscall (freebsd-riscv64), type IfData struct, Hwassist uint64 #53466
    pkg syscall (freebsd-riscv64), type IfData struct, Ibytes uint64 #53466
    pkg syscall (freebsd-riscv64), type IfData struct, Ierrors uint64 #53466
    pkg syscall (freebsd-riscv64), type IfData struct, Imcasts uint64 #53466
    pkg syscall (freebsd-riscv64), type IfData struct, Ipackets uint64 #53466
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  9. cmd/object-multipart-handlers.go

    	opts, err := putOptsFromReq(ctx, r, bucket, object, metadata)
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	if opts.PreserveETag != "" ||
    		r.Header.Get(xhttp.IfMatch) != "" ||
    		r.Header.Get(xhttp.IfNoneMatch) != "" {
    		opts.CheckPrecondFn = func(oi ObjectInfo) bool {
    			if _, err := DecryptObjectInfo(&oi, r); err != nil {
    				writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    Candidate multilib: x32;@mx32
    Selected multilib: .;@m64
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top