Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 707 for separators (0.13 sec)

  1. android/guava/src/com/google/common/net/UrlEscapers.java

       * escaper escapes the slash character ("/"). While slashes are acceptable in URL paths, they are
       * considered by the specification to be separators between "path segments." This implies that, if
       * you wish for your path to contain slashes, you must escape each segment separately and then
       * join them.
       *
       * <p>When escaping a String, the following rules apply:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:04:33 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/script/state.go

    	wd := s.workdir
    
    	// Add trailing separator to terminate wd.
    	// This prevents extracting to outside paths which prefix wd,
    	// e.g. extracting to /home/foobar when wd is /home/foo
    	if wd == "" {
    		panic("s.workdir is unexpectedly empty")
    	}
    	if !os.IsPathSeparator(wd[len(wd)-1]) {
    		wd += string(filepath.Separator)
    	}
    
    	for _, f := range ar.Files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/internal/filepathlite/path_windows.go

    // license that can be found in the LICENSE file.
    
    package filepathlite
    
    import (
    	"internal/bytealg"
    	"internal/stringslite"
    	"syscall"
    )
    
    const (
    	Separator     = '\\' // OS-specific path separator
    	ListSeparator = ';'  // OS-specific path list separator
    )
    
    func IsPathSeparator(c uint8) bool {
    	return c == '\\' || c == '/'
    }
    
    func isLocal(path string) bool {
    	if path == "" {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/UrlEscapers.java

       * escaper escapes the slash character ("/"). While slashes are acceptable in URL paths, they are
       * considered by the specification to be separators between "path segments." This implies that, if
       * you wish for your path to contain slashes, you must escape each segment separately and then
       * join them.
       *
       * <p>When escaping a String, the following rules apply:
    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. src/strconv/atoc_test.go

    		{"-1i", -1i, nil},
    		{"+3+1i", 3 + 1i, nil},
    		{"30+3i", 30 + 3i, nil},
    		{"+3e+3-3e+3i", 3e+3 - 3e+3i, nil},
    		{"+3e+3+3e+3i", 3e+3 + 3e+3i, nil},
    		{"+3e+3+3e+3i+", 0, ErrSyntax},
    
    		// Separators
    		{"0.1", 0.1, nil},
    		{"0.1i", 0 + 0.1i, nil},
    		{"0.1_2_3", 0.123, nil},
    		{"+0x_3p3i", 0x3p3i, nil},
    		{"0_0+0x_0p0i", 0, nil},
    		{"0x_10.3p-8+0x3p3i", 0x10.3p-8 + 0x3p3i, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 23:05:51 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    //	field-value    = *( field-content | LWS )
    //	field-content  = <the OCTETs making up the field-value
    //	                 and consisting of either *TEXT or combinations
    //	                 of token, separators, and quoted-string>
    //
    // http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2 :
    //
    //	TEXT           = <any OCTET except CTLs,
    //	                  but including LWS>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. internal/lock/lock_windows.go

    	// The extended form disables evaluation of . and .. path
    	// elements and disables the interpretation of / as equivalent
    	// to \. The conversion here rewrites / to \ and elides
    	// . elements as well as trailing or duplicate separators. For
    	// simplicity it avoids the conversion entirely for relative
    	// paths or paths containing .. elements. For now,
    	// \\server\share paths are not converted to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

                if (retValue.length() >= 2 && retValue.charAt(1) == '|') {
                    retValue = retValue.charAt(0) + ":" + retValue.substring(2);
                }
    
                // normalize separators
                retValue = new File(retValue).getPath();
            }
    
            if (retValue == null) {
                retValue = "/";
            }
            return retValue.trim();
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 11K bytes
    - Viewed (0)
  9. src/math/big/natconv.go

    	}
    
    	if err == io.EOF {
    		err = nil
    	}
    
    	// other errors take precedence over invalid separators
    	if err == nil && (invalSep || prev == '_') {
    		err = errInvalSep
    	}
    
    	if count == 0 {
    		// no digits found
    		if prefix == '0' {
    			// there was only the octal prefix 0 (possibly followed by separators and digits > 7);
    			// interpret as decimal 0
    			return z[:0], 10, 1, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Splitter.java

       * Returns a splitter that uses the given single-character separator. For example, {@code
       * Splitter.on(',').split("foo,,bar")} returns an iterable containing {@code ["foo", "", "bar"]}.
       *
       * @param separator the character to recognize as a separator
       * @return a splitter, with default settings, that recognizes that separator
       */
      public static Splitter on(char separator) {
        return on(CharMatcher.is(separator));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top