Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 291 for unescaped (0.17 sec)

  1. guava/src/com/google/common/escape/UnicodeEscaper.java

            }
            if (escaped.length > 0) {
              System.arraycopy(escaped, 0, dest, destIndex, escaped.length);
              destIndex += escaped.length;
            }
            // If we dealt with an escaped character, reset the unescaped range.
            unescapedChunkStart = nextIndex;
          }
          index = nextEscapeIndex(s, nextIndex, end);
        }
    
        // Process trailing unescaped characters - no need to account for escaped
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/UrlEscapers.java

       * characters, even though <a href="https://goo.gl/e7E0In">many of these are accepted in modern
       * URLs</a>. (<a href="https://goo.gl/jfVxXW">If the escaper were to leave these characters
       * unescaped, they would be escaped by the consumer at parse time, anyway.</a>) Additionally, the
       * escaper escapes the slash character ("/"). While slashes are acceptable in URL paths, they are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:04:33 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  3. 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)
  4. android/guava/src/com/google/common/net/UrlEscapers.java

       * characters, even though <a href="https://goo.gl/e7E0In">many of these are accepted in modern
       * URLs</a>. (<a href="https://goo.gl/jfVxXW">If the escaper were to leave these characters
       * unescaped, they would be escaped by the consumer at parse time, anyway.</a>) Additionally, the
       * escaper escapes the slash character ("/"). While slashes are acceptable in URL paths, they are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:04:33 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReaderTest.groovy

    line comments.
    """
    
            then:
            output == "\nHere is a \nstring\n\nwith interspersed \nline comments."
        }
    
        def "can cope with multiple unescaped and escaped \\r characters"() {
            when:
            input = "Here \r\r\\\r\\\r${BN}\\\r\\\r\\\r\\\r."
            then:
            output == "Here \n\n\\\n\\\n\\\n\\\n\\\n\\\n."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/net/UrlEscapersTest.java

        try {
          e.escape((String) null);
          fail("Escaping null string should throw exception");
        } catch (NullPointerException x) {
          // pass
        }
    
        // All URL escapers should leave 0-9, A-Z, a-z unescaped
        assertUnescaped(e, 'a');
        assertUnescaped(e, 'z');
        assertUnescaped(e, 'A');
        assertUnescaped(e, 'Z');
        assertUnescaped(e, '0');
        assertUnescaped(e, '9');
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    	r rune
    }
    
    func (i UnescapedRune) Error() string {
    	return fmt.Sprintf("invalid field selector: unescaped character in value: %v", i.r)
    }
    
    // UnescapeValue unescapes a fieldSelector value and returns the original literal value.
    // May return the original string if it contains no escaped or special characters.
    func UnescapeValue(s string) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/UrlEscapersTest.java

        try {
          e.escape((String) null);
          fail("Escaping null string should throw exception");
        } catch (NullPointerException x) {
          // pass
        }
    
        // All URL escapers should leave 0-9, A-Z, a-z unescaped
        assertUnescaped(e, 'a');
        assertUnescaped(e, 'z');
        assertUnescaped(e, 'A');
        assertUnescaped(e, 'Z');
        assertUnescaped(e, '0');
        assertUnescaped(e, '9');
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 15 20:25:06 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  9. src/mime/quotedprintable/reader.go

    			break
    		case b >= 0x80:
    			// As an extension to RFC 2045, we accept
    			// values >= 0x80 without complaint. Issue 22597.
    			break
    		case b < ' ' || b > '~':
    			return n, fmt.Errorf("quotedprintable: invalid unescaped byte 0x%02x in body", b)
    		}
    		p[0] = b
    		p = p[1:]
    		r.line = r.line[1:]
    		n++
    	}
    	return n, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 27 17:00:08 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/shell_test.go

    	f.Add([]byte(`${FOO}`))
    	f.Add([]byte(`\${FOO}`))
    	f.Add([]byte(`$(/bin/false)`))
    	f.Add([]byte(`\$(/bin/false)`))
    	f.Add([]byte(`$((0))`))
    	f.Add([]byte(`\$((0))`))
    	f.Add([]byte(`unescaped space`))
    	f.Add([]byte(`escaped\ space`))
    	f.Add([]byte(`"unterminated quote`))
    	f.Add([]byte(`'unterminated quote`))
    	f.Add([]byte(`unterminated escape\`))
    	f.Add([]byte(`"quote with unterminated escape\`))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top