Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 469 for ESCAPE (0.07 sec)

  1. src/go/doc/comment/markdown.go

    		return
    	}
    	switch line[0] {
    	case '+', '-', '*', '#':
    		// Escape what would be the start of an unordered list or heading.
    		out.WriteByte('\\')
    	case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		i := 1
    		for i < len(line) && '0' <= line[i] && line[i] <= '9' {
    			i++
    		}
    		if i < len(line) && (line[i] == '.' || line[i] == ')') {
    			// Escape what would be the start of an ordered list.
    			out.Write(line[:i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/groovy-hl.xml

        </highlighter>
        <highlighter type="oneline-comment">//</highlighter>
        <highlighter type="string">
            <string>"</string>
            <escape>\</escape>
        </highlighter>
        <highlighter type="string">
            <string>'</string>
            <escape>\</escape>
        </highlighter>
        <highlighter type="annotation">
            <start>@</start>
            <valueStart>(</valueStart>
            <valueEnd>)</valueEnd>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/java-hl.xml

        </highlighter>
        <highlighter type="oneline-comment">//</highlighter>
        <highlighter type="string">
            <string>"</string>
            <escape>\</escape>
        </highlighter>
        <highlighter type="string">
            <string>'</string>
            <escape>\</escape>
        </highlighter>
        <highlighter type="annotation">
            <start>@</start>
            <valueStart>(</valueStart>
            <valueEnd>)</valueEnd>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. test/escape_unsafe.go

    // errorcheck -0 -m -l
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test escape analysis for unsafe.Pointer rules.
    
    package escape
    
    import (
    	"reflect"
    	"unsafe"
    )
    
    // (1) Conversion of a *T1 to Pointer to *T2.
    
    func convert(p *float64) *uint64 { // ERROR "leaking param: p to result ~r0 level=0$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 17:25:59 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/escaping_test.go

    		{unescaped: "getSeconds", escaped: "getSeconds"},
    		// we don't escape a single _
    		{unescaped: "_if", escaped: "_if"},
    		{unescaped: "_has", escaped: "_has"},
    		{unescaped: "_int", escaped: "_int"},
    		{unescaped: "_anything", escaped: "_anything"},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.unescaped, func(t *testing.T) {
    			e, escapable := Escape(tc.unescaped)
    			if tc.unescapable {
    				if escapable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  6. docs_src/wsgi/tutorial001.py

    from fastapi import FastAPI
    from fastapi.middleware.wsgi import WSGIMiddleware
    from flask import Flask, request
    from markupsafe import escape
    
    flask_app = Flask(__name__)
    
    
    @flask_app.route("/")
    def flask_main():
        name = request.args.get("name", "World")
        return f"Hello, {escape(name)} from Flask!"
    
    
    app = FastAPI()
    
    
    @app.get("/v2")
    def read_main():
        return {"message": "Hello World"}
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 09 14:32:00 UTC 2023
    - 443 bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/escape/CharEscaperBuilder.java

          this.replacements = replacements;
          this.replaceLength = replacements.length;
        }
    
        /*
         * Overriding escape method to be slightly faster for this decorator. We test the replacements
         * array directly, saving a method call.
         */
        @Override
        public String escape(String s) {
          int slen = s.length();
          for (int index = 0; index < slen; index++) {
            char c = s.charAt(index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/escape/CharEscaperBuilder.java

          this.replacements = replacements;
          this.replaceLength = replacements.length;
        }
    
        /*
         * Overriding escape method to be slightly faster for this decorator. We test the replacements
         * array directly, saving a method call.
         */
        @Override
        public String escape(String s) {
          int slen = s.length();
          for (int index = 0; index < slen; index++) {
            char c = s.charAt(index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/xml/XmlEscapers.java

     * the License.
     */
    
    package com.google.common.xml;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.escape.Escaper;
    import com.google.common.escape.Escapers;
    
    /**
     * {@code Escaper} instances suitable for strings to be included in XML attribute values and
     * elements' text contents. When possible, avoid manual escaping by using templating systems and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  10. tests/integration/security/fuzz/fuzz_test.go

    			"uri_hex-"+ // Encodes ALL characters using the %xx escape.
    			"uri_triple_hex-"+ // Encodes ALL characters using the %25%xx%xx escape.
    			"uri_unicode-"+ // Replaces ALL characters in string using the %u00xx escape.
    			"urlencode-"+ // Replace special characters in string using the %xx escape.
    			// Letters, digits, and the characters '_.-' are never quoted.
    			"utf8 "+ // Replaces ALL characters in string using the \u00xx escape.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top