Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for Carnes (0.8 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

    import org.gradle.internal.declarativedsl.parsing.ParseTestUtil
    import org.gradle.internal.declarativedsl.parsing.assert
    import org.junit.jupiter.api.Test
    
    
    class BasicParsingTest {
    
        @Test
        fun `parses literals`() {
            val results = parse(
                """
                a = 1
                b = "test"
                c = ${'"'}""test${'"'}""
                e = true
                d = false
                """.trimIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check_test.go

    // Copyright 2011 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.
    
    // This file implements a typechecker test harness. The packages specified
    // in tests are typechecked. Error messages reported by the typechecker are
    // compared against the errors expected in the test files.
    //
    // Expected errors are indicated in the test files by putting comments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. 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)
  4. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

        }
    
        // ----------------------------------------------------------------------
        // Implementation methods
        // ----------------------------------------------------------------------
    
        /**
         * Parses a sequence of XML elements and converts them to the given target type.
         *
         * @param parser The XML parser
         * @param toType The target type
         * @return Converted instance of the target type
         */
    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. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    }
    
    // parseAdditionalSections parses any additional sections in the
    // profile, ignoring any unrecognized sections.
    func parseAdditionalSections(s *bufio.Scanner, p *Profile) error {
    	for !isMemoryMapSentinel(s.Text()) && s.Scan() {
    	}
    	if err := s.Err(); err != nil {
    		return err
    	}
    	return p.ParseMemoryMapFromScanner(s)
    }
    
    // ParseProcMaps parses a memory map in the format of /proc/self/maps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  6. src/cmd/internal/archive/archive.go

    		}}
    	}
    
    	return r.a, nil
    }
    
    // trimSpace removes trailing spaces from b and returns the corresponding string.
    // This effectively parses the form used in archive headers.
    func trimSpace(b []byte) string {
    	return string(bytes.TrimRight(b, " "))
    }
    
    // parseArchive parses a Unix archive of Go object files.
    func (r *objReader) parseArchive(verbose bool) error {
    	r.readFull(r.tmp[:8]) // consume header (already checked)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    		ext = tok.String()
    	}
    	if p.peek() == lex.LSH {
    		// parses left shift amount applied after extension: <<Amount
    		p.get(lex.LSH)
    		tok := p.get(scanner.Int)
    		amount, err := strconv.ParseInt(tok.String(), 10, 16)
    		if err != nil {
    			p.errorf("parsing left shift amount: %s", err)
    		}
    		num = int16(amount)
    	} else if p.peek() == '[' {
    		// parses an element: [Index]
    		p.get('[')
    		tok := p.get(scanner.Int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/lex/input.go

    	"cmd/internal/objabi"
    	"cmd/internal/src"
    )
    
    // Input is the main input: a stack of readers and some macro definitions.
    // It also handles #include processing (by pushing onto the input stack)
    // and parses and instantiates macro definitions.
    type Input struct {
    	Stack
    	includes        []string
    	beginningOfLine bool
    	ifdefStack      []bool
    	macros          map[string]*Macro
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		V     string
    	}
    )
    
    // exprf parses a Go expression generated from fmt.Sprintf, panicking if an
    // error occurs.
    func exprf(format string, a ...interface{}) ast.Expr {
    	src := fmt.Sprintf(format, a...)
    	expr, err := parser.ParseExpr(src)
    	if err != nil {
    		log.Fatalf("expr parse error on %q: %v", src, err)
    	}
    	return expr
    }
    
    // stmtf parses a Go statement generated from fmt.Sprintf. This function is only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    	}
    	s.done = true
    	return end
    }
    
    // acceptMinSize parses multiple tokens of the given size or greater.
    // It returns the end position of the last token consumed.
    func (s *scanner) acceptMinSize(min int) (end int) {
    	end = s.end
    	s.scan()
    	for ; len(s.token) >= min; s.scan() {
    		end = s.end
    	}
    	return end
    }
    
    // Parse parses the given BCP 47 string and returns a valid Tag. If parsing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top