Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for MustCompile (0.22 sec)

  1. istioctl/pkg/proxyconfig/proxyconfig.go

    						}
    					} else {
    						logParts := strings.Split(ol, "::") // account for any specified namespace
    						loggerAndLevelOnly := logParts[len(logParts)-1]
    						loggerLevel := regexp.MustCompile(`[:=]`).Split(loggerAndLevelOnly, 2)
    						if !strings.Contains(loggerName, loggerLevel[0]) && loggerLevel[0] != defaultLoggerName {
    							return fmt.Errorf("unrecognized logger name: %v", loggerLevel[0])
    						}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 48K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	getContent, err := io.ReadAll(response.Body)
    	c.Assert(err, nil)
    
    	r := regexp.MustCompile(
    		`<ListVersionsResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/">.*` +
    			`<DeleteMarker><Key>file.1</Key>.*<IsLatest>true</IsLatest>.*</DeleteMarker>` +
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg regexp, func Match(string, []uint8) (bool, error)
    pkg regexp, func MatchReader(string, io.RuneReader) (bool, error)
    pkg regexp, func MatchString(string, string) (bool, error)
    pkg regexp, func MustCompile(string) *Regexp
    pkg regexp, func MustCompilePOSIX(string) *Regexp
    pkg regexp, func QuoteMeta(string) string
    pkg regexp, method (*Regexp) Expand([]uint8, []uint8, []uint8, []int) []uint8
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
Back to top