Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Unescape (0.83 sec)

  1. src/time/time.go

    // The time must be a quoted string in the RFC 3339 format.
    func (t *Time) UnmarshalJSON(data []byte) error {
    	if string(data) == "null" {
    		return nil
    	}
    	// TODO(https://go.dev/issue/47353): Properly unescape a JSON string.
    	if len(data) < 2 || data[0] != '"' || data[len(data)-1] != '"' {
    		return errors.New("Time.UnmarshalJSON: input is not a JSON string")
    	}
    	data = data[len(`"`) : len(data)-len(`"`)]
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    	}
    
    }
    
    var escapeBenchmarks = []struct {
    	unescaped string
    	query     string
    	path      string
    }{
    	{
    		unescaped: "one two",
    		query:     "one+two",
    		path:      "one%20two",
    	},
    	{
    		unescaped: "Фотки собак",
    		query:     "%D0%A4%D0%BE%D1%82%D0%BA%D0%B8+%D1%81%D0%BE%D0%B1%D0%B0%D0%BA",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. kotlin-js-store/yarn.lock

    escape-html@~1.0.3:
      version "1.0.3"
      resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
      integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
    
    escape-string-regexp@4.0.0:
      version "4.0.0"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    					p.push(re)
    					break BigSwitch
    				}
    			}
    
    			// Perl character class escape.
    			if r, rest := p.parsePerlClassEscape(t, re.Rune0[:0]); r != nil {
    				re.Rune = r
    				t = rest
    				p.push(re)
    				break BigSwitch
    			}
    			p.reuse(re)
    
    			// Ordinary single-character escape.
    			if c, t, err = p.parseEscape(t); err != nil {
    				return nil, err
    			}
    			p.literal(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    	}
    	arg := cgoTracebackArg{
    		context: ctxt,
    		buf:     (*uintptr)(noescape(unsafe.Pointer(&buf[0]))),
    		max:     uintptr(len(buf)),
    	}
    	if msanenabled {
    		msanwrite(unsafe.Pointer(&arg), unsafe.Sizeof(arg))
    	}
    	if asanenabled {
    		asanwrite(unsafe.Pointer(&arg), unsafe.Sizeof(arg))
    	}
    	call(cgoTraceback, noescape(unsafe.Pointer(&arg)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    			linesOut = append(linesOut, "")
    
    			// #cgo (nocallback|noescape) <function name>
    			if fields := strings.Fields(l); len(fields) == 3 {
    				directive := fields[1]
    				funcName := fields[2]
    				if directive == "nocallback" {
    					fatalf("#cgo nocallback disabled until Go 1.23")
    					f.NoCallbacks[funcName] = true
    				} else if directive == "noescape" {
    					fatalf("#cgo noescape disabled until Go 1.23")
    					f.NoEscapes[funcName] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    		fmt.Fprintf(fgo2, "\tif errno != 0 { r2 = syscall.Errno(errno) }\n")
    	}
    	if noCallback {
    		fmt.Fprintf(fgo2, "\t_Cgo_no_callback(false)\n")
    	}
    
    	// skip _Cgo_use when noescape exist,
    	// so that the compiler won't force to escape them to heap.
    	if !p.noEscapes[n.C] {
    		fmt.Fprintf(fgo2, "\tif _Cgo_always_false {\n")
    		if d.Type.Params != nil {
    			for i := range d.Type.Params.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                // look for last ANSI escape sequence to check if nextColor
                Matcher matcher = LAST_ANSI_SEQUENCE.matcher(line);
                String nextColor = "";
                if (matcher.find()) {
                    nextColor = matcher.group(1);
                    if (ANSI_RESET.equals(nextColor)) {
                        // last ANSI escape code is reset: no next color
                        nextColor = "";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/filesystem_interface.h

    ///   * adding a new method at the end of a table is allowed at any time;
    ///   * any other change to these tables is only allowed on a major TensorFlow
    ///     version change (e.g., from 2.x to 3.0). This is provided as an escape
    ///     hatch to allow cleaning up these tables. Since any of these changes
    ///     break ABI compatibility and cause all plugins to be recompiled, these
    ///     type of changes should be extremely rare.
    ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	version uint16 // protocol version
    	cipher  any    // cipher algorithm
    	mac     hash.Hash
    	seq     [8]byte // 64-bit sequence number
    
    	scratchBuf [13]byte // to avoid allocs; interface method args escape
    
    	nextCipher any       // next encryption state
    	nextMac    hash.Hash // next MAC algorithm
    
    	level         QUICEncryptionLevel // current QUIC encryption level
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top