Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 311 for lineB (3.02 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

        }
    
        List<ClassDetails> scriptDetails(String text = result.output) {
            def pattern = Pattern.compile("script=(.*)=(.*),(.*)")
            def lines = text.readLines()
            def result = []
            lines.forEach { line ->
                def matcher = pattern.matcher(line)
                if (!matcher.matches()) {
                    return
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// Close closes the file, releasing associated resources.
    	Close() error
    }
    
    // A Frame describes a location in a single line in a source file.
    type Frame struct {
    	Func   string // name of function
    	File   string // source file name
    	Line   int    // line in file
    	Column int    // column in line (if available)
    }
    
    // A Sym describes a single symbol in an object file.
    type Sym struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    			// //line directives must be at the start of the line (column colbase).
    			// /*line*/ directives can be anywhere in the line.
    			text := commentText(msg)
    			if (col == colbase || msg[1] == '*') && strings.HasPrefix(text, "line ") {
    				var pos Pos // position immediately following the comment
    				if msg[1] == '/' {
    					// line comment (newline is part of the comment)
    					pos = MakePos(p.file, line+1, colbase)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	}
    
    	// For reproducibility, if we are writing a new go line,
    	// and we're not explicitly modifying the toolchain line with 'go get toolchain@something',
    	// and the go version is one that supports switching toolchains,
    	// and the toolchain running right now is newer than the current toolchain line,
    	// then update the toolchain line to record the newer toolchain.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// Close closes the file, releasing associated resources.
    	Close() error
    }
    
    // A Frame describes a single line in a source file.
    type Frame struct {
    	Func   string // name of function
    	File   string // source file name
    	Line   int    // line in file
    	Column int    // column in file
    }
    
    // A Sym describes a single symbol in an object file.
    type Sym struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

            fixture.assertStateLoaded()
        }
    
        private void assertStateStoredAndDiscardedForDeclaredTask(int line) {
            fixture.assertStateStoredAndDiscarded {
                hasStoreFailure = false
                problem "Build file 'build.gradle': line $line: invocation of 'Task.project' at execution time is unsupported."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/internal/godebug/godebug_test.go

    	for i, line := range strings.Split(string(src), "\n") {
    		if strings.Contains(line, "BISECT"+" "+"BUG") {
    			want = append(want, fmt.Sprintf("godebug_test.go:%d", i+1))
    		}
    	}
    	slices.Sort(want)
    
    	var have []string
    	for _, line := range strings.Split(string(out), "\n") {
    		if strings.Contains(line, "godebug_test.go:") {
    			have = append(have, line[strings.LastIndex(line, "godebug_test.go:"):])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/check_test.go

    // parseFlags parses flags from the first line of the given source if the line
    // starts with "//" (line comment) followed by "-" (possibly with spaces
    // between). Otherwise the line is ignored.
    func parseFlags(src []byte, flags *flag.FlagSet) error {
    	// we must have a line comment that starts with a "-"
    	const prefix = "//"
    	if !bytes.HasPrefix(src, []byte(prefix)) {
    		return nil // first line is not a line comment
    	}
    	src = src[len(prefix):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

        @Override
        public InternalProblemBuilder lineInFileLocation(String path, int line) {
            this.addLocation(DefaultLineInFileLocation.from(path, line));
            return this;
        }
    
        @Override
        public InternalProblemBuilder lineInFileLocation(String path, int line, int column) {
            this.addLocation(DefaultLineInFileLocation.from(path, line, column));
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListenerTest.groovy

            then:
            1 * spec.fileLocation("SomeFile.java")
            // With a column number, the line-only location should not be reported ...
            0 * spec.lineInFileLocation("SomeFile.java", 1)
            // ... but the line and column location should be
            1 * spec.lineInFileLocation("SomeFile.java", 1, 1)
            0 * spec.lineInFileLocation(_, _, _, _)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:58:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top