Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for Parses (0.1 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		return true
    	default:
    		return false
    	}
    }
    
    // taggedName parses:
    //
    //	<tagged-name> ::= <name> B <source-name>
    func (st *state) taggedName(a AST) AST {
    	for len(st.str) > 0 && st.str[0] == 'B' {
    		st.advance(1)
    		tag := st.sourceName()
    		a = &TaggedName{Name: a, Tag: tag}
    	}
    	return a
    }
    
    // name parses:
    //
    //	<name> ::= <nested-name>
    //	       ::= <unscoped-name>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	}
    }
    
    // AdditionalHeader parses a single Additional ResourceHeader.
    func (p *Parser) AdditionalHeader() (ResourceHeader, error) {
    	return p.resourceHeader(sectionAdditionals)
    }
    
    // Additional parses a single Additional Resource.
    func (p *Parser) Additional() (Resource, error) {
    	return p.resource(sectionAdditionals)
    }
    
    // AllAdditionals parses all Additional Resources.
    func (p *Parser) AllAdditionals() ([]Resource, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. 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)
  4. src/net/http/request.go

    func (r *Request) UserAgent() string {
    	return r.Header.Get("User-Agent")
    }
    
    // Cookies parses and returns the HTTP cookies sent with the request.
    func (r *Request) Cookies() []*Cookie {
    	return readCookies(r.Header, "")
    }
    
    // CookiesNamed parses and returns the named HTTP cookies sent with the request
    // or an empty slice if none matched.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    			// need to parse a full expression. Notably, name <- x
    			// is not a concern because name <- x is a statement and
    			// not an expression.
    			var x Expr = p.name()
    			if p.tok != _Lbrack {
    				// To parse the expression starting with name, expand
    				// the call sequence we would get by passing in name
    				// to parser.expr, and pass in name to parser.pexpr.
    				p.xnest++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. src/time/format.go

    func Parse(layout, value string) (Time, error) {
    	// Optimize for RFC3339 as it accounts for over half of all representations.
    	if layout == RFC3339 || layout == RFC3339Nano {
    		if t, ok := parseRFC3339(value, Local); ok {
    			return t, nil
    		}
    	}
    	return parse(layout, value, UTC, Local)
    }
    
    // ParseInLocation is like Parse but differs in two important ways.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers.go

    			Quantity: &quantity,
    		},
    	}, nil
    }
    
    // parsePercentage parses a string representing a percentage value
    func parsePercentage(input string) (float32, error) {
    	value, err := strconv.ParseFloat(strings.TrimRight(input, "%"), 32)
    	if err != nil {
    		return 0, err
    	}
    	return float32(value) / 100, nil
    }
    
    // parseGracePeriods parses the grace period statements
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Environment variable utilities:
    //   GetEnv()             - gets the value of an environment variable.
    //   BoolFromGTestEnv()   - parses a bool environment variable.
    //   Int32FromGTestEnv()  - parses an Int32 environment variable.
    //   StringFromGTestEnv() - parses a string environment variable.
    
    #include <ctype.h>   // for isspace, etc
    #include <stddef.h>  // for ptrdiff_t
    #include <stdlib.h>
    #include <stdio.h>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Environment variable utilities:
    //   GetEnv()             - gets the value of an environment variable.
    //   BoolFromGTestEnv()   - parses a bool environment variable.
    //   Int32FromGTestEnv()  - parses an Int32 environment variable.
    //   StringFromGTestEnv() - parses a string environment variable.
    
    #include <ctype.h>   // for isspace, etc
    #include <stddef.h>  // for ptrdiff_t
    #include <stdlib.h>
    #include <stdio.h>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. src/crypto/x509/x509.go

    		rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr)
    		// Ignore attributes that don't parse into pkix.AttributeTypeAndValueSET
    		// (i.e.: challengePassword or unstructuredName).
    		if err == nil && len(rest) == 0 {
    			attributes = append(attributes, attr)
    		}
    	}
    	return attributes
    }
    
    // parseCSRExtensions parses the attributes from a CSR and extracts any
    // requested extensions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top