Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 468 for parseLine (0.14 sec)

  1. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    	}
    	sort.Sort(byFileName(profiles))
    	return profiles, nil
    }
    
    // parseLine parses a line from a coverage file.
    // It is equivalent to the regex
    // ^(.+):([0-9]+)\.([0-9]+),([0-9]+)\.([0-9]+) ([0-9]+) ([0-9]+)$
    //
    // However, it is much faster: https://golang.org/cl/179377
    func parseLine(l string) (fileName string, block ProfileBlock, err error) {
    	end := len(l)
    
    	b := ProfileBlock{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/LockFileReaderWriter.java

                                return false;
                            } else {
                                return true;
                            }
                        }).forEach(line -> parseLine(line, uniqueLockState));
                } catch (IOException e) {
                    throw new RuntimeException("Unable to load unique lockfile", e);
                }
                for (String emptyLockId : emptyLockIds) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    			}
    			in.lex()
    			return x
    		default:
    			l := in.parseLine()
    			x.Line = append(x.Line, l)
    			l.Comment().Before = comments
    			comments = nil
    		}
    	}
    }
    
    func (in *input) parseLine() *Line {
    	tok := in.lex()
    	if tok.kind.isEOL() {
    		in.Error("internal parse error: parseLine at end of line")
    	}
    	start := tok.pos
    	end := tok.endPos
    	tokens := []string{tok.text}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/strconv/atoi_test.go

    		testErr := test.errStub("ParseInt", test.arg)
    		_, err := ParseInt("0", 0, test.arg)
    		if !equalError(testErr, err) {
    			t.Errorf("ParseInt(\"0\", 0, %v) = 0, %v want 0, %v",
    				test.arg, err, testErr)
    		}
    	}
    }
    
    func TestParseUintBitSize(t *testing.T) {
    	for i := range parseBitSizeTests {
    		test := &parseBitSizeTests[i]
    		testErr := test.errStub("ParseUint", test.arg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. src/internal/fuzz/encoding.go

    	}
    }
    
    // parseUint returns an unsigned integer of value val and type typ.
    func parseUint(val, typ string) (any, error) {
    	switch typ {
    	case "uint":
    		i, err := strconv.ParseUint(val, 0, 64)
    		return uint(i), err
    	case "uint8", "byte":
    		i, err := strconv.ParseUint(val, 0, 8)
    		return uint8(i), err
    	case "uint16":
    		i, err := strconv.ParseUint(val, 0, 16)
    		return uint16(i), err
    	case "uint32":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  6. src/strconv/strconv_test.go

    	}))
    	t.Run("ParseBool", checkNoAllocs(func() {
    		Sink.Bool, Sink.Error = ParseBool(string(bytes.Bool))
    	}))
    	t.Run("ParseInt", checkNoAllocs(func() {
    		Sink.Int64, Sink.Error = ParseInt(string(bytes.Number), 10, 64)
    	}))
    	t.Run("ParseUint", checkNoAllocs(func() {
    		Sink.Uint64, Sink.Error = ParseUint(string(bytes.Number), 10, 64)
    	}))
    	t.Run("ParseFloat", checkNoAllocs(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 20:29:22 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. src/strconv/doc.go

    //	s := strconv.Itoa(-42)
    //
    // These assume decimal and the Go int type.
    //
    // [ParseBool], [ParseFloat], [ParseInt], and [ParseUint] convert strings to values:
    //
    //	b, err := strconv.ParseBool("true")
    //	f, err := strconv.ParseFloat("3.1415", 64)
    //	i, err := strconv.ParseInt("-42", 10, 64)
    //	u, err := strconv.ParseUint("42", 10, 64)
    //
    // The parse functions return the widest type (float64, int64, and uint64),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/strconv/atoi.go

    // IntSize is the size in bits of an int or uint value.
    const IntSize = intSize
    
    const maxUint64 = 1<<64 - 1
    
    // ParseUint is like [ParseInt] but for unsigned numbers.
    //
    // A sign prefix is not permitted.
    func ParseUint(s string, base int, bitSize int) (uint64, error) {
    	const fnParseUint = "ParseUint"
    
    	if s == "" {
    		return 0, syntaxError(fnParseUint, s)
    	}
    
    	base0 := base == 0
    
    	s0 := s
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            public IntervalRule(final String from, final String to, final String days, final long delay) {
                final int[] fints = parseTime(from);
                fromHours = fints[0];
                fromMinutes = fints[1];
                final int[] tints = parseTime(to);
                toHours = tints[0];
                toMinutes = tints[1];
                final String[] values = days.split(",");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/cmd/trace/jsontrace.go

    		if startStr, endStr := r.FormValue("start"), r.FormValue("end"); startStr != "" && endStr != "" {
    			var err error
    			start, err = strconv.ParseInt(startStr, 10, 64)
    			if err != nil {
    				log.Printf("failed to parse start parameter %q: %v", startStr, err)
    				return
    			}
    
    			end, err = strconv.ParseInt(endStr, 10, 64)
    			if err != nil {
    				log.Printf("failed to parse end parameter %q: %v", endStr, err)
    				return
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top