Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 363 for parseLink (0.3 sec)

  1. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

            "<a href=\"#anchor\">link</a>"                      | "anchor links"
            "<a name=\"anchorname\">headline</a>"               | "anchor definitions"
        }
    
        def "parseLink handles #urlDescr"() {
            def listingParser = new ApacheDirectoryListingParser()
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/go/doc/comment/parse.go

    	for _, line := range lines {
    		def, ok := parseLink(line)
    		if !ok {
    			goto NoDefs
    		}
    		defs = append(defs, def)
    	}
    	for _, def := range defs {
    		d.Links = append(d.Links, def)
    		if d.links[def.Text] == nil {
    			d.links[def.Text] = def
    		}
    	}
    	return nil
    NoDefs:
    
    	return &Paragraph{Text: []Text{Plain(strings.Join(lines, "\n"))}}
    }
    
    // parseLink parses a single link definition line:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/strconv/example_test.go

    	v32 := "-354634382"
    	if s, err := strconv.ParseInt(v32, 10, 32); err == nil {
    		fmt.Printf("%T, %v\n", s, s)
    	}
    	if s, err := strconv.ParseInt(v32, 16, 32); err == nil {
    		fmt.Printf("%T, %v\n", s, s)
    	}
    
    	v64 := "-3546343826724305832"
    	if s, err := strconv.ParseInt(v64, 10, 64); err == nil {
    		fmt.Printf("%T, %v\n", s, s)
    	}
    	if s, err := strconv.ParseInt(v64, 16, 64); err == nil {
    		fmt.Printf("%T, %v\n", s, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 22:57:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    				p.PeriodType = &ValueType{
    					Type: "contentions", Unit: "count",
    				}
    				if p.Period, err = strconv.ParseInt(value, 0, 64); err != nil {
    					return nil, fmt.Errorf("failed to parse attribute %s: %v", line, err)
    				}
    			case "contention/ms since reset":
    				millis, err := strconv.ParseInt(value, 0, 64)
    				if err != nil {
    					return nil, fmt.Errorf("failed to parse attribute %s: %v", line, err)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top