Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 90 for rr (0.1 sec)

  1. src/net/dnsclient_unix_test.go

    	if err != nil {
    		t.Fatalf("LookupMX: %v", err)
    	}
    	if want := []*MX{&MX{Host: "."}}; !reflect.DeepEqual(rrset, want) {
    		records := []string{}
    		for _, rr := range rrset {
    			records = append(records, fmt.Sprintf("%v", rr))
    		}
    		t.Errorf("records = [%v]; want [%v]", strings.Join(records, " "), want[0])
    	}
    }
    
    func TestRootNS(t *testing.T) {
    	// See https://golang.org/issue/45715.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/math/big/natdiv.go

    // The caller must ensure that len(z) = len(x).
    func divWVW(z []Word, xn Word, x []Word, y Word) (r Word) {
    	r = xn
    	if len(x) == 1 {
    		qq, rr := bits.Div(uint(r), uint(x[0]), uint(y))
    		z[0] = Word(qq)
    		return Word(rr)
    	}
    	rec := reciprocalWord(y)
    	for i := len(z) - 1; i >= 0; i-- {
    		z[i], r = divWW(r, x[i], y, rec)
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. src/runtime/asm_arm.s

    	MOVW	_cgo_sys_thread_create(SB), R2
    	CMP	$0, R2
    	BEQ	nocgo
    	MOVW	$_rt0_arm_lib_go<>(SB), R0
    	MOVW	$0, R1
    	BL	(R2)
    	B	rr
    nocgo:
    	MOVW	$0x800000, R0                     // stacksize = 8192KB
    	MOVW	$_rt0_arm_lib_go<>(SB), R1  // fn
    	MOVW	R0, 4(R13)
    	MOVW	R1, 8(R13)
    	BL	runtime·newosproc0(SB)
    rr:
    	// Restore callee-save registers and return.
    	MOVB    runtime·goarmsoftfp(SB), R11
    	CMP     $0, R11
    	BNE     skipfprest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    },write:function(t){He(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,ot(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}},rr={props:{container:Boolean},data:{container:!0},computed:{container:function(t){var e=t.container;return!0===e&&this.$container||e&&Ce(e)}}},or=[],sr={mixins:[hn,rr,un],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{p...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/arm64/asm.go

    	case objabi.R_ARM64_GOTPCREL,
    		objabi.R_ARM64_PCREL_LDST8,
    		objabi.R_ARM64_PCREL_LDST16,
    		objabi.R_ARM64_PCREL_LDST32,
    		objabi.R_ARM64_PCREL_LDST64,
    		objabi.R_ADDRARM64:
    		rr := ld.ExtrelocViaOuterSym(ldr, r, s)
    		return rr, true
    	case objabi.R_CALLARM64,
    		objabi.R_ARM64_TLS_LE,
    		objabi.R_ARM64_TLS_IE:
    		return ld.ExtrelocSimple(ldr, r), true
    	}
    	return loader.ExtReloc{}, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    		if bi := l.builtinSyms[s.SymIdx]; bi != 0 {
    			return bi
    		}
    		l.reportMissingBuiltin(int(s.SymIdx), r.unit.Lib.Pkg)
    		return 0
    	case goobj.PkgIdxSelf:
    		rr = r
    	default:
    		rr = l.objs[r.pkg[p]]
    	}
    	return l.toGlobal(rr, s.SymIdx)
    }
    
    // reportMissingBuiltin issues an error in the case where we have a
    // relocation against a runtime builtin whose definition is not found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	// https://github.com/kubernetes/kubernetes/issues/119656
    	kubeIPVSOutFilterChain utiliptables.Chain = "KUBE-IPVS-OUT-FILTER"
    
    	// defaultScheduler is the default ipvs scheduler algorithm - round robin.
    	defaultScheduler = "rr"
    
    	// defaultDummyDevice is the default dummy interface which ipvs service address will bind to it.
    	defaultDummyDevice = "kube-ipvs0"
    )
    
    // In IPVS proxy mode, the following flags need to be set
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    119A0..119A7  ; valid                                  # 12.0 NANDINAGARI LETTER A..NANDINAGARI LETTER VOCALIC RR
    119A8..119A9  ; disallowed                             # NA   <reserved-119A8>..<reserved-119A9>
    119AA..119D7  ; valid                                  # 12.0 NANDINAGARI LETTER E..NANDINAGARI VOWEL SIGN VOCALIC RR
    119D8..119D9  ; disallowed                             # NA   <reserved-119D8>..<reserved-119D9>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwice

    00000180  0b e3 d5 59 d2 55 2f d4  a7 d5 0a 38 62 c2 a6 78  |...Y.U/....8b..x|
    00000190  19 23 46 84 41 41 3d 7a  84 22 94 f1 b0 85 83 62  |.#F.AA=z.".....b|
    000001a0  17 1a 46 70 80 f7 be 0d  98 d0 07 52 52 7f ab 7f  |..Fp.......RR...|
    000001b0  d3 b9 5c eb 39 10 d4 ff  6f ba 07 0c e6 77 30 0f  |..\.9...o....w0.|
    000001c0  e2 b0 b4 40 97 f6 6b cb  53 3b 49 6f 80 7c 34 95  |...@..k.S;Io.|4.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    Py(),q5=Iy(),R5=Ry(),M5=By(),B5=Ly(),F5=$y(),L5=zy(),N5=Wy(),$5=Hy(),j5=Qy(),z5=Xy(),V5=Zy(),U5=rw(),W5=nw(),G5=aw(),H5=uw(),Y5=cw(),Q5=dw(),J5=gw(),X5=ww(),K5=vw(),Z5=Tw(),eO=Iw(),tO=Mw(),rO=Fw(),iO=Nw(),nO=jw(),sO=Vw(),aO=Ww();rr.hack(s5);rr.hack(a5);rr.hack(o5);rr.hack(l5);B.hack(u5);B.hack(f5);B.hack(c5);B.hack(p5);B.hack(d5);B.hack(h5);B.hack(m5);B.hack(g5);B.hack(y5);B.hack(w5);B.hack(b5);B.hack(v5);B.hack(x5);B.hack(k5);B.hack(S5);B.hack(C5);B.hack(A5);B.hack(_5);B.hack(O5);B.hack(E5);B.h...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top