Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 819 for quoted0 (0.52 sec)

  1. internal/s3select/sql/parser.go

    	r := values[0][1 : n-1]
    	// Translate doubled quotes
    	*ls = LiteralList(strings.Split(r, ","))
    	return nil
    }
    
    // ObjectKey is a type for parsed strings occurring in key paths
    type ObjectKey struct {
    	Lit *LiteralString `parser:" \"[\" @LitString \"]\""`
    	ID  *Identifier    `parser:"| \".\" @@"`
    }
    
    // QuotedIdentifier is a type for parsed strings that are double
    // quoted.
    type QuotedIdentifier string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_quote.txt

    # Check that mod tidy does not introduce repeated
    # require statements when input go.mod has quoted requirements.
    env GO111MODULE=on
    
    go mod tidy
    grep -count=1 rsc.io/quote go.mod
    
    cp go.mod2 go.mod
    go mod tidy
    grep -count=1 rsc.io/quote go.mod
    
    
    -- go.mod --
    module x
    
    -- x.go --
    package x
    import "rsc.io/quote"
    func main() { _ = quote.Hello }
    
    -- go.mod2 --
    module x
    require (
    	"rsc.io/sampler" v1.3.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 01 00:35:17 UTC 2018
    - 429 bytes
    - Viewed (0)
  3. src/strconv/doc.go

    //
    // # String Conversions
    //
    // [Quote] and [QuoteToASCII] convert strings to quoted Go string literals.
    // The latter guarantees that the result is an ASCII string, by escaping
    // any non-ASCII Unicode with \u:
    //
    //	q := strconv.Quote("Hello, 世界")
    //	q := strconv.QuoteToASCII("Hello, 世界")
    //
    // [QuoteRune] and [QuoteRuneToASCII] are similar but accept runes and
    // return quoted Go rune literals.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/badsym_test.go

    		if quote == '\000' && unicode.IsSpace(c) {
    			if !lastSpace {
    				cc = append(cc, s[start:i])
    				lastSpace = true
    			}
    		} else {
    			if lastSpace {
    				start = i
    				lastSpace = false
    			}
    			if quote == '\000' && !backslash && (c == '"' || c == '\'') {
    				quote = c
    				backslash = false
    			} else if !backslash && quote == c {
    				quote = '\000'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cgo_path_space_quote.txt

    # This test checks that the CC environment variable may contain quotes and
    # spaces. Arguments are normally split on spaces, tabs, newlines. If an
    # argument contains these characters, the entire argument may be quoted
    # with single or double quotes. This is the same as -gcflags and similar
    # options.
    
    [short] skip
    [!exec:clang] [!exec:gcc] skip
    [!cgo] skip
    
    env GOENV=$WORK/go.env
    mkdir 'program files'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 16 20:23:26 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

                        // The result would be something like DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'" \"-javaagent:$APP_HOME/lib/agents/foobar.jar\""
                        line + getAgentOptions("\$APP_HOME").joinToString(separator = " ", prefix = "\" ", postfix = "\"") {
                            // Wrap the agent switch in double quotes, as the expanded APP_HOME may contain spaces.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:25:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_replace.txt

    package main
    
    import (
    	"fmt"
    	"rsc.io/quote/v3"
    )
    
    func main() {
    	fmt.Println(quote.GoV3())
    }
    -- multiple-paths/go.mod --
    module quoter
    
    require (
    	rsc.io/quote/v3 v3.0.0
    	not-rsc.io/quote/v3 v3.0.0
    )
    
    replace not-rsc.io/quote/v3 => rsc.io/quote/v3 v3.0.0
    -- multiple-paths/use.go --
    package quoter
    
    import (
    	_ "not-rsc.io/quote/v3"
    	_ "rsc.io/quote/v3"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_list_replace_dir.txt

    go mod download rsc.io/quote@v1.5.2
    
    ! go list $GOPATH/pkg/mod/rsc.io/quote@v1.5.2
    stderr '^directory ..[/\\]pkg[/\\]mod[/\\]rsc.io[/\\]quote@v1.5.2 outside main module or its selected dependencies$'
    
    go list $GOPATH/pkg/mod/rsc.io/quote@v1.5.1
    stdout 'rsc.io/quote'
    
    -- go.mod --
    module example.com/quoter
    
    require rsc.io/quote v1.5.2
    
    replace rsc.io/quote => rsc.io/quote v1.5.1
    
    -- use.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 10 19:08:19 UTC 2022
    - 681 bytes
    - Viewed (0)
  9. src/runtime/debug/mod.go

    				rawKey, err := strconv.QuotedPrefix(kv)
    				if err != nil {
    					return nil, fmt.Errorf("invalid quoted key in build line")
    				}
    				if len(kv) == len(rawKey) {
    					return nil, fmt.Errorf("build line missing '=' after quoted key")
    				}
    				if c := kv[len(rawKey)]; c != '=' {
    					return nil, fmt.Errorf("unexpected character after quoted key: %q", c)
    				}
    				key, _ = strconv.Unquote(rawKey)
    				rawValue = kv[len(rawKey)+1:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    	//
    	// warn-code is a three digit number
    	// warn-agent is unquoted and contains no spaces
    	// warn-text is quoted with backslash escaping (RFC2047-encoded according to RFC2616, not encoded according to RFC7234)
    	// warn-date is optional, quoted, and in HTTP-date format (no embedded or escaped quotes)
    	//
    	// additional warnings can optionally be included in the same header by comma-separating them:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
Back to top