Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 503 (0.02 sec)

  1. index.yaml

        maintainers:
        - email: ******@****.***
          name: MinIO, Inc
        name: minio
        sources:
        - https://github.com/minio/minio
        urls:
        - https://charts.min.io/helm-releases/minio-5.0.3.tgz
        version: 5.0.3
      - apiVersion: v1
        appVersion: RELEASE.2022-12-12T19-27-27Z
        created: "2024-04-28T03:14:12.216041974-07:00"
        description: Multi-Cloud Object Storage
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. cmd/iam.go

    		loadUserCalled = true
    
    		u, ok = sys.store.GetUser(accessKey)
    	}
    
    	if !ok && loadUserCalled && err != nil {
    		iamLogOnceIf(ctx, err, accessKey)
    
    		// return 503 to application
    		return u, false, errIAMNotInitialized
    	}
    
    	return u, ok && u.Credentials.IsValid(), nil
    }
    
    // GetUser - get user credentials
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// StatusReasonServiceUnavailable means that the request itself was valid,
    	// but the requested service is unavailable at this time.
    	// Retrying the request after some time might succeed.
    	// Status code 503
    	StatusReasonServiceUnavailable StatusReason = "ServiceUnavailable"
    )
    
    // StatusCause provides more information about an api.Status failure, including
    // cases when multiple errors are encountered.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
Back to top