Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 151 for 900s (0.24 sec)

  1. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/TimeFormattingTest.groovy

            TimeFormatting.formatDurationVeryTerse(-60 * 1000) == '-1m0.00s'
            TimeFormatting.formatDurationVeryTerse(-60 * 60 * 1000) == '-1h0m0.00s'
            TimeFormatting.formatDurationVeryTerse(-(23 * 60 * 1000 + 12 * 1000 + 310)) == '-23m12.31s'
        }
    
        def roundsMillisWhenDurationIsGreaterThanOneMinute() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. .github/workflows/run-mint.sh

    [ "${MODE}" == "resiliency" ] && docker-compose -f minio-${MODE}.yaml pause minio4
    
    docker run --rm --net=mint_default \
    	--name="mint-${MODE}-${JOB_NAME}" \
    	-e SERVER_ENDPOINT="nginx:9000" \
    	-e ACCESS_KEY="${ACCESS_KEY}" \
    	-e SECRET_KEY="${SECRET_KEY}" \
    	-e ENABLE_HTTPS=0 \
    	-e MINT_MODE="${MINT_MODE}" \
    	docker.io/minio/mint:edge
    
    # FIXME: enable this after fixing aws-sdk-java-v2 tests
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. cmd/testdata/xl-meta-merge.zip

    port access for Firewalls By default MinIO uses the port 9000 to listen for incoming connections. If your platform blocks the port by default, you may need to enable access to the port. ### ufw For hosts with ufw enabled (Debian based distros), you can use `ufw` command to allow traffic to specific ports. Use below command to allow access to port 9000 ```sh ufw allow 9000 ``` Below command enables all incoming traffic to ports ranging from 9000 to 9010. ```sh ufw allow 9000:9010/tcp ``` ### firewall-cmd...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-custom-grpc-provider-out2.yaml

        value:
          stringMatch:
            prefix: istio-ext-authz
      grpcService:
        envoyGrpc:
          authority: my-custom-ext-authz.foo.svc.cluster.local
          clusterName: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
        timeout: 0.002s
      statusOnError:
        code: Forbidden
      transportApiVersion: V3
      withRequestBody:
        allowPartialMessage: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 666 bytes
    - Viewed (0)
  5. hack/verify-licenses.sh

        fi
    done < "${ARTIFACTS}"/licenses.csv
    awk '{ printf "%-100s : %-20s : %s\n", $1, $2, $3 }' "${ARTIFACTS}"/approved_licenses.dump
    
    
    if [[ ${#packages_url_missing[@]} -gt 0 ]]; then
        echo -e '\n[ERROR] The following go-packages in the project have unknown or unreachable license URL:'
        awk '{ printf "%-100s :  %-20s : %s\n", $1, $2, $3 }' "${ARTIFACTS}"/approved_licenses_with_missing_urls.dump
        exit_code=1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/alerts.md

    ```json
    {
      "receiver": "web\\.hook",
      "status": "firing",
      "alerts": [
        {
          "status": "firing",
          "labels": {
            "alertname": "MinIOClusterTolerance",
            "instance": "localhost:9000",
            "job": "minio-job-node",
            "pool": "0",
            "server": "127.0.0.1:9000",
            "set": "0",
            "severity": "critical"
          },
          "annotations": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 28 20:53:59 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. buildscripts/minio-iam-ldap-upgrade-import-test.sh

    create_iam_content_in_old_minio() {
    	echo "Creating IAM content in old minio instance."
    
    	MINIO_CI_CD=1 ./minio.${OLD_VERSION} server /tmp/data/{1...4} &
    	sleep 5
    
    	set -x
    	mc alias set old-minio http://localhost:9000 minioadmin minioadmin
    	mc ready old-minio
    	mc idp ldap add old-minio \
    		server_addr=localhost:1389 \
    		server_insecure=on \
    		lookup_bind_dn=cn=admin,dc=min,dc=io \
    		lookup_bind_password=admin \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. cmd/signature-v4-utils_test.go

    	signedHeaders = append(signedHeaders, "expect")
    	// expected header values.
    	expectedHost := "play.min.io:9000"
    	expectedContentSha256 := "1234abcd"
    	expectedTime := UTCNow().Format(iso8601Format)
    	expectedTransferEncoding := "gzip"
    	expectedExpect := "100-continue"
    
    	r, err := http.NewRequest(http.MethodGet, "http://play.min.io:9000", nil)
    	if err != nil {
    		t.Fatal("Unable to create http.Request :", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. pkg/dns/server/name_table_test.go

    	headlessService := &model.Service{
    		Hostname:       host.Name("headless-svc.testns.svc.cluster.local"),
    		DefaultAddress: constants.UnspecifiedIP,
    		Ports: model.PortList{&model.Port{
    			Name:     "tcp-port",
    			Port:     9000,
    			Protocol: protocol.TCP,
    		}},
    		Resolution: model.Passthrough,
    		Attributes: model.ServiceAttributes{
    			Name:            "headless-svc",
    			Namespace:       "testns",
    			ServiceRegistry: provider.Kubernetes,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/extended-custom-http-provider-out2.yaml

              ignoreCase: true
            - ignoreCase: true
              prefix: x-prefix-
            - ignoreCase: true
              suffix: -suffix
        pathPrefix: /check
        serverUri:
          cluster: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
          timeout: 10s
          uri: http://my-custom-ext-authz.foo.svc.cluster.local
      statusOnError:
        code: Forbidden
      transportApiVersion: V3
      withRequestBody:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top