Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for Farmer (0.34 sec)

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

    		case '_', '*':
    			parser = parseEmph
    		case '.':
    			if p.SmartDot {
    				parser = parseDot
    			}
    		case '-':
    			if p.SmartDash {
    				parser = parseDash
    			}
    		case '"', '\'':
    			if p.SmartQuote {
    				parser = parseEmph
    			}
    		case '~':
    			if p.Strikethrough {
    				parser = parseEmph
    			}
    		case '\n': // TODO what about eof
    			parser = parseBreak
    		case '&':
    			parser = parseHTMLEntity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/cmd/gofmt/gofmt.go

    var fdSem = make(chan bool, 200)
    
    var (
    	rewrite    func(*token.FileSet, *ast.File) *ast.File
    	parserMode parser.Mode
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: gofmt [flags] [path ...]\n")
    	flag.PrintDefaults()
    }
    
    func initParserMode() {
    	parserMode = parser.ParseComments
    	if *allErrors {
    		parserMode |= parser.AllErrors
    	}
    	// It's only -r that makes use of go/ast's object resolution,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. schema/relationship.go

    		Tag:  `gorm:"-"`,
    	})
    
    	if relation.JoinTable, err = Parse(reflect.New(reflect.StructOf(joinTableFields)).Interface(), schema.cacheStore,
    		schema.namer); err != nil {
    		schema.err = err
    	}
    	relation.JoinTable.Name = many2many
    	relation.JoinTable.Table = schema.namer.JoinTableName(many2many)
    	relation.JoinTable.PrimaryFields = make([]*Field, 0, len(relation.JoinTable.Fields))
    
    	relName := relation.Schema.Name
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"path"
    	"regexp"
    	"slices"
    	"strconv"
    	"strings"
    
    	md "rsc.io/markdown"
    )
    
    // NewParser returns a properly configured Markdown parser.
    func NewParser() *md.Parser {
    	var p md.Parser
    	p.HeadingIDs = true
    	return &p
    }
    
    // CheckFragment reports problems in a release-note fragment.
    func CheckFragment(data string) error {
    	doc := NewParser().Parse(data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/cmd/trace/gstate.go

    	// lastStopStack is the stack trace at the point of the last
    	// call to the stop method. This tends to be a more reliable way
    	// of picking up stack traces, since the parser doesn't provide
    	// a stack for every state transition event.
    	lastStopStack trace.Stack
    
    	// activeRanges is the set of all active ranges on the goroutine.
    	activeRanges map[string]activeRange
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	token      token     // next token to be returned by lex, peek
    	pos        Position  // current input position
    	comments   []Comment // accumulated comments
    
    	// Parser state.
    	file        *FileSyntax // returned top-level syntax tree
    	parseErrors ErrorList   // errors encountered during parsing
    
    	// Comment assignment state.
    	pre  []Expr // all expressions, in preorder traversal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/cpu.go

    	AFABSS
    	AFNEGD
    	AFNEGS
    	AFNED
    	AFNES
    	AMOV
    	AMOVB
    	AMOVBU
    	AMOVF
    	AMOVD
    	AMOVH
    	AMOVHU
    	AMOVW
    	AMOVWU
    	ANEG
    	ANEGW
    	ANOT
    	ASEQZ
    	ASNEZ
    
    	// End marker
    	ALAST
    )
    
    // opSuffix encoding to uint8 which fit into p.Scond
    var rmSuffixSet = map[string]uint8{
    	"RNE": RM_RNE,
    	"RTZ": RM_RTZ,
    	"RDN": RM_RDN,
    	"RUP": RM_RUP,
    	"RMM": RM_RMM,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    decide which.
    
    The obvious thing for cgo to do is to process the preamble, expanding
    #includes and processing the corresponding C code. That would require
    a full C parser and type checker that was also aware of any extensions
    known to the system compiler (for example, all the GNU C extensions) as
    well as the system-specific header locations and system-specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  9. src/bytes/buffer_test.go

    package bytes_test
    
    import (
    	. "bytes"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"math/rand"
    	"strconv"
    	"testing"
    	"unicode/utf8"
    )
    
    const N = 10000       // make this bigger for a larger (and slower) test
    var testString string // test data for write tests
    var testBytes []byte  // test data; same as testString but as a slice.
    
    type negativeReader struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/resolver.go

    				var par *syntax.Name
    				switch arg := arg.(type) {
    				case *syntax.Name:
    					par = arg
    				case *syntax.BadExpr:
    					// ignore - error already reported by parser
    				case nil:
    					check.error(ptyp, InvalidSyntaxTree, "parameterized receiver contains nil parameters")
    				default:
    					check.errorf(arg, BadDecl, "receiver type parameter %s must be an identifier", arg)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top