Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for parsererror (0.17 sec)

  1. src/internal/bisect/bisect.go

    				return nil, &parseError{"invalid pattern syntax (+ after -): " + pattern}
    			}
    			if i > 0 {
    				n := (i - start) * wid
    				if n > 64 {
    					return nil, &parseError{"pattern bits too long: " + pattern}
    				}
    				if n <= 0 {
    					return nil, &parseError{"invalid pattern syntax: " + pattern}
    				}
    				if p[start] == 'y' {
    					n = 0
    				}
    				mask := uint64(1)<<n - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    				return nil, &parseError{"invalid pattern syntax (+ after -): " + pattern}
    			}
    			if i > 0 {
    				n := (i - start) * wid
    				if n > 64 {
    					return nil, &parseError{"pattern bits too long: " + pattern}
    				}
    				if n <= 0 {
    					return nil, &parseError{"invalid pattern syntax: " + pattern}
    				}
    				if p[start] == 'y' {
    					n = 0
    				}
    				mask := uint64(1)<<n - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. src/encoding/csv/reader.go

    	"io"
    	"unicode"
    	"unicode/utf8"
    )
    
    // A ParseError is returned for parsing errors.
    // Line and column numbers are 1-indexed.
    type ParseError struct {
    	StartLine int   // Line where the record starts
    	Line      int   // Line where the error occurred
    	Column    int   // Column (1-based byte index) where the error occurred
    	Err       error // The actual error
    }
    
    func (e *ParseError) Error() string {
    	if e.Err == ErrFieldCount {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. src/net/ip_test.go

    	{"0.0.-2.0/32", nil, nil, &ParseError{Type: "CIDR address", Text: "0.0.-2.0/32"}},
    	{"0.0.0.-3/32", nil, nil, &ParseError{Type: "CIDR address", Text: "0.0.0.-3/32"}},
    	{"0.0.0.0/-0", nil, nil, &ParseError{Type: "CIDR address", Text: "0.0.0.0/-0"}},
    	{"127.000.000.001/32", nil, nil, &ParseError{Type: "CIDR address", Text: "127.000.000.001/32"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	in := newInput(file, data)
    	defer func() {
    		if e := recover(); e != nil && e != &in.parseErrors {
    			in.parseErrors = append(in.parseErrors, Error{
    				Filename: in.filename,
    				Pos:      in.pos,
    				Err:      fmt.Errorf("internal error: %v", e),
    			})
    		}
    		if err == nil && len(in.parseErrors) > 0 {
    			err = in.parseErrors
    		}
    	}()
    
    	// Prime the lexer by reading in the first token. It will be available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. istioctl/pkg/analyze/analyze.go

    					return err
    				}
    			}
    
    			// If files are provided, treat them (collectively) as a source.
    			parseErrors := 0
    			if len(readers) > 0 {
    				if err = sa.AddReaderKubeSource(readers); err != nil {
    					fmt.Fprintf(cmd.ErrOrStderr(), "Error(s) adding files: %v", err)
    					parseErrors++
    				}
    			}
    
    			// Do the analysis
    			result, err := sa.Analyze(cancel)
    			if err != nil {
    				return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. pkg/util/iptables/iptables.go

    	}
    	return false
    }
    
    // ParseError records the payload when iptables reports an error parsing its input.
    type ParseError interface {
    	// Line returns the line number on which the parse error was reported.
    	// NOTE: First line is 1.
    	Line() int
    	// Error returns the error message of the parse error, including line number.
    	Error() string
    }
    
    type parseError struct {
    	cmd  string
    	line int
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  8. src/net/ip.go

    	if !found {
    		return nil, nil, &ParseError{Type: "CIDR address", Text: s}
    	}
    
    	ipAddr, err := netip.ParseAddr(addr)
    	if err != nil || ipAddr.Zone() != "" {
    		return nil, nil, &ParseError{Type: "CIDR address", Text: s}
    	}
    
    	n, i, ok := dtoi(mask)
    	if !ok || i != len(mask) || n < 0 || n > ipAddr.BitLen() {
    		return nil, nil, &ParseError{Type: "CIDR address", Text: s}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/net/ipsock_plan9.go

    	addr := IPv4zero // address contains port only
    	i := bytealg.IndexByteString(s, '!')
    	if i >= 0 {
    		addr = ParseIP(s[:i])
    		if addr == nil {
    			return nil, 0, &ParseError{Type: "IP address", Text: s}
    		}
    	}
    	p, plen, ok := dtoi(s[i+1:])
    	if !ok {
    		return nil, 0, &ParseError{Type: "port", Text: s}
    	}
    	if p < 0 || p > 0xFFFF {
    		return nil, 0, &AddrError{Err: "invalid port", Addr: s[i+1 : i+1+plen]}
    	}
    	return addr, p, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/write.go

    		e.Int(0)
    	}
    	for i, f := range p.sourceFiles {
    		e.IntAt(e.Pos(), sourceFileOffsetPos+4*i)
    		encodeFile(e, f)
    	}
    }
    
    func encodeFile(e *encoder, f *rawFile) {
    	e.String(f.error)
    	e.String(f.parseError)
    	e.String(f.synopsis)
    	e.String(f.name)
    	e.String(f.pkgName)
    	e.Bool(f.ignoreFile)
    	e.Bool(f.binaryOnly)
    	e.String(f.cgoDirectives)
    	e.String(f.goBuildConstraint)
    
    	e.Int(len(f.plusBuildConstraints))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top