Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,885 for Parses (0.24 sec)

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

    	}
    }
    
    // implPath parses:
    //
    //	<impl-path> = [<disambiguator>] <path>
    func (rst *rustState) implPath() {
    	// This path is not part of the demangled string.
    	hold := rst.skip
    	rst.skip = true
    	defer func() {
    		rst.skip = hold
    	}()
    
    	rst.disambiguator()
    	rst.path(false)
    }
    
    // identifier parses:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  2. src/go/build/constraint/expr.go

    }
    
    // A SyntaxError reports a syntax error in a parsed build expression.
    type SyntaxError struct {
    	Offset int    // byte offset in input where error was detected
    	Err    string // description of error
    }
    
    func (e *SyntaxError) Error() string {
    	return e.Err
    }
    
    var errNotConstraint = errors.New("not a build constraint")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParserTest.groovy

    import org.gradle.launcher.daemon.context.DaemonContext
    import org.gradle.util.GradleVersion
    import spock.lang.Specification
    
    class DaemonContextParserTest extends Specification {
        def "parses entries for older versions of Gradle"() {
            def contextString = "DefaultDaemonContext[" +
                "uid=4224e700-9e7c-4964-ad43-d6950d561cc0," +
                "javaHome=/usr/bin/java/," +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

                map.put(parser.getName(), parse(parser, toType));
            }
            return map;
        }
    
        /**
         * Parses a sequence of XML elements and converts them to the appropriate {@link Collection} type.
         *
         * @param parser The XML parser
         * @return Converted Collection instance
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            parse('one-version')
    
            then:
            hasVersion('guava', '17')
        }
    
        def "parses a file with a single plugin and nothing else"() {
            when:
            parse('one-plugin')
    
            then:
            hasPlugin('greeter', 'org.example.greeter', '1.13')
        }
    
        def "parses dependencies with various notations"() {
            when:
            parse 'dependency-notations'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. cni/test/testdata/pre/non_json.conf

    "This is not json"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 60 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/parse.go

    // The resulting tag is canonicalized using the default canonicalization type.
    func Parse(s string) (t Tag, err error) {
    	return Default.Parse(s)
    }
    
    // Parse parses the given BCP 47 string and returns a valid Tag. If parsing
    // failed it returns an error and any part of the tag that could be parsed.
    // If parsing succeeded but an unknown value was found, it returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/endpoint.go

    		return formatURL(host, port).String(), nil
    	}
    
    	return localAPIEndpoint, nil
    }
    
    // GetLocalAPIEndpoint parses an APIEndpoint and returns it as a string,
    // or returns and error in case it cannot be parsed.
    func GetLocalAPIEndpoint(localEndpoint *kubeadmapi.APIEndpoint) (string, error) {
    	// get the URL of the local endpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 11 15:08:59 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue8017.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issues 8017 and 8058: walk modifies nodes generated
    // by slicelit and causes an internal error afterwards
    // when gen_as_init parses it back.
    
    package main
    
    func F() {
    	var ch chan int
    	select {
    	case <-ch:
    	case <-make(chan int, len([2][]int{([][]int{})[len(ch)], []int{}})):
    	}
    }
    
    func G() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 540 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/MapNotationConverterTest.groovy

        final NotationParser parser = NotationParserBuilder.toType(TargetObject).converter(new DummyConverter()).toComposite()
    
        def "parses map with required keys"() {
            expect:
            def object = parser.parseNotation([name: 'name', version: 'version'])
            object.key1 == 'name'
            object.key2 == 'version'
            object.prop1 == null
        }
    
        def "parses map with required and optional keys"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 11:58:37 UTC 2019
    - 3.5K bytes
    - Viewed (0)
Back to top