Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 112 for backslashes (0.17 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/JavaExec.java

         * For example, to pass the argument {@code foo bar}, use {@code "foo bar"}.
         * </p>
         * <p>
         * Note: the parser does <strong>not</strong> support using backslash to escape quotes. If this is needed,
         * use the other quote delimiter around it.
         * For example, to pass the argument {@code 'singly quoted'}, use {@code "'singly quoted'"}.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/link.go

    	}
    	return "", 0, 0, false
    }
    
    func parseLinkLabel(p *parseState, s string, i int) (string, int, bool) {
    	// “A link label begins with a left bracket ([) and ends with
    	// the first right bracket (]) that is not backslash-escaped.
    	// Between these brackets there must be at least one character
    	// that is not a space, tab, or line ending.
    	// Unescaped square bracket characters are not allowed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html#org.gradle.nativeplatform.tasks.LinkExecutable:linkedFile[linkedFile]:: `layout.buildDirectory.dir("exe/test/__$variant__/baseName")` (*nix) or `layout.buildDirectory.dir("exe\test{backslash}__$variant__\baseName.exe")` (Windows)
    
    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html#org.gradle.nativeplatform.tasks.LinkExecutable:linkerArgs[linkerArgs]:: []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html#org.gradle.nativeplatform.tasks.LinkExecutable:linkedFile[linkedFile]:: `layout.buildDirectory.dir("exe/main/__$variant__/baseName")` (*nix) or `layout.buildDirectory.dir("exe\main{backslash}__$variant__\baseName.exe")` (Windows)
    
    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html#org.gradle.nativeplatform.tasks.LinkExecutable:linkerArgs[linkerArgs]:: []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    	return f
    }
    
    func isValidTag(s string) bool {
    	if s == "" {
    		return false
    	}
    	for _, c := range s {
    		switch {
    		case strings.ContainsRune("!#$%&()*+-./:<=>?@[]^_{|}~ ", c):
    			// Backslash and quote chars are reserved, but
    			// otherwise any punctuation chars are allowed
    			// in a tag name.
    		default:
    			if !unicode.IsLetter(c) && !unicode.IsDigit(c) {
    				return false
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  6. src/os/signal/doc.go

    user at the controlling terminal presses the interrupt character,
    which by default is ^C (Control-C). The SIGQUIT signal is sent when
    the user at the controlling terminal presses the quit character, which
    by default is ^\ (Control-Backslash). In general you can cause a
    program to simply exit by pressing ^C, and you can cause it to exit
    with a stack dump by pressing ^\.
    
    # Default behavior of signals in Go programs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/net/http/cookie.go

    //	cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
    //	          ; US-ASCII characters excluding CTLs,
    //	          ; whitespace DQUOTE, comma, semicolon,
    //	          ; and backslash
    //
    // We loosen this as spaces and commas are common in cookie values
    // thus we produce a quoted cookie-value if v contains commas or spaces.
    // See https://golang.org/issue/7243 for the discussion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/search/search.go

    }
    
    // MatchDirs sets m.Dirs to a non-nil slice containing all directories that
    // potentially match a local pattern. The pattern must begin with an absolute
    // path, or "./", or "../". On Windows, the pattern may use slash or backslash
    // separators or a mix of both.
    //
    // If any errors may have caused the set of directories to be incomplete,
    // MatchDirs appends those errors to m.Errs.
    func (m *Match) MatchDirs(modRoots []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. operator/cmd/mesh/install.go

      # Generate the demo profile and don't wait for confirmation
      istioctl install --set profile=demo --skip-confirmation
    
      # To override a setting that includes dots, escape them with a backslash (\).  Your shell may require enclosing quotes.
      istioctl install --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 May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

     * referrals. Nested resources will inherit the information already resolved by the parent resource.
     * 
     * Invariant:
     * A directory resource must have a trailing slash/backslash for both URL and UNC path at all times.
     * 
     * @author mbechler
     *
     */
    class SmbResourceLocatorImpl implements SmbResourceLocatorInternal, Cloneable {
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
Back to top