Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,544 for parseAI (0.25 sec)

  1. src/internal/trace/parser.go

    Carlos Amedee <******@****.***> 1715110630 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/syntax.go

    // current parser position, not the position of the pragma itself.
    // Blank specifies whether the line is blank before the pragma.
    type PragmaHandler func(pos Pos, blank bool, text string, current Pragma) Pragma
    
    // Parse parses a single Go source file from src and returns the corresponding
    // syntax tree. If there are errors, Parse will return the first error found,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskConfigurer.java

                    org.gradle.cli.CommandLineOption option = parser.option(optionName);
                    option.hasDescription(optionDescriptor.getDescription());
                    option.hasArgument(optionDescriptor.getArgumentType());
                }
                taskOptions.addMutualExclusions(parser);
    
                ParsedCommandLine parsed;
                try {
                    parsed = parser.parse(arguments);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/ComponentIdentifierParserTest.groovy

    class ComponentIdentifierParserTest extends Specification {
    
        @Subject
        NotationParser<Object, ComponentIdentifier> parser = new ComponentIdentifierParserFactory().create()
    
        @Unroll("Parses #notation")
        def "can parse a module component identifier"() {
            when:
            def id = parser.parseNotation(notation)
    
            then:
            id instanceof ModuleComponentIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/formats.go

    	"uri",          // an URI as parsed by Golang net/url.ParseRequestURI
    	"email",        // an email address as parsed by Golang net/mail.ParseAddress
    	"hostname",     // a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034].
    	"ipv4",         // an IPv4 IP as parsed by Golang net.ParseIP
    	"ipv6",         // an IPv6 IP as parsed by Golang net.ParseIP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 09:26:38 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  6. src/mdo/reader-stax.vm

                    }
    #if ( $locationTracking )
                    $rootLcapName = parse${rootUcapName}(parser, strict, source);
    #elseif ( $needXmlContext )
                    $rootLcapName = parse${rootUcapName}(parser, strict, context);
    #else
                    $rootLcapName = parse${rootUcapName}(parser, strict);
    #end
                    parsed = true;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. internal/config/identity/ldap/ldap.go

    func (l Config) ParsesAsDN(dn string) bool {
    	_, err := ldap.ParseDN(dn)
    	return err == nil
    }
    
    // IsLDAPUserDN determines if the given string could be a user DN from LDAP.
    func (l Config) IsLDAPUserDN(user string) bool {
    	udn, err := ldap.ParseDN(user)
    	if err != nil {
    		return false
    	}
    	for _, baseDN := range l.LDAP.GetUserDNSearchBaseDistNames() {
    		if baseDN.Parsed.AncestorOf(udn) {
    			return true
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  8. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/TimeUnitsParserTest.groovy

    class TimeUnitsParserTest extends Specification {
    
        def parser = new TimeUnitsParser()
    
        def "parses time units"() {
            expect:
            def unit = parser.parseNotation(input, value)
            unit.value == normalizedValue
            unit.timeUnit == parsed
    
            where:
            value           |input          |parsed         | normalizedValue
            10              |'nanoseconds'  |NANOSECONDS    |10
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 11 02:41:37 UTC 2013
    - 1.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/xml/SAXParserFactoryUtilTest.java

            SAXParserFactoryUtil.setXIncludeAware(spf, true);
            spf.setNamespaceAware(true);
            final SAXParser parser = SAXParserFactoryUtil.newSAXParser(spf);
    
            final InputSource is = new InputSource(ResourceUtil.getResourceAsStream("org/codelibs/core/xml/include.xml"));
            is.setSystemId("include.xml");
            parser.parse(is, new DefaultHandler() {
    
                @Override
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top