Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 819 for quoted0 (0.2 sec)

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

         *
         * <p>
         * The parser supports both single quote ({@code '}) and double quote ({@code "}) as quote delimiters.
         * 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.
    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/net/mail/message.go

    		}
    	}()
    
    	// local-part = dot-atom / quoted-string
    	var localPart string
    	p.skipSpace()
    	if p.empty() {
    		return "", errors.New("mail: no addr-spec")
    	}
    	if p.peek() == '"' {
    		// quoted-string
    		debug.Printf("consumeAddrSpec: parsing quoted-string")
    		localPart, err = p.consumeQuotedString()
    		if localPart == "" {
    			err = errors.New("mail: empty quoted string in addr-spec")
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. src/net/http/cookie.go

    // value was enclosed in double quotes.
    func parseCookieValue(raw string, allowDoubleQuote bool) (value string, quoted, ok bool) {
    	// Strip the quotes, if present.
    	if allowDoubleQuote && len(raw) > 1 && raw[0] == '"' && raw[len(raw)-1] == '"' {
    		raw = raw[1 : len(raw)-1]
    		quoted = true
    	}
    	for i := 0; i < len(raw); i++ {
    		if !validCookieValueByte(raw[i]) {
    			return "", quoted, false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/flag.go

    			return fmt.Errorf("missing <pattern> in <pattern>=<value>")
    		}
    		if v[0] == '\'' || v[0] == '"' {
    			return fmt.Errorf("parameter may not start with quote character %c", v[0])
    		}
    		pattern := strings.TrimSpace(v[:i])
    		match = MatchPackage(pattern, cwd)
    		v = v[i+1:]
    	}
    	flags, err := quoted.Split(v)
    	if err != nil {
    		return err
    	}
    	if flags == nil {
    		flags = []string{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:20:43 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. src/text/template/parse/lex.go

    	itemNumber     // simple number, including imaginary
    	itemPipe       // pipe symbol
    	itemRawString  // raw quoted string (includes quotes)
    	itemRightDelim // right action delimiter
    	itemRightParen // ')' inside action
    	itemSpace      // run of spaces separating arguments
    	itemString     // quoted string (includes quotes)
    	itemText       // plain text
    	itemVariable   // variable starting with '$', such as '$' or  '$1' or '$hello'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/CommandLineJavaCompilerArgumentsGeneratorTest.groovy

            println argsFile.text
    
            and: "args file contains remaining arguments (one per line, quoted)"
            argsFile.readLines() == ["-g", "-sourcepath", quote(""), "-proc:none", USE_UNSHARED_COMPILER_TABLE_OPTION, "-classpath", quote("${spec.compileClasspath.join(File.pathSeparator)}"), *(spec.sourceFiles*.path.collect { quote(it) })]
        }
    
        String defaultEmptySourcePathRefFolder() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/html/template/context.go

    	stateCSS
    	// stateCSSDqStr occurs inside a CSS double quoted string.
    	stateCSSDqStr
    	// stateCSSSqStr occurs inside a CSS single quoted string.
    	stateCSSSqStr
    	// stateCSSDqURL occurs inside a CSS double quoted url("...").
    	stateCSSDqURL
    	// stateCSSSqURL occurs inside a CSS single quoted url('...').
    	stateCSSSqURL
    	// stateCSSURL occurs inside a CSS unquoted url(...).
    	stateCSSURL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. src/html/template/url.go

    	// Content-type: text/html;charset=UTF-8.
    	for i, n := 0, len(s); i < n; i++ {
    		c := s[i]
    		switch c {
    		// Single quote and parens are sub-delims in RFC 3986, but we
    		// escape them so the output can be embedded in single
    		// quoted attributes and unquoted CSS url(...) constructs.
    		// Single quotes are reserved in URLs, but are only used in
    		// the obsolete "mark" rule in an appendix in RFC 3986
    		// so can be safely encoded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift5.groovy

                            quotes also on a line of their own.
                            Multi-line strings also let you write "quote marks"
                            freely inside your strings, which is great!
                            """
                }
    
                public func getRawString() -> String {
                    let value = 42
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_vendor_replace.txt

    module example.com/replace
    
    require rsc.io/quote/v3 v3.0.0
    replace rsc.io/quote/v3 => ./local/not-rsc.io/quote/v3
    
    -- imports.go --
    package replace
    
    import _ "rsc.io/quote/v3"
    
    -- local/not-rsc.io/quote/v3/go.mod --
    module not-rsc.io/quote/v3
    
    -- local/not-rsc.io/quote/v3/quote.go --
    package quote
    
    -- multiple-paths/main.go --
    package main
    import (
    	"fmt"
    	"rsc.io/quote/v3"
    )
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 19:40:02 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top