Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 819 for quoted0 (0.13 sec)

  1. internal/event/target/postgresql.go

    			return r
    		default:
    			valid = false
    			return -1
    		}
    	}, name)
    
    	if valid {
    		// check for simple name or quoted name
    		// - letter/underscore followed by one or more letter/digit/underscore
    		// - any text between quotes (text cannot contain a quote itself)
    		if match, err := regexp.MatchString("^[a_][a0_$]*$", cleaned); err != nil {
    			return err
    		} else if match {
    			return nil
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    // in http://msdn.microsoft.com/en-us/library/ms880421.
    // This function returns "" (2 double quotes) if s is empty.
    // Alternatively, these transformations are done:
    //   - every back slash (\) is doubled, but only if immediately
    //     followed by double quote (");
    //   - every double quote (") is escaped by back slash (\);
    //   - finally, s is wrapped with double quotes (arg -> "arg"),
    //     but only if there is space or tab inside s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/util/internal/ArgumentsSplitter.java

    public class ArgumentsSplitter {
    
        /**
         * Splits the arguments string (for example, a program command line) into a collection.
         * Only supports space-delimited and/or quoted command line arguments. This currently does not handle escaping characters such as quotes.
         *
         * @param arguments the arguments, for example command line args.
         * @return separate command line arguments.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_replace.txt

    go mod edit -replace=not-rsc.io/quote/v3@v3.0.0=rsc.io/quote/v3@v3.0.0 -require=not-rsc.io/quote/v3@v3.0.0
    ! go build -o a4.exe .
    stderr 'rsc.io/quote/v3@v3.0.0 used for two different module paths \(not-rsc.io/quote/v3 and rsc.io/quote/v3\)'
    
    # Modules that do not (yet) exist upstream can be replaced too.
    cp go.mod.orig go.mod
    go mod edit -replace=not-rsc.io/quote/v3@v3.1.0=./local/rsc.io/quote/v3
    go build -mod=mod -o a5.exe ./usenewmodule
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  5. pkg/util/shellescape/quote_test.go

    	"os/exec"
    	"strings"
    	"testing"
    )
    
    func TestQuote(t *testing.T) {
    	testCases := []string{
    		`{"key": "value"}`,
    		`it's going to need single quotes`,
    		"",
    		"no issues here",
    	}
    	for _, original := range testCases {
    		out, err := exec.Command("sh", "-c", "echo "+Quote(original)).CombinedOutput()
    		if err != nil {
    			t.Fatal(err)
    		}
    		got := strings.TrimRight(string(out), "\n")
    		if got != original {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 07 20:37:19 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. internal/s3select/sql/utils.go

    	case e.ObjectWildcard:
    		return ".*"
    	case e.ArrayWildcard:
    		return "[*]"
    	}
    	return ""
    }
    
    // String removes double quotes in quoted identifiers
    func (i *Identifier) String() string {
    	if i.Unquoted != nil {
    		return *i.Unquoted
    	}
    	return string(*i.Quoted)
    }
    
    func (o *ObjectKey) String() string {
    	if o.Lit != nil {
    		return fmt.Sprintf("['%s']", string(*o.Lit))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 10 16:12:50 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4XCTest.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!
                                """
                            XCTAssertNotNil(longMessage.range(of: """
                                    Multi-line strings also let you write "quote marks"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/strconv/quote_test.go

    	// Some non-printable but graphic runes. Final column is double-quoted.
    	{"!\u00a0!\u2000!\u3000!", `"!\u00a0!\u2000!\u3000!"`, `"!\u00a0!\u2000!\u3000!"`, "\"!\u00a0!\u2000!\u3000!\""},
    	{"\x7f", `"\x7f"`, `"\x7f"`, `"\x7f"`},
    }
    
    func TestQuote(t *testing.T) {
    	for _, tt := range quotetests {
    		if out := Quote(tt.in); out != tt.out {
    			t.Errorf("Quote(%s) = %s, want %s", tt.in, out, tt.out)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. src/log/slog/text_handler.go

    // [HandlerOptions.ReplaceAttr].
    //
    // If a value implements [encoding.TextMarshaler], the result of MarshalText is
    // written. Otherwise, the result of [fmt.Sprint] is written.
    //
    // Keys and values are quoted with [strconv.Quote] if they contain Unicode space
    // characters, non-printing characters, '"' or '='.
    //
    // Keys inside groups consist of components (keys or group names) separated by
    // dots. No further escaping is performed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/etag.go

    	targetGV schema.GroupVersion,
    	serializer runtime.NegotiatedSerializer,
    	w http.ResponseWriter,
    	req *http.Request,
    ) {
    	// ETag must be enclosed in double quotes:
    	// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag
    	quotedHash := strconv.Quote(hash)
    	w.Header().Set("ETag", quotedHash)
    	w.Header().Set("Vary", "Accept")
    	w.Header().Set("Cache-Control", "public")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top