Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 125 for opAddr (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    // IPv4-mapped IPv6 addresses (e.g. ::ffff:1.2.3.4) are not allowed.
    // IP addresses with zones (e.g. fe80::1%eth0) are not allowed.
    // Leading zeros in IPv4 address octets are not allowed.
    //
    //	ip(<string>) <IPAddr>
    //
    // Examples:
    //
    //	ip('127.0.0.1') // returns an IPv4 address
    //	ip('::1') // returns an IPv6 address
    //	ip('127.0.0.256') // error
    //	ip(':::1') // error
    //
    // isIP
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	op_D       uint32 = 0x5D00 // FORMAT_RX1        DIVIDE (32<-64)
    	op_DD      uint32 = 0x6D00 // FORMAT_RX1        DIVIDE (long HFP)
    	op_DDB     uint32 = 0xED1D // FORMAT_RXE        DIVIDE (long BFP)
    	op_DDBR    uint32 = 0xB31D // FORMAT_RRE        DIVIDE (long BFP)
    	op_DDR     uint32 = 0x2D00 // FORMAT_RR         DIVIDE (long HFP)
    	op_DDTR    uint32 = 0xB3D1 // FORMAT_RRF1       DIVIDE (long DFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    	Tick    int32
    	Tickadj int32
    	Stathz  int32
    	Profhz  int32
    }
    
    type CtlInfo struct {
    	Id   uint32
    	Name [96]byte
    }
    
    const SizeofKinfoProc = 0x288
    
    type Eproc struct {
    	Paddr   uintptr
    	Sess    uintptr
    	Pcred   Pcred
    	Ucred   Ucred
    	Vm      Vmspace
    	Ppid    int32
    	Pgid    int32
    	Jobc    int16
    	Tdev    int32
    	Tpgid   int32
    	Tsess   uintptr
    	Wmesg   [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/staticinit/sched.go

    		return true
    
    	case ir.ONIL:
    		return true
    
    	case ir.OLITERAL:
    		if ir.IsZero(r) {
    			return true
    		}
    		staticdata.InitConst(l, loff, r, int(typ.Size()))
    		return true
    
    	case ir.OADDR:
    		r := r.(*ir.AddrExpr)
    		if a, ok := r.X.(*ir.Name); ok && a.Op() == ir.ONAME {
    			staticdata.InitAddr(l, loff, staticdata.GlobalLinksym(a))
    			return true
    		}
    
    	case ir.OPTRLIT:
    		r := r.(*ir.AddrExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    			nxt.Args[0], nxt.Args[1] = nxt.Args[1], nxt.Args[0]
    		}
    
    		switch nxt.Op {
    		case OpAdd8:
    			nxt.Op = OpSub8
    		case OpAdd16:
    			nxt.Op = OpSub16
    		case OpAdd32:
    			nxt.Op = OpSub32
    		case OpAdd64:
    			nxt.Op = OpSub64
    		case OpSub8:
    			nxt.Op = OpAdd8
    		case OpSub16:
    			nxt.Op = OpAdd16
    		case OpSub32:
    			nxt.Op = OpAdd32
    		case OpSub64:
    			nxt.Op = OpAdd64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. pkg/dns/client/dns.go

    		}
    		if len(v6) > 0 {
    			addresses = append(addresses, net.JoinHostPort("::1", port))
    		}
    	}
    	for _, ipAddr := range addresses {
    		for _, proto := range []string{"udp", "tcp"} {
    			proxy, err := newDNSProxy(proto, ipAddr, h)
    			if err != nil {
    				return nil, err
    			}
    			h.dnsProxies = append(h.dnsProxies, proxy)
    
    		}
    	}
    
    	return h, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.Op = OpPPC64FADDS
    		return true
    	case OpAdd64:
    		v.Op = OpPPC64ADD
    		return true
    	case OpAdd64F:
    		v.Op = OpPPC64FADD
    		return true
    	case OpAdd8:
    		v.Op = OpPPC64ADD
    		return true
    	case OpAddPtr:
    		v.Op = OpPPC64ADD
    		return true
    	case OpAddr:
    		return rewriteValuePPC64_OpAddr(v)
    	case OpAnd16:
    		v.Op = OpPPC64AND
    		return true
    	case OpAnd32:
    		v.Op = OpPPC64AND
    		return true
    	case OpAnd64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  8. test/newinline.go

    }
    
    func gd2() int { // ERROR "can inline gd2"
    	return 1
    }
    
    func gd3() func() { // ERROR "can inline gd3"
    	return ii
    }
    
    // Issue #42788 - ensure ODEREF OCONVNOP* OADDR is low cost.
    func EncodeQuad(d []uint32, x [6]float32) { // ERROR "can inline EncodeQuad" "d does not escape"
    	_ = d[:6]
    	d[0] = float32bits(x[0]) // ERROR "inlining call to float32bits"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. pkg/proxy/endpointschangetracker.go

    	// begin flowing to the new endpoints.
    	NewlyActiveUDPServices []ServicePortName
    
    	// List of the trigger times for all endpoints objects that changed. It's used to export the
    	// network programming latency.
    	// NOTE(oxddr): this can be simplified to []time.Time if memory consumption becomes an issue.
    	LastChangeTriggerTimes map[types.NamespacedName][]time.Time
    }
    
    // EndpointsMap maps a service name to a list of all its Endpoints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. api/go1.7.txt

    pkg net/http/httptrace, type ClientTrace struct, WroteRequest func(WroteRequestInfo)
    pkg net/http/httptrace, type DNSDoneInfo struct
    pkg net/http/httptrace, type DNSDoneInfo struct, Addrs []net.IPAddr
    pkg net/http/httptrace, type DNSDoneInfo struct, Coalesced bool
    pkg net/http/httptrace, type DNSDoneInfo struct, Err error
    pkg net/http/httptrace, type DNSStartInfo struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
Back to top