Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for backslashes (0.45 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            assertTrue(instance.isFileSystemCheckIgnoredFor(File("Abc")))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("Def/123/ghi")))
        }
    
        @Test
        fun `accepts backslash-separated path patterns on Windows`() {
            val instance = createFromPaths(listOf("abc\\*\\ghi"))
            val isRecognized = instance.isFileSystemCheckIgnoredFor(File("abc/test/ghi"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/go/alldocs.go

    // to the named output file or directory, instead of the default behavior described
    // in the last two paragraphs. If the named output is an existing directory or
    // ends with a slash or backslash, then any resulting executables
    // will be written to that directory.
    //
    // The build flags are shared by the build, clean, get, install, list, run,
    // and test commands:
    //
    //	-C dir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top