Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for shtml (0.07 sec)

  1. cmd/api-errors.go

    // APIErrorCode type of error status.
    type APIErrorCode int
    
    //go:generate stringer -type=APIErrorCode -trimprefix=Err $GOFILE
    
    // Error codes, non exhaustive list - http://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html
    const (
    	ErrNone APIErrorCode = iota
    	ErrAccessDenied
    	ErrBadDigest
    	ErrEntityTooSmall
    	ErrEntityTooLarge
    	ErrPolicyTooLarge
    	ErrIncompleteBody
    	ErrInternalError
    	ErrInvalidAccessKeyID
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  2. pkg/proxy/iptables/proxier.go

    	}
    
    	// Be conservative in what you do, be liberal in what you accept from others.
    	// If it's non-zero, we mark only out of window RST segments as INVALID.
    	// Ref: https://docs.kernel.org/networking/nf_conntrack-sysctl.html
    	conntrackTCPLiberal := false
    	if val, err := sysctl.GetSysctl(sysctlNFConntrackTCPBeLiberal); err == nil && val != 0 {
    		conntrackTCPLiberal = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string ipFamilyPolicy = 71;
      // The next available key is 72
    }
    
    // Configuration for Security Token Service (STS) server.
    //
    // See https://tools.ietf.org/html/draft-ietf-oauth-token-exchange-16
    message STSConfig {
      uint32 servicePort = 1;
    }
    
    message IstiodConfig {
      // If enabled, istiod will perform config analysis
      google.protobuf.BoolValue enableAnalysis = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            // > the getter method. Boolean properties are visible with a `is` prefix in Kotlin
            //
            // https://kotlinlang.org/docs/reference/java-interop.html#getters-and-setters
            //
            // This code assumes all configurable Boolean property getters follow the `is` prefix convention.
            //
            private String booleanPropertyNameFor(String propertyName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    type RegisterSet uint64
    
    // logf prints debug-specific logging to stdout (always stdout) if the
    // current function is tagged by GOSSAFUNC (for ssa output directed
    // either to stdout or html).
    func (s *debugState) logf(msg string, args ...interface{}) {
    	if s.f.PrintOrHtmlSSA {
    		fmt.Printf(msg, args...)
    	}
    }
    
    type debugState struct {
    	// See FuncDebug.
    	slots    []LocalSlot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    	// FreeBSD signature section contains 3 equally sized notes
    	return elfnote(sh, startva, resoff, n, n, n)
    }
    
    // elfwritefreebsdsig writes FreeBSD .note section.
    //
    // See https://www.netbsd.org/docs/kernel/elf-notes.html for the description of
    // a Note element format and
    // https://github.com/freebsd/freebsd-src/blob/main/sys/sys/elf_common.h#L790
    // for the FreeBSD-specific values.
    func elfwritefreebsdsig(out *OutBuf) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    		t.Fatalf("Unmarshal: %v", err)
    	}
    	if xint.X != 1 {
    		t.Fatalf("xint.X = %d, want 1", xint.X)
    	}
    }
    
    func TestEscape(t *testing.T) {
    	const input = `"foobar"<html>` + " [\u2028 \u2029]"
    	const want = `"\"foobar\"\u003chtml\u003e [\u2028 \u2029]"`
    	got, err := Marshal(input)
    	if err != nil {
    		t.Fatalf("Marshal error: %v", err)
    	}
    	if string(got) != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    func fillAligned(x uint64, m uint) uint64 {
    	apply := func(x uint64, c uint64) uint64 {
    		// The technique used it here is derived from
    		// https://graphics.stanford.edu/~seander/bithacks.html#ZeroInWord
    		// and extended for more than just bytes (like nibbles
    		// and uint16s) by using an appropriate constant.
    		//
    		// To summarize the technique, quoting from that page:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    	return req, err
    }
    
    // preSignV4 presign the request, in accordance with
    // http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html.
    func preSignV4(req *http.Request, accessKeyID, secretAccessKey string, expires int64) error {
    	// Presign is not needed for anonymous credentials.
    	if accessKeyID == "" || secretAccessKey == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    	}
    
    	// Try to insert a dummy VS with the passed scheduler.
    	// We should use a VIP address that is not used on the node.
    	// An address "198.51.100.0" from the TEST-NET-2 rage in https://datatracker.ietf.org/doc/html/rfc5737
    	// is used. These addresses are reserved for documentation. If the user is using
    	// this address for a VS anyway we *will* mess up, but that would be an invalid configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top