Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseAttrValue (0.34 sec)

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

    	// and an attribute value.”
    	i = skipSpace(s, i)
    	if i+1 < len(s) && s[i] == '=' {
    		i = skipSpace(s, i+1)
    		if _, j, ok := parseAttrValue(s, i); ok {
    			p.corner = p.corner || strings.Contains(s[i:j], "\ufffd")
    			return s[i:j], j, true
    		}
    	}
    	return "", 0, false
    }
    
    func parseAttrValue(s string, i int) (string, int, bool) {
    	// “An attribute value consists of
    	// an unquoted attribute value,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. RELEASE.md

    *   Fixes an interpreter crash from vulnerabilities in `tf.io.decode_raw`
        ([CVE-2021-29614](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29614))
    *   Fixes a stack overflow in `ParseAttrValue` with nested tensors
        ([CVE-2021-29615](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29615))
    *   Fixes a null dereference in Grappler's `TrySimplify`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top