Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for MatchString (0.35 sec)

  1. cmd/endpoint.go

    				return net.JoinHostPort(ip, port)
    			})
    
    			ipList = ipList.Union(IPsWithPort)
    		}
    
    		ipList.Add(net.JoinHostPort(host, port))
    	}
    
    	globalDomainIPs = ipList.FuncMatch(func(ip string, matchString string) bool {
    		host, _, err := net.SplitHostPort(ip)
    		if err != nil {
    			host = ip
    		}
    		return !net.ParseIP(host).IsLoopback() && host != "localhost"
    	}, "")
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 34.1K bytes
    - Viewed (0)
  2. cmd/server_test.go

    			`<DeleteMarker><Key>file.2</Key>.*<IsLatest>true</IsLatest>.*</DeleteMarker>` +
    			`<Version><Key>file.2</Key>.*<IsLatest>false</IsLatest>.*</Version>` +
    			`</ListVersionsResult>`)
    
    	c.Assert(r.MatchString(string(getContent)), true)
    }
    
    // TestListObjectsSpecialCharactersHandler - Setting valid parameters to List Objects
    // and then asserting the response with the expected one.
    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 CompilePOSIX(string) (*Regexp, error)
    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
    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 (1)
Back to top