Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for rR (0.04 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    				r := relocs.At(ri)
    				rr, ok := extreloc(ctxt, ldr, s, r)
    				if !ok {
    					continue
    				}
    				if rr.Xsym == 0 {
    					ldr.Errorf(s, "missing xsym in relocation")
    					continue
    				}
    				if ldr.SymDynid(rr.Xsym) < 0 {
    					ldr.Errorf(s, "reloc %s to non-coff symbol %s (outer=%s) %d %d", r.Type(), ldr.SymName(r.Sym()), ldr.SymName(rr.Xsym), ldr.SymType(r.Sym()), ldr.SymDynid(rr.Xsym))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    			}
    			if !ldr.AttrReachable(rr.Xsym) {
    				ldr.Errorf(s, "unreachable reloc %d (%s) target %v", r.Type(), sym.RelocName(ctxt.Arch, r.Type()), ldr.SymName(rr.Xsym))
    			}
    			if !thearch.ELF.Reloc1(ctxt, out, ldr, s, rr, ri, int64(uint64(ldr.SymValue(s)+int64(r.Off()))-sect.Vaddr)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/net/http/fs_test.go

    	}
    	for _, tt := range tests {
    		var log []string
    		rr := httptest.NewRecorder()
    		req, _ := NewRequest("GET", "http://foo.localhost"+tt.path, nil)
    		FileServer(fileServerCleanPathDir{&log}).ServeHTTP(rr, req)
    		if !reflect.DeepEqual(log, tt.wantOpen) {
    			t.Logf("For %s: Opens = %q; want %q", tt.path, log, tt.wantOpen)
    		}
    		if rr.Code != tt.wantCode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    		return &Type{Size: p.PtrSize, Align: p.PtrSize, C: c("GoChan")}
    	case *ast.Ident:
    		goTypesFixup := func(r *Type) *Type {
    			if r.Size == 0 { // int or uint
    				rr := new(Type)
    				*rr = *r
    				rr.Size = p.IntSize
    				rr.Align = p.IntSize
    				r = rr
    			}
    			if r.Align > p.PtrSize {
    				r.Align = p.PtrSize
    			}
    			return r
    		}
    		// Look up the type in the top level declarations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. 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)
  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. src/cmd/internal/obj/loong64/asm.go

    		return 0x4 << 10
    	case ACLZ:
    		return 0x5 << 10
    	case ARDTIMELW:
    		return 0x18 << 10
    	case ARDTIMEHW:
    		return 0x19 << 10
    	case ARDTIMED:
    		return 0x1a << 10
    	}
    
    	c.ctxt.Diag("bad rr opcode %v", a)
    	return 0
    }
    
    func (c *ctxt0) opi(a obj.As) uint32 {
    	switch a {
    	case ASYSCALL:
    		return 0x56 << 15
    	case ABREAK:
    		return 0x54 << 15
    	case ADBAR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/asm5.go

    		// Same here, but for shifts encoded in Addrs.
    		// Don't do it for the extension ops, which
    		// need to keep their RR shifts.
    		fixShift := func(a *obj.Addr) {
    			if a.Type == obj.TYPE_SHIFT {
    				typ := a.Offset & SHIFT_RR
    				isConst := a.Offset&(1<<4) == 0
    				amount := a.Offset >> 7 & 0x1f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    nartattelrab?ssela??epmi?ugil??tnelav&-obiv?obiv??vap?z&e&nev?ps&-al?al???irog???l&iuqa!l??leib??m&or?rap??n!acsot?e&dom?is?sec&-&ilrof?ìlrof??ilrof?ìlrof???g&amor&-ailime?ailime??edras?olob??i&ssem?tal??ne!var??o&cna?merc?rev?vas???oneg?p?r!a&csep?rr&ac&-assam?assam??ef??von??etam?tsailgo!-lled?lled???s!ip?sam&-ararrac?ararrac??u&caris?gar???t!a&cilisab?recam??resac?soa!-&d&-&ellav?lav??ellav?lav??ellav??d&-&ellav?lav??ellav?lav??ellav??te&lrab&-&airdna-inart?inart-airdna??airdnainart?inartaird...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top