Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for Unescape (2.1 sec)

  1. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                            inputs[i] = unescape(inputStrings.get(i)).trim();
                        }
    
                        final List<String> outputStrings = split(sides.get(1), ",");
                        outputs = new String[outputStrings.size()];
                        for (int i = 0; i < outputs.length; i++) {
                            outputs[i] = unescape(outputStrings.get(i)).trim();
                        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/net/url/url.go

    //
    // PathUnescape is identical to [QueryUnescape] except that it does not
    // unescape '+' to ' ' (space).
    func PathUnescape(s string) (string, error) {
    	return unescape(s, encodePathSegment)
    }
    
    // unescape unescapes a string; the mode specifies
    // which section of the URL string is being unescaped.
    func unescape(s string, mode encoding) (string, error) {
    	// Count %, check that they're well-formed.
    	n := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  3. src/strconv/quote.go

    // and therefore which escaped quote character is permitted.
    // If set to a single quote, it permits the sequence \' and disallows unescaped '.
    // If set to a double quote, it permits \" and disallows unescaped ".
    // If set to zero, it does not permit either escape and allows both quote characters to appear unescaped.
    func UnquoteChar(s string, quote byte) (value rune, multibyte bool, tail string, err error) {
    	// easy cases
    	if len(s) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

                return escape(s) + ".*";
            }
            final StringBuilder buf = new StringBuilder(100);
            return appendFileterPath(buf, escape(s));
        }
    
        protected String escape(final String s) {
            if (s.startsWith("#")) {
                return StringUtil.EMPTY;
            }
            if (s.startsWith("^") && s.endsWith("$")) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

        }
    
        private static String escape(String name) {
            try {
                return URLEncoder.encode(name, ENCODING.name());
            } catch (UnsupportedEncodingException ignored) {
                throw new AssertionError();
            }
        }
    
        private static String unescape(String name) {
            try {
                return URLDecoder.decode(name, ENCODING.name());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

            String dom = null, user = null, pass = null;
            if ( userInfo != null ) {
                try {
                    userInfo = unescape(userInfo);
                }
                catch ( UnsupportedEncodingException uee ) {
                    throw new RuntimeCIFSException(uee);
                }
                int i, u;
                int end = userInfo.length();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

     */
    
        public NtlmPasswordAuthentication( String userInfo ) {
            domain = username = password = null;
    
            if( userInfo != null ) {
                try {
                    userInfo = unescape( userInfo );
                } catch( UnsupportedEncodingException uee ) {
                }
                int i, u, end;
                char c;
    
                end = userInfo.length();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/func.go

    func ParseLinkFuncName(name string) (pkg, sym string, err error) {
    	pkg, sym = splitPkg(name)
    	if pkg == "" {
    		return "", "", fmt.Errorf("no package path in name")
    	}
    
    	pkg, err = objabi.PrefixToPath(pkg) // unescape
    	if err != nil {
    		return "", "", fmt.Errorf("malformed package path: %v", err)
    	}
    
    	return pkg, sym, nil
    }
    
    // Borrowed from x/mod.
    func modPathOK(r rune) bool {
    	if r < utf8.RuneSelf {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/link.go

    	// “A sequence of zero or more characters between an opening < and a closing >
    	// that contains no line endings or unescaped < or > characters,”
    	if s[i] == '<' {
    		for j := i + 1; ; j++ {
    			if j >= len(s) || s[j] == '\n' || s[j] == '<' {
    				return "", 0, false
    			}
    			if s[j] == '>' {
    				// TODO unescape?
    				return mdUnescape(s[i+1 : j]), j + 1, true
    			}
    			if s[j] == '\\' {
    				j++
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. doc/godebug.md

    client or server to have an empty Content-Length header.
    This behavior is controlled by the `httplaxcontentlength` setting.
    
    Go 1.22 changed the behavior of ServeMux to accept extended
    patterns and unescape both patterns and request paths by segment.
    This behavior can be controlled by the
    [`httpmuxgo121` setting](/pkg/net/http/#ServeMux).
    
    Go 1.22 added the [Alias type](/pkg/go/types#Alias) to [go/types](/pkg/go/types)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top