Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for Ll (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/adsc/adsc.go

    		case v3.ListenerType:
    			listeners := make([]*listener.Listener, 0, len(msg.Resources))
    			for _, rsc := range msg.Resources {
    				valBytes := rsc.Value
    				ll := &listener.Listener{}
    				_ = proto.Unmarshal(valBytes, ll)
    				listeners = append(listeners, ll)
    			}
    			a.handleLDS(listeners)
    		case v3.ClusterType:
    			clusters := make([]*cluster.Cluster, 0, len(msg.Resources))
    			for _, rsc := range msg.Resources {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		sc := &cookiev3.CookieBasedSessionState{}
    		filterIndex := -1
    		for _, rsc := range msg.Resources {
    			valBytes := rsc.Value
    			ll := &listener.Listener{}
    			_ = proto.Unmarshal(valBytes, ll)
    			if strings.HasPrefix(ll.Name, "echo-persistent.test.svc.cluster.local:") {
    				proto.Unmarshal(ll.ApiListener.ApiListener.Value, hcm)
    				for index, f := range hcm.HttpFilters {
    					if f.Name == util.StatefulSessionFilter {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. istioctl/pkg/admin/istiodconfig.go

    	}
    
    	return nil
    }
    
    type logLevelState struct {
    	client         *ControlzClient
    	outputLogLevel string
    }
    
    func (ll *logLevelState) run(_ io.Writer) error {
    	scopeInfos, err := newScopeInfosFromScopeLevelPairs(ll.outputLogLevel)
    	if err != nil {
    		return err
    	}
    	err = ll.client.PutScopes(scopeInfos)
    	if err != nil {
    		return err
    	}
    	return nil
    }
    
    type stackTraceLevelState struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. src/internal/profile/merge.go

    		l.Line[i] = pm.mapLine(ln)
    	}
    	// Check memoization table. Must be done on the remapped location to
    	// account for the remapped mapping ID.
    	k := l.key()
    	if ll, ok := pm.locations[k]; ok {
    		pm.locationsByID[src.ID] = ll
    		return ll
    	}
    	pm.locationsByID[src.ID] = l
    	pm.locations[k] = l
    	pm.p.Location = append(pm.p.Location, l)
    	return l
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		// SYNC
    		// LL	(Rarg0), Rout
    		// MOVW Rarg1, Rtmp
    		// SC	Rtmp, (Rarg0)
    		// BEQ	Rtmp, -3(PC)
    		// SYNC
    		{name: "LoweredAtomicExchange", argLength: 3, reg: gpxchg, resultNotInArgs: true, faultOnNilArg0: true, hasSideEffects: true, unsafePoint: true},
    
    		// atomic add.
    		// *arg0 += arg1. arg2=mem. returns <new content of *arg0, memory>.
    		// SYNC
    		// LL	(Rarg0), Rout
    		// ADDU Rarg1, Rout, Rtmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top