Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 385 for quoting (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/mutation/optional_test.go

    		},
    		{
    			// The root cause of the behavior above is that, has on an object (or Message in the Language Def),
    			// still require the field to be declared in the schema.
    			//
    			// Quoting from
    			// https://github.com/google/cel-spec/blob/master/doc/langdef.md#field-selection
    			//
    			// To test for the presence of a field, the boolean-valued macro has(e.f) can be used.
    			//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 21:52:39 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/html/template/html.go

    	'&':  "&",
    	'\'': "'",
    	'+':  "+",
    	'<':  "&lt;",
    	'=':  "&#61;",
    	'>':  "&gt;",
    	// A parse error in the attribute value (unquoted) and
    	// before attribute value states.
    	// Treated as a quoting character by IE.
    	'`': "&#96;",
    }
    
    // htmlNospaceNormReplacementTable is like htmlNospaceReplacementTable but
    // without '&' to avoid over-encoding existing entities.
    var htmlNospaceNormReplacementTable = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:42:28 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/goflags.txt

    stdout GOFLAGS
    
    # Flags listed in GOFLAGS should be safe to duplicate on the command line.
    env GOFLAGS=-tags=magic
    go list -tags=magic
    go test -tags=magic -c -o $devnull
    go vet -tags=magic
    
    # GOFLAGS uses the same quoting rules (quoted.Split) as the rest of
    # the go command env variables
    env GOFLAGS='"-tags=magic wizardry"'
    go list
    
    -- foo_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:47:27 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. src/encoding/csv/writer.go

    func NewWriter(w io.Writer) *Writer {
    	return &Writer{
    		Comma: ',',
    		w:     bufio.NewWriter(w),
    	}
    }
    
    // Write writes a single CSV record to w along with any necessary quoting.
    // A record is a slice of strings with each string being one field.
    // Writes are buffered, so [Writer.Flush] must eventually be called to ensure
    // that the record is written to the underlying [io.Writer].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/internal/pkgpattern/pat_test.go

    	match foo
    
    	pattern net
    	match net
    	not net/http
    
    	pattern net/http
    	match net/http
    	not net
    
    	pattern net...
    	match net net/http netchan
    	not not/http not/net/http
    
    	# Special cases. Quoting docs:
    
    	# First, /... at the end of the pattern can match an empty string,
    	# so that net/... matches both net and packages in its subdirectories, like net/http.
    	pattern net/...
    	match net net/http
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/svg.go

    // panning inside a web browser. It uses the svgpan library, which is
    // embedded into the svgpan.JSSource variable.
    func massageSVG(svg string) string {
    	// Work around for dot bug which misses quoting some ampersands,
    	// resulting on unparsable SVG.
    	svg = strings.Replace(svg, "&;", "&amp;;", -1)
    
    	// Dot's SVG output is
    	//
    	//    <svg width="___" height="___"
    	//     viewBox="___" xmlns=...>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/process/ArgWriter.java

                    }
                    return Collections.singletonList("@" + argsFile.getAbsolutePath());
                }
            };
        }
    
        /**
         * Writes a set of args on a single line, escaping and quoting as required.
         */
        @Override
        public ArgWriter args(Object... args) {
            for (int i = 0; i < args.length; i++) {
                Object arg = args[i];
                if (i > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:14:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/log/slog/internal/benchmarks/handlers.go

    import (
    	"context"
    	"fmt"
    	"io"
    	"log/slog"
    	"log/slog/internal/buffer"
    	"strconv"
    	"time"
    )
    
    // A fastTextHandler writes a Record to an io.Writer in a format similar to
    // slog.TextHandler, but without quoting or locking. It has a few other
    // performance-motivated shortcuts, like writing times as seconds since the
    // epoch instead of strings.
    //
    // It is intended to represent a high-performance Handler that synchronously
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 20:33:37 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/internal/pkgpattern/pkgpattern.go

    // MatchPattern(pattern)(name) reports whether
    // name matches pattern. Pattern is a limited glob
    // pattern in which '...' means 'any string' and there
    // is no other special syntax.
    // Unfortunately, there are two special cases. Quoting "go help packages":
    //
    // First, /... at the end of the pattern can match an empty string,
    // so that net/... matches both net and packages in its subdirectories, like net/http.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptTemplateBindingFactory.java

            boolean wasOnBackslash = false;
            StringBuilder escapedJvmOpt = new StringBuilder();
            CharacterIterator it = new StringCharacterIterator(jvmOpts);
    
            //argument quoting:
            // - " must be encoded as \"
            // - % must be encoded as %%
            // - pathological case: \" must be encoded as \\\", but other than that, \ MUST NOT be quoted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top