Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 112 for backslashes (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        public void setPath ( String path ) {
            if ( path.length() > 0 && path.charAt(0) == '\\' ) {
                path = path.substring(1);
            }
            // win8.1 returns ACCESS_DENIED if the trailing backslash is included
            if ( path.length() > 1 && path.charAt(path.length() - 1) == '\\' ) {
                path = path.substring(0, path.length() - 1);
            }
            this.name = path;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 09:52:11 UTC 2019
    - 14.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

            dsl.assertGradleFilesGenerated()
    
            def isGroovy = scriptDsl == BuildInitDsl.GROOVY
            def descriptionPropertyAssignment = (isGroovy ? "description = 'A description \\\\ with a backslash'" : 'description = "A description \\\\ with a backslash"')
            dsl.getBuildFile().text.readLines().contains(descriptionPropertyAssignment)
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23963")
        def "emptySource"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top