Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for Rr (0.03 sec)

  1. src/image/gif/writer.go

    		// It is most likely that the palette is full of color.RGBAs, so they
    		// get a fast path.
    		if rgba, ok := c.(color.RGBA); ok {
    			r, g, b = rgba.R, rgba.G, rgba.B
    		} else {
    			rr, gg, bb, _ := c.RGBA()
    			r, g, b = uint8(rr>>8), uint8(gg>>8), uint8(bb>>8)
    		}
    		dst[3*i+0] = r
    		dst[3*i+1] = g
    		dst[3*i+2] = b
    	}
    	n := log2Lookup[size]
    	if n > len(p) {
    		// Pad with black.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.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.AttrReachable(rr.Xsym) {
    				ldr.Errorf(s, "unreachable reloc %d (%s) target %v", r.Type(), sym.RelocName(ctxt.Arch, r.Type()), ldr.SymName(rr.Xsym))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/mvs/mvs_test.go

    		return module.Version{Path: m.Path, Version: "none"}, nil
    	}
    	return p, nil
    }
    
    func (r reqsMap) Required(m module.Version) ([]module.Version, error) {
    	rr, ok := r[m]
    	if !ok {
    		return nil, fmt.Errorf("missing module: %v", m)
    	}
    	return rr, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/model/network.go

    		mu.Lock()
    		defer mu.Unlock()
    		if res.Rcode == dns.RcodeServerFailure {
    			errs = multierror.Append(errs, fmt.Errorf("upstream dns failure, qtype: %v", dnsType))
    			return
    		}
    		for _, rr := range res.Answer {
    			switch record := rr.(type) {
    			case *dns.A:
    				out = append(out, record.A.String())
    			case *dns.AAAA:
    				out = append(out, record.AAAA.String())
    			}
    		}
    		if nextTTL := minimalTTL(res); nextTTL < ttl {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. pkg/xds/server.go

    	return len(rd.Subscribed) == 0 && len(rd.Unsubscribed) == 0
    }
    
    type Resources = []*discovery.Resource
    
    func ResourcesToAny(r Resources) []*anypb.Any {
    	a := make([]*anypb.Any, 0, len(r))
    	for _, rr := range r {
    		a = append(a, rr.Resource)
    	}
    	return a
    }
    
    // WatchedResource tracks an active DiscoveryRequest subscription.
    type WatchedResource struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Server-TLSv10-RSA-AES

    00000020  ca 61 eb 04 54 6d 49 97  02 67 fe 28 79 be 4d 37  |.a..TmI..g.(y.M7|
    00000030  f7 ba e8 e0 2b 90 31 fe  66 d8 04 ad bf fb 2c 05  |....+.1.f.....,.|
    00000040  7e 41 a0 5d 00 47 20 84  83 2c 39 7f 29 aa 72 72  |~A.].G ..,9.).rr|
    00000050  89 e3 c7 bb ea 07 d2 29  94 de 54 23 eb 9f ae fa  |.......)..T#....|
    00000060  3b 9a 23 bd a8 43 11 ab  b5 6c 8a ae c6 71 2c c4  |;.#..C...l...q,.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/link/internal/ld/pe.go

    				r := relocs.At(ri)
    				rr, ok := extreloc(ctxt, ldr, s, r)
    				if !ok {
    					continue
    				}
    				if rr.Xsym == 0 {
    					ctxt.Errorf(s, "missing xsym in relocation")
    					continue
    				}
    				if ldr.SymDynid(rr.Xsym) < 0 {
    					ctxt.Errorf(s, "reloc %d to non-coff symbol %s (outer=%s) %d", r.Type(), ldr.SymName(r.Sym()), ldr.SymName(rr.Xsym), ldr.SymType(r.Sym()))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  10. src/image/gif/reader.go

    }
    
    // decode reads a GIF image from r and stores the result in d.
    func (d *decoder) decode(r io.Reader, configOnly, keepAllFrames bool) error {
    	// Add buffering if r does not provide ReadByte.
    	if rr, ok := r.(reader); ok {
    		d.r = rr
    	} else {
    		d.r = bufio.NewReader(r)
    	}
    
    	d.loopCount = -1
    
    	err := d.readHeaderAndScreenDescriptor()
    	if err != nil {
    		return err
    	}
    	if configOnly {
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top