Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for Ll (0.04 sec)

  1. src/vendor/golang.org/x/net/lif/link.go

    			nb = nb[:32]
    			if isDupLink(lls, llname) || name != "" && name != llname {
    				continue
    			}
    			ll := Link{Name: llname, Type: int(lifr.Type)}
    			ll.fetch(ep.s)
    			lls = append(lls, ll)
    		}
    	}
    	return lls, nil
    }
    
    func isDupLink(lls []Link, name string) bool {
    	for _, ll := range lls {
    		if ll.Name == name {
    			return true
    		}
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_mipsx.s

    	OR	R5, R2	// Shift val for aligned ptr. R2 = val << R4 | ^(0xFF << R4)
    	SYNC
    try_and8:
    	LL	(R3), R4	// R4 = *R3
    	AND	R2, R4
    	SC	R4, (R3)	// *R3 = R4
    	BEQ	R4, try_and8
    	SYNC
    	RET
    
    // func Or(addr *uint32, v uint32)
    TEXT ·Or(SB), NOSPLIT, $0-8
    	MOVW	ptr+0(FP), R1
    	MOVW	val+4(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
    - 4.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/route/address.go

    	var l int
    	for _, a := range as {
    		switch a := a.(type) {
    		case *LinkAddr:
    			_, ll := a.lenAndSpace()
    			l += ll
    		case *Inet4Addr:
    			_, ll := a.lenAndSpace()
    			l += ll
    		case *Inet6Addr:
    			_, ll := a.lenAndSpace()
    			l += ll
    		case *DefaultAddr:
    			_, ll := a.lenAndSpace()
    			l += ll
    		}
    	}
    	return l
    }
    
    // marshalAddrs marshals as and returns a bitmap indicating which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. cmd/lock-rest-server.go

    )
    
    // To abstract a node over network.
    type lockRESTServer struct {
    	ll *localLocker
    }
    
    // RefreshHandler - refresh the current lock
    func (l *lockRESTServer) RefreshHandler(args *dsync.LockArgs) (*dsync.LockResp, *grid.RemoteErr) {
    	resp := lockRPCRefresh.NewResponse()
    	refreshed, err := l.ll.Refresh(context.Background(), *args)
    	if err != nil {
    		return l.makeResp(resp, err)
    	}
    	if !refreshed {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_loong64.s

    	MOVV	$0xFF, R8
    	SLLV	R7, R5
    	SLLV	R7, R8
    	NOR	R0, R8
    	OR	R8, R5
    
    	DBAR
    	LL	(R6), R7
    	AND	R5, R7
    	SC	R7, (R6)
    	BEQ	R7, -4(PC)
    	DBAR
    	RET
    
    // func Or(addr *uint32, v uint32)
    TEXT ·Or(SB), NOSPLIT, $0-12
    	MOVV	ptr+0(FP), R4
    	MOVW	val+8(FP), R5
    	DBAR
    	LL	(R4), R6
    	OR	R5, R6
    	SC	R6, (R4)
    	BEQ	R6, -4(PC)
    	DBAR
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top