Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for backslashes (0.15 sec)

  1. src/net/mail/message.go

    		return false
    	}
    	return isVchar(r)
    }
    
    // isQtext reports whether r is an RFC 5322 qtext character.
    func isQtext(r rune) bool {
    	// Printable US-ASCII, excluding backslash or quote.
    	if r == '\\' || r == '"' {
    		return false
    	}
    	return isVchar(r)
    }
    
    // quoteString renders a string as an RFC 5322 quoted-string.
    func quoteString(s string) string {
    	var b strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            run 'copy'
    
            then:
            executedAndNotSkipped(':copy')
            file('dest/a.txt').text == "1 + 2"
        }
    
        def "can expand tokens with escaped backslash when copying"() {
            file('files/a.txt').text = "\$one\\n\${two}"
            buildScript """
                task copy(type: Copy) {
                    from 'files'
                    into 'dest'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    	}, {
    		testName: "RunAsUserName containing too many backslashes",
    		windowsOptions: &core.WindowsSecurityContextOptions{
    			RunAsUserName: toPtr("Container\\Foo\\Lish"),
    		},
    		expectedErrorSubstring: "runAsUserName cannot contain more than one backslash",
    	}, {
    		testName: "RunAsUserName containing backslash but empty Domain",
    		windowsOptions: &core.WindowsSecurityContextOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/build.go

    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    //
    // For example, the following string:
    //
    //	a b:"c d" 'e''f'  "g\""
    //
    // Would be parsed as:
    //
    //	[]string{"a", "b:c d", "ef", `g"`}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  5. src/regexp/all_test.go

    	{`(abc`, "missing closing ): `(abc`"},
    	{`abc)`, "unexpected ): `abc)`"},
    	{`x[a-z`, "missing closing ]: `[a-z`"},
    	{`[z-a]`, "invalid character class range: `z-a`"},
    	{`abc\`, "trailing backslash at end of expression"},
    	{`a**`, "invalid nested repetition operator: `**`"},
    	{`a*+`, "invalid nested repetition operator: `*+`"},
    	{`\x`, "invalid escape sequence: `\\x`"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	quote := byte(0)  // what is the quote character around the current string?
    
    	for _, c := range out {
    		if escaped {
    			if quote == '"' {
    				// “The <backslash> shall retain its special meaning as an escape
    				// character … only when followed by one of the following characters
    				// when considered special:”
    				switch c {
    				case '$', '`', '"', '\\', '\n':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/os/os_test.go

    	}
    	if _, err := rdfs.ReadDir("nonexistent"); err == nil {
    		t.Error("fs.ReadDir of nonexistent directory succeeded")
    	}
    
    	// Test that the error message does not contain a backslash,
    	// and does not contain the DirFS argument.
    	const nonesuch = "dir/nonesuch"
    	_, err := fsys.Open(nonesuch)
    	if err == nil {
    		t.Error("fs.Open of nonexistent file succeeded")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&Ascr;":                            "\U0001d49c",
    	"&Assign;":                          "\u2254",
    	"&Atilde;":                          "\u00c3",
    	"&Auml;":                            "\u00c4",
    	"&Backslash;":                       "\u2216",
    	"&Barv;":                            "\u2ae7",
    	"&Barwed;":                          "\u2306",
    	"&Bcy;":                             "\u0411",
    	"&Because;":                         "\u2235",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  9. src/html/entity.go

    		"Ascr;":                            '\U0001D49C',
    		"Assign;":                          '\U00002254',
    		"Atilde;":                          '\U000000C3',
    		"Auml;":                            '\U000000C4',
    		"Backslash;":                       '\U00002216',
    		"Barv;":                            '\U00002AE7',
    		"Barwed;":                          '\U00002306',
    		"Bcy;":                             '\U00000411',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  10. cmd/object-api-utils.go

    //
    // You should avoid the following characters in a key name because of
    // significant special handling for consistency across all
    // applications.
    //
    // Rejects strings with following characters.
    //
    // - Backslash ("\")
    //
    // additionally minio does not support object names with trailing SlashSeparator.
    func IsValidObjectName(object string) bool {
    	if len(object) == 0 {
    		return false
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top