Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for browser (0.38 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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