Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 193 for lineFor (0.15 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/AutoTestedSamplesToolingApiTest.groovy

            def checkDiagnostic = { diagnostic ->
                if (diagnostic.kind.name() == 'ERROR') {
                    String[] lines = source.split("\n")
                    int lineNo = diagnostic.lineNumber - 1
    
                    def message = "Compilation error in sample in line: \n" + lines[lineNo] + "\n" + diagnostic + "\n"
                    message = message - sourceFile.absolutePath
                    throw new AssertionError(message)
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. test/chanlinear.go

    // Copyright 2014 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.
    
    // Test that dequeuing from a pending channel doesn't
    // take linear time.
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    	"time"
    )
    
    // checkLinear asserts that the running time of f(n) is in O(n).
    // tries is the initial number of iterations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/internal/dag/parse.go

    }
    
    // A rulesParser parses the depsRules syntax described above.
    type rulesParser struct {
    	lineno   int
    	lastWord string
    	text     string
    }
    
    // syntaxError reports a parsing error.
    func (p *rulesParser) syntaxError(msg string) {
    	panic(syntaxError(fmt.Sprintf("parsing graph: line %d: syntax error: %s near %s", p.lineno, msg, p.lastWord)))
    }
    
    // nextList parses and returns a comma-separated list of names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/debug/dwarf/open.go

    	abbrev   []byte
    	aranges  []byte
    	frame    []byte
    	info     []byte
    	line     []byte
    	pubnames []byte
    	ranges   []byte
    	str      []byte
    
    	// New sections added in DWARF 5.
    	addr       []byte
    	lineStr    []byte
    	strOffsets []byte
    	rngLists   []byte
    
    	// parsed data
    	abbrevCache map[uint64]abbrevTable
    	bigEndian   bool
    	order       binary.ByteOrder
    	typeCache   map[Offset]Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/debug/dwarf/line.go

    	buf := makeBuf(d, u, "line", Offset(off), d.line[off:])
    	// The compilation directory is implicitly directories[0].
    	r := LineReader{
    		buf:     buf,
    		section: d.line,
    		str:     d.str,
    		lineStr: d.lineStr,
    	}
    
    	// Read the header.
    	if err := r.readHeader(compDir); err != nil {
    		return nil, err
    	}
    
    	// Initialize line reader state.
    	r.Reset()
    
    	return &r, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  6. src/internal/profile/graph.go

    		name = append(name, fmt.Sprintf("%016x", i.Address))
    	}
    	if fun := i.Name; fun != "" {
    		name = append(name, fun)
    	}
    
    	switch {
    	case i.Lineno != 0:
    		// User requested line numbers, provide what we have.
    		name = append(name, fmt.Sprintf(":%d", i.Lineno))
    	case i.Name != "":
    		// User requested function name. It was already included.
    	default:
    		// Do not leave it empty if there is no information at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa_test.go

    	}
    
    	buf := bufio.NewReader(bzip2.NewReader(f))
    
    	lineNo := 1
    	var h hash.Hash
    	var msg []byte
    	var hashed []byte
    	var r, s *big.Int
    	pub := new(PublicKey)
    
    	for {
    		line, err := buf.ReadString('\n')
    		if len(line) == 0 {
    			if err == io.EOF {
    				break
    			}
    			t.Fatalf("error reading from input: %s", err)
    		}
    		lineNo++
    		// Need to remove \r\n from the end of the line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. test/fixedbugs/issue11656.go

    // windows doesn't work, because Windows exception handling
    // delivers signals based on the current PC, and that current PC
    // doesn't go into the Go runtime.
    
    // wasm does not work, because the linear memory is not executable.
    
    // This test doesn't work on gccgo/GoLLVM, because they will not find
    // any unwind information for the artificial function, and will not be
    // able to unwind past that point.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 700 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    //
    //	                                                                GOGC=off
    //	- type switch					4.9-5.5ms	2.1ms
    //	- binary search over a sorted list of types	5.5-5.9ms	2.5ms
    //	- linear scan, frequency-ordered list		5.9-6.1ms	2.7ms
    //	- linear scan, unordered list			6.4ms		2.7ms
    //	- hash table					6.5ms		3.1ms
    //
    // A perfect hash seemed like overkill.
    //
    // The compiler's switch statement is the clear winner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/main/res/drawable-v24/ic_launcher_foreground.xml

                <gradient
                    android:endX="78.5885"
                    android:endY="90.9159"
                    android:startX="48.7653"
                    android:startY="61.0927"
                    android:type="linear">
                    <item
                        android:color="#44000000"
                        android:offset="0.0" />
                    <item
                        android:color="#00000000"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top