Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 133 for raddr (0.72 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

                    && ( prt == 0 || prt == this.port ||
                    /* port 139 is ok if 445 was requested */
                            ( prt == 445 && this.port == 139 ) )
                    && ( laddr == this.localAddr || ( laddr != null && laddr.equals(this.localAddr) ) ) && lprt == this.localPort;
        }
    
    
        void ssn139 () throws IOException {
            CIFSContext tc = this.transportContext;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    	Level int32
    	Type  int32
    }
    
    type Inet4Pktinfo struct {
    	Ifindex  uint32
    	Spec_dst [4]byte /* in_addr */
    	Addr     [4]byte /* in_addr */
    }
    
    type Inet6Pktinfo struct {
    	Addr    [16]byte /* in6_addr */
    	Ifindex uint32
    }
    
    type IPv6MTUInfo struct {
    	Addr RawSockaddrInet6
    	Mtu  uint32
    }
    
    type ICMPv6Filter struct {
    	Filt [8]uint32
    }
    
    type TCPConnectionInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. 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)
  4. src/main/webapp/css/admin/adminlte.min.css

    imary .pace-activity::after,.pace-center-atom-primary .pace-activity::before{border-color:#007bff}.pace-center-circle-primary .pace .pace-progress{background:rgba(0,123,255,.8);color:#fff}.pace-center-radar-primary .pace .pace-activity{border-color:#007bff transparent transparent}.pace-center-radar-primary .pace .pace-activity::before{border-color:#007bff transparent transparent}.pace-center-simple-primary .pace{background:#fff;border-color:#007bff}.pace-center-simple-primary .pace .pace-progres...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 641.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/mips64/asm.go

    	elfsym := ld.ElfSymForReloc(ctxt, r.Xsym)
    	out.Write32(uint32(elfsym))
    	out.Write8(0)
    	out.Write8(0)
    	out.Write8(0)
    	switch r.Type {
    	default:
    		return false
    	case objabi.R_ADDR, objabi.R_DWARFSECREF:
    		switch r.Size {
    		case 4:
    			out.Write8(uint8(elf.R_MIPS_32))
    		case 8:
    			out.Write8(uint8(elf.R_MIPS_64))
    		default:
    			return false
    		}
    	case objabi.R_ADDRMIPS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. 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)
  7. src/runtime/sys_linux_mipsx.s

    	RET
    
    TEXT runtime·munmap(SB),NOSPLIT,$0-8
    	MOVW	addr+0(FP), R4
    	MOVW	n+4(FP), R5
    	MOVW	$SYS_munmap, R2
    	SYSCALL
    	BEQ	R7, 2(PC)
    	UNDEF	// crash
    	RET
    
    TEXT runtime·madvise(SB),NOSPLIT,$0-16
    	MOVW	addr+0(FP), R4
    	MOVW	n+4(FP), R5
    	MOVW	flags+8(FP), R6
    	MOVW	$SYS_madvise, R2
    	SYSCALL
    	MOVW	R2, ret+12(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/noder/noder.go

    type linkname struct {
    	pos    syntax.Pos
    	local  string
    	remote string
    }
    
    var unOps = [...]ir.Op{
    	syntax.Recv: ir.ORECV,
    	syntax.Mul:  ir.ODEREF,
    	syntax.And:  ir.OADDR,
    
    	syntax.Not: ir.ONOT,
    	syntax.Xor: ir.OBITNOT,
    	syntax.Add: ir.OPLUS,
    	syntax.Sub: ir.ONEG,
    }
    
    var binOps = [...]ir.Op{
    	syntax.OrOr:   ir.OOROR,
    	syntax.AndAnd: ir.OANDAND,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/expr.go

    	n.X = walkExpr(n.X, init)
    	n.RType = walkExpr(n.RType, init)
    	n.ITab = walkExpr(n.ITab, init)
    	// Convert to non-dynamic if we can.
    	if n.RType != nil && n.RType.Op() == ir.OADDR {
    		addr := n.RType.(*ir.AddrExpr)
    		if addr.X.Op() == ir.OLINKSYMOFFSET {
    			r := ir.NewTypeAssertExpr(n.Pos(), n.X, n.Type())
    			if n.Op() == ir.ODYNAMICDOTTYPE2 {
    				r.SetOp(ir.ODOTTYPE2)
    			}
    			r.SetType(n.Type())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/switch.go

    				dt := n1.(*ir.DynamicType)
    				if dt.RType != nil && dt.RType.Op() == ir.OADDR {
    					addr := dt.RType.(*ir.AddrExpr)
    					if addr.X.Op() == ir.OLINKSYMOFFSET {
    						n1 = ir.TypeNode(n1.Type())
    					}
    				}
    				if dt.ITab != nil && dt.ITab.Op() == ir.OADDR {
    					addr := dt.ITab.(*ir.AddrExpr)
    					if addr.X.Op() == ir.OLINKSYMOFFSET {
    						n1 = ir.TypeNode(n1.Type())
    					}
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top