Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 181 for sw_vers (0.18 sec)

  1. cmd/prepare-storage.go

    		case errors.Is(err, errFirstDiskWait):
    			// Fresh setup, wait for other servers to come up.
    			logger.Info("Waiting for all other servers to be online to format the drives (elapses %s)\n", getElapsedTime())
    		case errors.Is(err, errErasureReadQuorum):
    			// no quorum available continue to wait for minimum number of servers.
    			logger.Info("Waiting for a minimum of %d drives to come online (elapsed %s)\n",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. docs/em/docs/advanced/behind-a-proxy.md

    ## ๐ŸŒ– ๐Ÿ’ฝ
    
    !!! warning
        ๐Ÿ‘‰ ๐ŸŒ… ๐Ÿง โš™๏ธ ๐Ÿ’ผ. ๐Ÿ’ญ ๐Ÿ†“ ๐Ÿšถ โšซ๏ธ.
    
    ๐Ÿ”ข, **FastAPI** ๐Ÿ”œ โœ `server` ๐Ÿ—„ ๐Ÿ”— โฎ๏ธ ๐Ÿ“› `root_path`.
    
    โœ‹๏ธ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšš ๐ŸŽ ๐ŸŽ› `servers`, ๐Ÿ–ผ ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ’š *๐ŸŽ* ๐Ÿฉบ ๐ŸŽš ๐Ÿ”— โฎ๏ธ ๐Ÿ— & ๐Ÿญ ๐ŸŒ.
    
    ๐Ÿšฅ ๐Ÿ‘† ๐Ÿšถโ€โ™€๏ธ ๐Ÿ›ƒ ๐Ÿ“‡ `servers` & ๐Ÿ“ค `root_path` (โ†ฉ๏ธ ๐Ÿ‘† ๐Ÿ› ๏ธ ๐Ÿ‘จโ€โคโ€๐Ÿ‘จ โ›… ๐Ÿ—ณ), **FastAPI** ๐Ÿ”œ ๐Ÿ“ฉ "๐Ÿ’ฝ" โฎ๏ธ ๐Ÿ‘‰ `root_path` โ–ถ๏ธ ๐Ÿ“‡.
    
    ๐Ÿ–ผ:
    
    ```Python hl_lines="4-7"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. internal/grid/benchmark_test.go

    	"runtime"
    	"strconv"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"github.com/minio/minio/internal/logger/target/testlogger"
    )
    
    func BenchmarkRequests(b *testing.B) {
    	for n := 2; n <= 32; n *= 2 {
    		b.Run("servers="+strconv.Itoa(n), func(b *testing.B) {
    			benchmarkGridRequests(b, n)
    		})
    	}
    }
    
    func benchmarkGridRequests(b *testing.B, n int) {
    	defer testlogger.T.SetErrorTB(b)()
    	errFatal := func(err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/network.go

    var NetworkGatewayTestDNSServers []string
    
    func newClient() (*dnsClient, error) {
    	servers := NetworkGatewayTestDNSServers
    	if len(servers) == 0 {
    		dnsConfig, err := dns.ClientConfigFromFile("/etc/resolv.conf")
    		if err != nil {
    			return nil, err
    		}
    		if dnsConfig != nil {
    			for _, s := range dnsConfig.Servers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    				EnableWatchCache:        true,
    				DefaultWatchCacheSize:   100,
    				EtcdServersOverrides:    []string{"/events/http://127.0.0.1:4002"},
    			},
    			expectErr: "--etcd-servers-overrides invalid, must be of format: group/resource#servers, where servers are URLs, semicolon separated",
    		},
    		{
    			name: "test when encryption-provider-config-automatic-reload is invalid",
    			testOptions: &EtcdOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_simulation_test.go

    spec:
      selector:
        istio: ingressgateway
      servers:
    {{- range $i, $p := $.Servers }}
      -
    {{$p | trim | indent 4}}
    {{- end }}
    ---
    `, struct {
    		Name      string
    		Namespace string
    		Servers   []string
    	}{name, namespace, servers})
    }
    
    func createGatewayWithServiceSelector(name, service string, servers ...string) string {
    	if name == "" {
    		name = "default"
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. README.md

    ## Container Installation
    
    Use the following commands to run a standalone MinIO server as a container.
    
    Standalone MinIO servers are best suited for early development and evaluation. Certain features such as versioning, object locking, and bucket replication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. pkg/dns/client/dns.go

    	// upstream resolvers as is.
    	if dnsConfig != nil {
    		for _, s := range dnsConfig.Servers {
    			h.resolvConfServers = append(h.resolvConfServers, net.JoinHostPort(s, dnsConfig.Port))
    		}
    		h.searchNamespaces = dnsConfig.Search
    	}
    
    	log.WithLabels("search", h.searchNamespaces, "servers", h.resolvConfServers).Debugf("initialized DNS")
    
    	if addr == "" {
    		addr = "localhost:15053"
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. fastapi/openapi/utils.py

        if contact:
            info["contact"] = contact
        if license_info:
            info["license"] = license_info
        output: Dict[str, Any] = {"openapi": openapi_version, "info": info}
        if servers:
            output["servers"] = servers
        components: Dict[str, Dict[str, Any]] = {}
        paths: Dict[str, Dict[str, Any]] = {}
        webhook_paths: Dict[str, Dict[str, Any]] = {}
        operation_ids: Set[str] = set()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. docs/zh/docs/advanced/behind-a-proxy.md

    ## ้™„ๅŠ ็š„ๆœๅŠกๅ™จ
    
    !!! warning "่ญฆๅ‘Š"
    
        ๆญค็”จไพ‹่พƒ้šพ๏ผŒๅฏไปฅ่ทณ่ฟ‡ใ€‚
    
    ้ป˜่ฎคๆƒ…ๅ†ตไธ‹๏ผŒ**FastAPI** ไฝฟ็”จ `root_path` ็š„้“พๆŽฅๅœจ OpenAPI ๆฆ‚ๅ›พไธญๅˆ›ๅปบ `server`ใ€‚
    
    ไฝ†ไนŸๅฏไปฅไฝฟ็”จๅ…ถๅฎƒๅค‡้€‰ `servers`๏ผŒไพ‹ๅฆ‚๏ผŒ้œ€่ฆๅŒไธ€ไธช API ๆ–‡ๆกฃไธŽ staging ๅ’Œ็”Ÿไบง็Žฏๅขƒไบคไบ’ใ€‚
    
    ๅฆ‚ๆžœไผ ้€’่‡ชๅฎšไน‰ `servers` ๅˆ—่กจ๏ผŒๅนถๆœ‰ `root_path`๏ผˆ ๅ› ไธบ API ไฝฟ็”จไบ†ไปฃ็†๏ผ‰๏ผŒ**FastAPI** ไผšๅœจๅˆ—่กจๅผ€ๅคดไฝฟ็”จ่ฟ™ไธช `root_path` ๆ’ๅ…ฅ**ๆœๅŠกๅ™จ**ใ€‚
    
    ไพ‹ๅฆ‚๏ผš
    
    ```Python hl_lines="4-7"
    {!../../../docs_src/behind_a_proxy/tutorial003.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top