Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 228 for Positions (0.2 sec)

  1. src/cmd/vendor/rsc.io/markdown/para.go

    // license that can be found in the LICENSE file.
    
    package markdown
    
    import (
    	"bytes"
    	"strings"
    )
    
    type Empty struct {
    	Position
    }
    
    func (b *Empty) PrintHTML(buf *bytes.Buffer) {}
    
    func (b *Empty) printMarkdown(*bytes.Buffer, mdState) {}
    
    type Paragraph struct {
    	Position
    	Text *Text
    }
    
    func (b *Paragraph) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("<p>")
    	b.Text.PrintHTML(buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/table.go

    	b.hdr = tableTrimOuter(hdr)
    	b.delim = tableTrimOuter(delim)
    }
    
    func (b *tableBuilder) addRow(row string) {
    	b.rows = append(b.rows, tableTrimOuter(row))
    }
    
    type Table struct {
    	Position
    	Header []*Text
    	Align  []string // 'l', 'c', 'r' for left, center, right; 0 for unset
    	Rows   [][]*Text
    }
    
    func (t *Table) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("<table>\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    // specified position and formatted error message.
    func (pass *Pass) Reportf(pos token.Pos, format string, args ...interface{}) {
    	msg := fmt.Sprintf(format, args...)
    	pass.Report(Diagnostic{Pos: pos, Message: msg})
    }
    
    // The Range interface provides a range. It's equivalent to and satisfied by
    // ast.Node.
    type Range interface {
    	Pos() token.Pos // position of first character belonging to the node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/kotlin/dsl/EditorPosition.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model.kotlin.dsl;
    
    
    /**
     * Position in the editor.
     *
     * @since 6.0
     */
    public interface EditorPosition {
    
        int getLine();
    
        int getColumn();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 794 bytes
    - Viewed (0)
  5. src/cmd/asm/internal/lex/lex.go

    	// Text returns the original string representation of the token.
    	Text() string
    	// File reports the source file name of the token.
    	File() string
    	// Base reports the position base of the token.
    	Base() *src.PosBase
    	// SetBase sets the position base.
    	SetBase(*src.PosBase)
    	// Line reports the source line number of the token.
    	Line() int
    	// Col reports the source column number of the token.
    	Col() int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ParamsMatchingConstructorSelector.java

                        // C2(A, B, X, D)
                        // C1 and C2 both accept the parameters A, B and D, but
                        // C1 accepts a parameter of type C at position 2 and
                        // C2 accepts a parameter of type X at position 2.
                        // This will trigger this check because we cannot tell which is the "better"
                        // constructor assuming that the other parameter could be injected.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	SD	X5, 4294967296(X6)		// ERROR "constant 4294967296 too large"
    	SRLI	$1, X5, F1			// ERROR "expected integer register in rd position but got non-integer register F1"
    	SRLI	$1, F1, X5			// ERROR "expected integer register in rs1 position but got non-integer register F1"
    	FNES	F1, (X5)			// ERROR "needs an integer register output"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/go/types/format.go

    		case nil:
    			arg = "<nil>"
    		case operand:
    			panic("got operand instead of *operand")
    		case *operand:
    			arg = operandString(a, qf)
    		case token.Pos:
    			if fset != nil {
    				arg = fset.Position(a).String()
    			}
    		case ast.Expr:
    			arg = ExprString(a)
    		case []ast.Expr:
    			var buf bytes.Buffer
    			buf.WriteByte('[')
    			writeExprList(&buf, a)
    			buf.WriteByte(']')
    			arg = buf.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/quote.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package markdown
    
    import (
    	"bytes"
    )
    
    type Quote struct {
    	Position
    	Blocks []Block
    }
    
    func (b *Quote) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("<blockquote>\n")
    	for _, c := range b.Blocks {
    		c.PrintHTML(buf)
    	}
    	buf.WriteString("</blockquote>\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. test/fixedbugs/issue36437.go

    // license that can be found in the LICENSE file.
    
    // Tests that when non-existent files are passed to the
    // compiler, such as in:
    //    go tool compile foo
    // we don't print the beginning position:
    //    foo:0: open foo: no such file or directory
    // but instead omit it and print out:
    //    open foo: no such file or directory
    
    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top