Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 819 for quoted0 (0.17 sec)

  1. src/text/template/parse/lex_test.go

    	{"EOF in action", "{{range", []item{
    		tLeft,
    		tRange,
    		mkItem(itemError, "unclosed action"),
    	}},
    	{"unclosed quote", "{{\"\n\"}}", []item{
    		tLeft,
    		mkItem(itemError, "unterminated quoted string"),
    	}},
    	{"unclosed raw quote", "{{`xx}}", []item{
    		tLeft,
    		mkItem(itemError, "unterminated raw quoted string"),
    	}},
    	{"unclosed char constant", "{{'\n}}", []item{
    		tLeft,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  2. cmd/fieldnamedocscheck/field_name_docs_check.go

    	rc := false
    	visited := sets.Set[string]{}
    
    	// The rule is:
    	// 1. Get all back-tick quoted names in the doc
    	// 2. Skip the name which is already found mismatched.
    	// 3. Skip the name whose lowercase is different from the lowercase of tag names,
    	//    because some docs use back-tick to quote field value or nil
    	// 4. Check if the name is different from its tag name
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 18:32:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. integration-tests/gradle/gradlew

            "$@"
    
    # Stop when "xargs" is not available.
    if ! command -v xargs >/dev/null 2>&1
    then
        die "xargs is not available"
    fi
    
    # Use "xargs" to parse quoted args.
    #
    # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
    #
    # In Bash we could simply go:
    #
    #   readarray ARGS < <( xargs -n1 <<<"$var" ) &&
    #   set -- "${ARGS[@]}" "$@"
    #
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4.groovy

                            lines make sure you start its content on a
                            line all of its own, and end it with three
                            quotes also on a line of their own.
                            Multi-line strings also let you write "quote marks"
                            freely inside your strings, which is great!
                            """
                }
            ''')]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/README

    os.PathSeparator respectively) but are not inherited in subprocess environments.
    
    Adding single quotes around text keeps spaces in that text from being treated
    as word separators and also disables environment variable expansion. Inside a
    single-quoted block of text, a repeated single quote indicates a literal single
    quote, as in:
    
        'Don''t communicate by sharing memory.'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-CacheControlCommon.kt

            if (pos < value.length && value[pos] == '\"') {
              // Quoted string.
              pos++ // Consume '"' open quote.
              val parameterStart = pos
              pos = value.indexOf('"', pos)
              parameter = value.substring(parameterStart, pos)
              pos++ // Consume '"' close quote (if necessary).
            } else {
              // Unquoted string.
              val parameterStart = pos
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. okhttp-java-net-cookiejar/src/main/kotlin/okhttp3/java/net/cookiejar/JavaNetCookieJar.kt

          var value =
            if (equalsSign < pairEnd) {
              header.trimSubstring(equalsSign + 1, pairEnd)
            } else {
              ""
            }
    
          // If the value is "quoted", drop the quotes.
          if (value.startsWith("\"") && value.endsWith("\"") && value.length >= 2) {
            value = value.substring(1, value.length - 1)
          }
    
          result.add(
            Cookie.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:10:43 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. gradlew

            "$@"
    
    # Stop when "xargs" is not available.
    if ! command -v xargs >/dev/null 2>&1
    then
        die "xargs is not available"
    fi
    
    # Use "xargs" to parse quoted args.
    #
    # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
    #
    # In Bash we could simply go:
    #
    #   readarray ARGS < <( xargs -n1 <<<"$var" ) &&
    #   set -- "${ARGS[@]}" "$@"
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/codehost.go

    				text.WriteByte(' ')
    			}
    			switch {
    			case strings.ContainsAny(arg, "'"):
    				// Quote args that could be mistaken for quoted args.
    				text.WriteByte('"')
    				text.WriteString(bashQuoter.Replace(arg))
    				text.WriteByte('"')
    			case strings.ContainsAny(arg, "$`\\*?[\"\t\n\v\f\r \u0085\u00a0"):
    				// Quote args that contain special characters, glob patterns, or spaces.
    				text.WriteByte('\'')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/encoding/json/encode.go

    	b := e.AvailableBuffer()
    	b = mayAppendQuote(b, opts.quoted)
    	b = strconv.AppendBool(b, v.Bool())
    	b = mayAppendQuote(b, opts.quoted)
    	e.Write(b)
    }
    
    func intEncoder(e *encodeState, v reflect.Value, opts encOpts) {
    	b := e.AvailableBuffer()
    	b = mayAppendQuote(b, opts.quoted)
    	b = strconv.AppendInt(b, v.Int(), 10)
    	b = mayAppendQuote(b, opts.quoted)
    	e.Write(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
Back to top