Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 388 for 900s (0.14 sec)

  1. pkg/istio-agent/testdata/grpc-bootstrap.json

          "config": {
            "certificate_file": "/cert/path/cert-chain.pem",
            "private_key_file": "/cert/path/key.pem",
            "ca_certificate_file": "/cert/path/root-cert.pem",
            "refresh_interval": "900s"
          }
        }
      },
      "server_listener_resource_name_template": "xds.istio.io/grpc/lds/inbound/%s"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 957 bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/testdata/xds_bootstrap.json

            "private_key_file": "../../../../tests/testdata/certs/default/key.pem",
            "ca_certificate_file": "../../../../tests/testdata/certs/default/root-cert.pem",
            "refresh_interval": "900s"
          }
        }
      },
      "server_listener_resource_name_template": "xds.istio.io/grpc/lds/inbound/%s"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 08 18:48:42 UTC 2022
    - 961 bytes
    - Viewed (0)
  3. docs/distributed/distributed-from-config-file.sh

    1,0,0 http://localhost:9003/tmp/xl/node9003/mnt/disk1
    1,0,1 http://localhost:9004/tmp/xl/node9004/mnt/disk1
    1,0,2 http://localhost:9003/tmp/xl/node9003/mnt/disk2
    1,0,3 http://localhost:9004/tmp/xl/node9004/mnt/disk2
    1,0,4 http://localhost:9003/tmp/xl/node9003/mnt/disk3
    1,0,5 http://localhost:9004/tmp/xl/node9004/mnt/disk3
    1,0,6 http://localhost:9003/tmp/xl/node9003/mnt/disk4
    1,0,7 http://localhost:9004/tmp/xl/node9004/mnt/disk4
    EOF
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. cmd/endpoint_test.go

    		{[]string{"http://localhost:9000/d1", "http://example.org:9000/d2", "http://example.com:9000/d3", "http://example.net:9000/d4"}, []string{"example.com:9000", "example.net:9000", "example.org:9000", "localhost:9000"}, "localhost:9000"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:53:03 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. buildscripts/verify-build.sh

    		echo "server1 log:"
    		cat "$WORK_DIR/dist-minio-9000.log"
    		echo "server2 log:"
    		cat "$WORK_DIR/dist-minio-9001.log"
    		echo "server3 log:"
    		cat "$WORK_DIR/dist-minio-9002.log"
    		echo "server4 log:"
    		cat "$WORK_DIR/dist-minio-9003.log"
    	fi
    
    	rm -f "$WORK_DIR/dist-minio-9000.log" "$WORK_DIR/dist-minio-9001.log" "$WORK_DIR/dist-minio-9002.log" "$WORK_DIR/dist-minio-9003.log"
    
    	return "$rv"
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. docs/multi-tenancy/README.md

    ### 1.1 Host Multiple Tenants on a Single Drive
    
    Use the following commands to host 3 tenants on a single drive:
    
    ```sh
    minio server --address :9001 /data/tenant1
    minio server --address :9002 /data/tenant2
    minio server --address :9003 /data/tenant3
    ```
    
    ![Example-1](https://github.com/minio/minio/blob/master/docs/screenshots/Example-1.jpg?raw=true)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. samples/tcp-echo/tcp-echo-services.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: tcp-echo
      labels:
        app: tcp-echo
        service: tcp-echo
    spec:
      ports:
      - name: tcp
        port: 9000
      - name: tcp-other
        port: 9001
      # Port 9002 is omitted intentionally for testing the pass through filter chain.
      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo-v1
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. samples/tcp-echo/tcp-echo.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: tcp-echo
      labels:
        app: tcp-echo
        service: tcp-echo
    spec:
      ports:
      - name: tcp
        port: 9000
      - name: tcp-other
        port: 9001
      # Port 9002 is omitted intentionally for testing the pass through filter chain.
      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. samples/tcp-echo/tcp-echo-dual-stack.yaml

      name: tcp-echo
      labels:
        app: tcp-echo
        service: tcp-echo
    spec:
      ipFamilyPolicy: RequireDualStack
      ipFamilies:
      - IPv6
      - IPv4
      ports:
      - name: tcp
        port: 9000
      - name: tcp-other
        port: 9001
      # Port 9002 is omitted intentionally for testing the pass through filter chain.
      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. samples/tcp-echo/tcp-echo-ipv6.yaml

    metadata:
      name: tcp-echo
      labels:
        app: tcp-echo
        service: tcp-echo
    spec:
      ipFamilyPolicy: SingleStack
      ipFamilies:
      - IPv6
      ports:
      - name: tcp
        port: 9000
      - name: tcp-other
        port: 9001
      # Port 9002 is omitted intentionally for testing the pass through filter chain.
      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top