Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ifmat6 (0.53 sec)

  1. src/net/listen_test.go

    		}
    	}
    	ift, err := Interfaces()
    	if err != nil {
    		return false, err
    	}
    	for _, ifi := range ift {
    		ifmat, err := ifi.MulticastAddrs()
    		if err != nil {
    			return false, err
    		}
    		for _, ifma := range ifmat {
    			if ifma.(*IPAddr).IP.Equal(ip) {
    				return true, nil
    			}
    		}
    	}
    	return false, nil
    }
    
    // Issue 21856.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. internal/config/cache/remote_gen.go

    		case "ObjectInfo":
    			err = z.ObjectInfo.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "ObjectInfo")
    				return
    			}
    		case "IfMatch":
    			z.IfMatch, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "IfMatch")
    				return
    			}
    		case "IfNoneMatch":
    			z.IfNoneMatch, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "IfNoneMatch")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 21:46:17 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    	var ifat []net.Addr
    	ifat = []net.Addr{addrStruct{val: "169.254.162.166/16"}, addrStruct{val: "fe80::200/10"}}
    	if intf.Name == LoopbackInterfaceName {
    		ifat = []net.Addr{addrStruct{val: "::1/128"}, addrStruct{val: "127.0.0.1/8"},
    			// global addresses on loopback interface
    			addrStruct{val: "10.1.1.1/32"}, addrStruct{val: "fd00:1:1::1/128"}}
    	}
    	return ifat, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.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)
  5. 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)
  6. 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)
  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. 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)
  9. 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