Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 377 for asSlice (0.1 sec)

  1. src/net/tcpsock.go

    // then the returned TCPAddr will contain a nil IP field, indicating an
    // address family-agnostic unspecified address.
    func TCPAddrFromAddrPort(addr netip.AddrPort) *TCPAddr {
    	return &TCPAddr{
    		IP:   addr.Addr().AsSlice(),
    		Zone: addr.Addr().Zone(),
    		Port: int(addr.Port()),
    	}
    }
    
    // TCPConn is an implementation of the [Conn] interface for TCP network
    // connections.
    type TCPConn struct {
    	conn
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    			ipa, err := netip.ParseAddr(m)
    			if err != nil {
    				continue
    			}
    
    			ipAddr = ipa
    			maxCidrPrefix = uint32(ipAddr.BitLen())
    		}
    
    		res = append(res, &security.Address{
    			Address: ipAddr.AsSlice(),
    			Length:  maxCidrPrefix,
    		})
    	}
    	return res
    }
    
    func isMtlsModeUnset(mtls *v1beta1.PeerAuthentication_MutualTLS) bool {
    	return mtls == nil || mtls.Mode == v1beta1.PeerAuthentication_MutualTLS_UNSET
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/net/netip/netip.go

    // AddrFromSlice parses the 4- or 16-byte byte slice as an IPv4 or IPv6 address.
    // Note that a [net.IP] can be passed directly as the []byte argument.
    // If slice's length is not 4 or 16, AddrFromSlice returns [Addr]{}, false.
    func AddrFromSlice(slice []byte) (ip Addr, ok bool) {
    	switch len(slice) {
    	case 4:
    		return AddrFrom4([4]byte(slice)), true
    	case 16:
    		return AddrFrom16([16]byte(slice)), true
    	}
    	return Addr{}, false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. src/net/lookup.go

    // It returns a slice of that host's addresses.
    //
    // LookupHost uses [context.Background] internally; to specify the context, use
    // [Resolver.LookupHost].
    func LookupHost(host string) (addrs []string, err error) {
    	return DefaultResolver.LookupHost(context.Background(), host)
    }
    
    // LookupHost looks up the given host using the local resolver.
    // It returns a slice of that host's addresses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. src/runtime/slice.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"runtime/internal/math"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    type slice struct {
    	array unsafe.Pointer
    	len   int
    	cap   int
    }
    
    // A notInHeapSlice is a slice backed by runtime/internal/sys.NotInHeap memory.
    type notInHeapSlice struct {
    	array *notInHeap
    	len   int
    	cap   int
    }
    
    func panicmakeslicelen() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/expr.go

    	// restrict to slice/map/func == nil and nil == slice/map/func.
    	if l.Type().IsArray() && !types.IsComparable(l.Type()) {
    		base.Errorf("invalid operation: %v (%v cannot be compared)", n, l.Type())
    		return l, r, nil
    	}
    
    	if l.Type().IsSlice() && !ir.IsNil(l) && !ir.IsNil(r) {
    		base.Errorf("invalid operation: %v (slice can only be compared to nil)", n)
    		return l, r, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/func.go

    	// copy([]byte, string)
    	if n.X.Type().IsSlice() && n.Y.Type().IsString() {
    		if types.Identical(n.X.Type().Elem(), types.ByteType) {
    			return n
    		}
    		base.Errorf("arguments to copy have different element types: %L and string", n.X.Type())
    		n.SetType(nil)
    		return n
    	}
    
    	if !n.X.Type().IsSlice() || !n.Y.Type().IsSlice() {
    		if !n.X.Type().IsSlice() && !n.Y.Type().IsSlice() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/subr.go

    		return ir.ORUNESTR, ""
    	}
    
    	if src.IsSlice() && dst.IsString() {
    		if src.Elem().Kind() == types.ByteType.Kind() {
    			return ir.OBYTES2STR, ""
    		}
    		if src.Elem().Kind() == types.RuneType.Kind() {
    			return ir.ORUNES2STR, ""
    		}
    	}
    
    	// 7. src is a string and dst is []byte or []rune.
    	// String to slice.
    	if src.IsString() && dst.IsSlice() {
    		if dst.Elem().Kind() == types.ByteType.Kind() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. src/os/readfrom_linux_test.go

    		}
    	} else {
    		r = src
    	}
    	// Now call ReadFrom (through io.Copy), which will hopefully call poll.Splice
    	n, err := io.Copy(dst, r)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// We should have called poll.Splice with the right file descriptor arguments.
    	if n > 0 && !hook.called {
    		t.Fatal("expected to called poll.Splice")
    	}
    	if hook.called && hook.dstfd != int(dst.Fd()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                rootProject.name = 'test'
            """
            def main = ivyRepo.module("org", "foo")
                .configuration("bob")
                .configuration("alice")
                .dependsOn(organisation: "org", module: "bar", revision: "1.0", conf: 'alice->extra')
            main.configurations.remove('default')
            main.publish()
    
            def dep = ivyRepo.module("org", "bar", "1.0")
                .configuration("extra")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top