Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for browser (0.1 sec)

  1. src/encoding/json/indent.go

    // characters inside string literals changed to \u003c, \u003e, \u0026, \u2028, \u2029
    // so that the JSON will be safe to embed inside HTML <script> tags.
    // For historical reasons, web browsers don't honor standard HTML
    // escaping within <script> tags, so an alternative JSON encoding must be used.
    func HTMLEscape(dst *bytes.Buffer, src []byte) {
    	dst.Grow(len(src))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/html/template/html.go

    // htmlNospaceReplacementTable contains the runes that need to be escaped
    // inside an unquoted attribute value.
    // The set of runes escaped is the union of the HTML specials and
    // those determined by running the JS below in browsers:
    // <div id=d></div>
    // <script>(function () {
    // var a = [], d = document.getElementById("d"), i, c, s;
    // for (i = 0; i < 0x10000; ++i) {
    //
    //	c = String.fromCharCode(i);
    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. internal/logger/help.go

    			Optional:    true,
    			Type:        "sentence",
    		},
    	}
    
    	HelpKafka = config.HelpKVS{
    		config.HelpKV{
    			Key:         KafkaBrokers,
    			Description: "comma separated list of Kafka broker addresses",
    			Type:        "csv",
    		},
    		config.HelpKV{
    			Key:         KafkaTopic,
    			Description: "Kafka topic used for bucket notifications",
    			Optional:    true,
    			Type:        "string",
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 07 20:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/runtime/tagptr_64bit.go

    	// We use one bit to distinguish between the two ranges.
    	aixAddrBits = 57
    	aixTagBits  = 64 - aixAddrBits + 3
    
    	// riscv64 SV57 mode gives 56 bits of userspace VA.
    	// tagged pointer code supports it,
    	// but broader support for SV57 mode is incomplete,
    	// and there may be other issues (see #54104).
    	riscv64AddrBits = 56
    	riscv64TagBits  = 64 - riscv64AddrBits + 3
    )
    
    // The number of bits stored in the numeric tag of a taggedPointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. internal/kms/context.go

    				// If escapeHTML is set, it also escapes <, >, and &
    				// because they can lead to security holes when
    				// user-controlled strings are rendered into JSON
    				// and served to some browsers.
    				dst.WriteString(`u00`)
    				dst.WriteByte(hexTable[b>>4])
    				dst.WriteByte(hexTable[b&0xF])
    			}
    			i++
    			start = i
    			continue
    		}
    		c, size := utf8.DecodeRuneInString(s[i:])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. internal/event/target/mqtt.go

    	EnvMQTTQueueLimit        = "MINIO_NOTIFY_MQTT_QUEUE_LIMIT"
    )
    
    // MQTTArgs - MQTT target arguments.
    type MQTTArgs struct {
    	Enable               bool           `json:"enable"`
    	Broker               xnet.URL       `json:"broker"`
    	Topic                string         `json:"topic"`
    	QoS                  byte           `json:"qos"`
    	User                 string         `json:"username"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate.go

    			pp := req.URL.Query().Get("pretty")
    			if len(pp) > 0 {
    				pretty, _ := strconv.ParseBool(pp)
    				return pretty
    			}
    		}
    	}
    	userAgent := req.UserAgent()
    	// This covers basic all browsers and cli http tools
    	if strings.HasPrefix(userAgent, "curl") || strings.HasPrefix(userAgent, "Wget") || strings.HasPrefix(userAgent, "Mozilla/5.0") {
    		return true
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9.5K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/rest/subresources.go

    	return newThrottledUpgradeAwareProxyHandler(location, transport, true, false, responder), nil
    }
    
    // Support both GET and POST methods. We must support GET for browsers that want to use WebSockets.
    var upgradeableMethods = []string{"GET", "POST"}
    
    // AttachREST implements the attach subresource for a Pod
    type AttachREST struct {
    	Store       *genericregistry.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top