Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 602 for parsego (0.13 sec)

  1. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    		if m.match(addr, port, ip) {
    			return false
    		}
    	}
    	return true
    }
    
    func (c *config) init() {
    	if parsed, err := parseProxy(c.HTTPProxy); err == nil {
    		c.httpProxy = parsed
    	}
    	if parsed, err := parseProxy(c.HTTPSProxy); err == nil {
    		c.httpsProxy = parsed
    	}
    
    	for _, p := range strings.Split(c.NoProxy, ",") {
    		p = strings.ToLower(strings.TrimSpace(p))
    		if len(p) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionParser.java

    /**
     * Service interface to parse {@link Version} and {@link VersionRange}.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface VersionParser extends Service {
    
        /**
         * Parses the specified version string, for example "1.0".
         *
         * @param version the version string to parse, must not be {@code null}
         * @return the parsed version, never {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/parse.go

    	Position
    	Blocks []Block
    	Links  map[string]*Link
    }
    
    // A Parser is a Markdown parser.
    // The exported fields in the struct can be filled in before calling
    // [Parser.Parse] in order to customize the details of the parsing process.
    // A Parser is safe for concurrent use by multiple goroutines.
    type Parser struct {
    	// HeadingIDs determines whether the parser accepts
    	// the {#hdr} syntax for an HTML id="hdr" attribute on headings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. pkg/test/util/tmpl/parse.go

    	"istio.io/istio/pkg/test"
    )
    
    // Parse the given template content.
    func Parse(tpl string) (*template.Template, error) {
    	t := template.New("test template")
    	return t.Funcs(sprig.TxtFuncMap()).Parse(tpl)
    }
    
    // ParseOrFail calls Parse and fails tests if it returns error.
    func ParseOrFail(t test.Failer, tpl string) *template.Template {
    	t.Helper()
    	tpl2, err := Parse(tpl)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 01 05:55:48 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. pkg/test/util/yml/parse.go

    }
    
    // Part is a single-part yaml source, along with its descriptor.
    type Part struct {
    	Contents   string
    	Descriptor Descriptor
    }
    
    // Parse parses the given multi-part yaml text, and returns as Parts.
    func Parse(yamlText string) ([]Part, error) {
    	splitContent := SplitString(yamlText)
    	parts := make([]Part, 0, len(splitContent))
    	for _, part := range splitContent {
    		if len(part) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 27 09:06:29 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. src/net/parse.go

    Jes Cok <******@****.***> 1714824795 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    	}
    	return re
    }
    
    // Parsing.
    
    // Parse parses a regular expression string s, controlled by the specified
    // Flags, and returns a regular expression parse tree. The syntax is
    // described in the top-level comment.
    func Parse(s string, flags Flags) (*Regexp, error) {
    	return parse(s, flags)
    }
    
    func parse(s string, flags Flags) (_ *Regexp, err error) {
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/parse.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cpu
    
    import "strconv"
    
    // parseRelease parses a dot-separated version number. It follows the semver
    // syntax, but allows the minor and patch versions to be elided.
    //
    // This is a copy of the Go runtime's parseRelease from
    // https://golang.org/cl/209597.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 17:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. pkg/test/echo/parse.go

    Nathan Mittler <******@****.***> 1645655146 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 22:25:46 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest.groovy

    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.DescriptorParseContext
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.GradleModuleMetadataParser
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.GradlePomModuleDescriptorParser
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.IvyModuleDescriptorConverter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top