Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for lL (0.03 sec)

  1. src/internal/runtime/atomic/atomic_mips64x.s

    	MOVV	$0xFF, R5
    	SLLV	R4, R2
    	SLLV	R4, R5
    	NOR	R0, R5
    	OR	R5, R2
    
    	SYNC
    	LL	(R3), R4
    	AND	R2, R4
    	SC	R4, (R3)
    	BEQ	R4, -4(PC)
    	SYNC
    	RET
    
    // func Or(addr *uint32, v uint32)
    TEXT ·Or(SB), NOSPLIT, $0-12
    	MOVV	ptr+0(FP), R1
    	MOVW	val+8(FP), R2
    
    	SYNC
    	LL	(R1), R3
    	OR	R2, R3
    	SC	R3, (R1)
    	BEQ	R3, -4(PC)
    	SYNC
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/route/route_openbsd.go

    		Seq:     int(nativeEndian.Uint32(b[28:32])),
    		raw:     b[:l],
    	}
    	ll := int(nativeEndian.Uint16(b[4:6]))
    	if len(b) < ll {
    		return nil, errInvalidMessage
    	}
    	errno := syscall.Errno(nativeEndian.Uint32(b[32:36]))
    	if errno != 0 {
    		m.Err = errno
    	}
    	as, err := parseAddrs(uint(nativeEndian.Uint32(b[12:16])), parseKernelInetAddr, b[ll:])
    	if err != nil {
    		return nil, err
    	}
    	m.Addrs = as
    	return m, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/unicode/letter_test.go

    	{LowerCase, 'å', 'å'},
    	{TitleCase, 0x80, 0x80},
    	{TitleCase, 'Å', 'Å'},
    	{TitleCase, 'å', 'Å'},
    
    	// 0131;LATIN SMALL LETTER DOTLESS I;Ll;0;L;;;;;N;;;0049;;0049
    	{UpperCase, 0x0131, 'I'},
    	{LowerCase, 0x0131, 0x0131},
    	{TitleCase, 0x0131, 'I'},
    
    	// 0133;LATIN SMALL LIGATURE IJ;Ll;0;L;<compat> 0069 006A;;;;N;LATIN SMALL LETTER I J;;0132;;0132
    	{UpperCase, 0x0133, 0x0132},
    	{LowerCase, 0x0133, 0x0133},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/route/interface_openbsd.go

    		Flags:   int(nativeEndian.Uint32(b[16:20])),
    		Index:   int(nativeEndian.Uint16(b[6:8])),
    		Addrs:   make([]Addr, syscall.RTAX_MAX),
    		raw:     b[:l],
    	}
    	ll := int(nativeEndian.Uint16(b[4:6]))
    	if len(b) < ll {
    		return nil, errInvalidMessage
    	}
    	a, err := parseLinkAddr(b[ll:])
    	if err != nil {
    		return nil, err
    	}
    	m.Addrs[syscall.RTAX_IFP] = a
    	m.Name = a.(*LinkAddr).Name
    	return m, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/lif/address.go

    		for _, ep := range eps {
    			ep.close()
    		}
    	}()
    	lls, err := links(eps, name)
    	if len(lls) == 0 {
    		return nil, err
    	}
    	var as []Addr
    	for _, ll := range lls {
    		var lifr lifreq
    		for i := 0; i < len(ll.Name); i++ {
    			lifr.Name[i] = int8(ll.Name[i])
    		}
    		for _, ep := range eps {
    			ioc := int64(syscall.SIOCGLIFADDR)
    			err := ioctl(ep.s, uintptr(ioc), unsafe.Pointer(&lifr))
    			if err != nil {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/grpcgen/lds.go

    		extrAddresses := si.Service.GetExtraAddressesForProxy(node)
    		if len(extrAddresses) > 0 {
    			ll.AdditionalAddresses = util.BuildAdditionalAddresses(extrAddresses, uint32(listenPort))
    		}
    
    		out = append(out, &discovery.Resource{
    			Name:     ll.Name,
    			Resource: protoconv.MessageToAny(ll),
    		})
    	}
    	return out
    }
    
    // nolint: unparam
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/builtins1.go

    	assert(bb == 8)
    	const _ = unsafe /* ERROR "not constant" */ .Alignof(a)
    	const _ = unsafe /* ERROR "not constant" */ .Alignof(s)
    	const pp = unsafe.Alignof(p)
    	assert(pp == 8)
    	const ll = unsafe.Alignof(l)
    	assert(ll == 8)
    	const ff = unsafe.Alignof(f)
    	assert(ff == 8)
    	const ii = unsafe.Alignof(i)
    	assert(ii == 8)
    	const cc = unsafe.Alignof(c)
    	assert(cc == 8)
    	const mm = unsafe.Alignof(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 21:16:29 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/assign.go

    			walkStmtList(init)
    			early.Append(init...)
    
    			switch ll := l.(type) {
    			case *ir.IndexExpr:
    				if ll.X.Type().IsArray() {
    					save(&ll.Index)
    					l = ll.X
    					continue
    				}
    			case *ir.ParenExpr:
    				l = ll.X
    				continue
    			case *ir.SelectorExpr:
    				if ll.Op() == ir.ODOT {
    					l = ll.X
    					continue
    				}
    			}
    			break
    		}
    
    		var name *ir.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. pilot/test/xdstest/extract.go

    func ExtractResource(res model.Resources) sets.String {
    	s := sets.New[string]()
    	for _, v := range res {
    		s.Insert(v.Name)
    	}
    	return s
    }
    
    func ExtractRoutesFromListeners(ll []*listener.Listener) []string {
    	routes := []string{}
    	for _, l := range ll {
    		for _, fc := range l.FilterChains {
    			for _, filter := range fc.Filters {
    				if filter.Name == wellknown.HTTPConnectionManager {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/moment-with-locales.min.js

    luns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:fu...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
Back to top