Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for backslashes (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

         * Such characters could be accidentally introduced by a backslash followed by {@code 'u'},
         * e.g. in Windows path {@code '..\\user\dir'}.
         */
        private static String sanitizeUnicodeEscapes(String s) {
            // If a backslash precedes 'u', then we replace the backslash with its unicode notation '\\u005c'
            return s.replace("\\u", "\\u005cu");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  2. src/fmt/scan.go

    		s.buf.writeByte('"')
    		for {
    			r := s.mustReadRune()
    			s.buf.writeRune(r)
    			if r == '\\' {
    				// In a legal backslash escape, no matter how long, only the character
    				// immediately after the escape can itself be a backslash or quote.
    				// Thus we only need to protect the first character after the backslash.
    				s.buf.writeRune(s.mustReadRune())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. src/log/slog/json_handler.go

    // position can be represented inside a JSON string without any further
    // escaping.
    //
    // All values are true except for the ASCII control characters (0-31), the
    // double quote ("), and the backslash character ("\").
    var safeSet = [utf8.RuneSelf]bool{
    	' ':      true,
    	'!':      true,
    	'"':      false,
    	'#':      true,
    	'$':      true,
    	'%':      true,
    	'&':      true,
    	'\'':     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </p>
    
    <p>
    Several backslash escapes allow arbitrary values to be encoded as
    ASCII text.  There are four ways to represent the integer value
    as a numeric constant: <code>\x</code> followed by exactly two hexadecimal
    digits; <code>\u</code> followed by exactly four hexadecimal digits;
    <code>\U</code> followed by exactly eight hexadecimal digits, and a
    plain backslash <code>\</code> followed by exactly three octal digits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  5. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkSharedLibrary.html#org.gradle.nativeplatform.tasks.LinkSharedLibrary:linkerArgs[linkerArgs]:: []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate.go

      istioctl manifest generate --set meshConfig.enableTracing=true
    
      # Generate the demo profile
      istioctl manifest generate --set profile=demo
    
      # To override a setting that includes dots, escape them with a backslash (\).  Your shell may require enclosing quotes.
      istioctl manifest generate --set "values.sidecarInjectorWebhook.injectedAnnotations.container\.apparmor\.security\.beta\.kubernetes\.io/istio-proxy=runtime/default"
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/internal/diff/diff.go

    	if l[len(l)-1] == "" {
    		l = l[:len(l)-1]
    	} else {
    		// Treat last line as having a message about the missing newline attached,
    		// using the same text as BSD/GNU diff (including the leading backslash).
    		l[len(l)-1] += "\n\\ No newline at end of file\n"
    	}
    	return l
    }
    
    // tgs returns the pairs of indexes of the longest common subsequence
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/list.go

    		}
    		return rs, ms, nil
    	}
    
    	needFullGraph := false
    	for _, arg := range args {
    		if strings.Contains(arg, `\`) {
    			base.Fatalf("go: module paths never use backslash")
    		}
    		if search.IsRelativePath(arg) {
    			base.Fatalf("go: cannot use relative path %s to specify module", arg)
    		}
    		if arg == "all" || strings.Contains(arg, "...") {
    			needFullGraph = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. src/io/fs/fs.go

    // Paths must not start or end with a slash: “/x” and “x/” are invalid.
    //
    // Note that paths are slash-separated on all systems, even Windows.
    // Paths containing other characters such as backslash and colon
    // are accepted as valid, but those characters must never be
    // interpreted by an [FS] implementation as path element separators.
    func ValidPath(name string) bool {
    	if !utf8.ValidString(name) {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/html/template/error.go

    	// ErrPartialEscape: "unfinished escape sequence in ..."
    	// Example:
    	//   <script>alert("\{{.X}}")</script>
    	// Discussion:
    	//   Package html/template does not support actions following a
    	//   backslash.
    	//   This is usually an error and there are better solutions; for
    	//   example
    	//     <script>alert("{{.X}}")</script>
    	//   should work, and if {{.X}} is a partial escape sequence such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top