Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sl (0.42 sec)

  1. istioctl/pkg/admin/istiodconfig.go

    	slParis := strings.Split(scopeLevelPairs, ",")
    	var scopeInfos []*ScopeInfo
    	for _, slp := range slParis {
    		sl, err := newScopeLevelPair(slp, validationPattern)
    		if err != nil {
    			return nil, err
    		}
    		si := &ScopeInfo{
    			Name:        sl.scope,
    			OutputLevel: sl.logLevel,
    		}
    		scopeInfos = append(scopeInfos, si)
    	}
    	return scopeInfos, nil
    }
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/cmd/api/main_test.go

    	ok = true
    
    	featureSet := set(features)
    	exceptionSet := set(exception)
    
    	sort.Strings(features)
    	sort.Strings(required)
    
    	take := func(sl *[]string) string {
    		s := (*sl)[0]
    		*sl = (*sl)[1:]
    		return s
    	}
    
    	for len(features) > 0 || len(required) > 0 {
    		switch {
    		case len(features) == 0 || (len(required) > 0 && required[0] < features[0]):
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top