Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Contact (0.29 sec)

  1. internal/config/errors.go

    		"Please set the correct password in environment variable `MINIO_CERT_PASSWD`",
    		"",
    	)
    
    	ErrUnexpectedError = newErrFn(
    		"Unexpected error",
    		"Please contact MinIO at https://slack.min.io",
    		"",
    	)
    
    	ErrInvalidCompressionIncludesValue = newErrFn(
    		"Invalid compression include value",
    		"Please check the passed value",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Mar 18 22:25:32 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  2. istioctl/pkg/proxystatus/proxystatus.go

    				} else {
    					path := "config_dump"
    					envoyDump, err = kubeClient.EnvoyDo(context.TODO(), podName, ns, "GET", path)
    				}
    				if err != nil {
    					return fmt.Errorf("could not contact sidecar: %w", err)
    				}
    
    				xdsRequest := discovery.DiscoveryRequest{
    					ResourceNames: []string{fmt.Sprintf("%s.%s", podName, ns)},
    					TypeUrl:       pilotxds.TypeDebugConfigDump,
    				}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  3. cmd/healthcheck-handler.go

    }
    
    // LivenessCheckHandler checks whether MinIO is up. It differs from the
    // readiness handler since a failing liveness check causes pod restarts
    // in K8S environments. Therefore, it does not contact external systems.
    func LivenessCheckHandler(w http.ResponseWriter, r *http.Request) {
    	if objLayer := newObjectLayerFn(); objLayer == nil {
    		w.Header().Set(xhttp.MinIOServerStatus, unavailable) // Service not initialized yet
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 03 21:13:20 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  4. cmd/sts-errors.go

    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrSTSUpstreamError: {
    		Code:           "InternalError",
    		Description:    "An upstream service required for this operation failed - please try again or contact an administrator.",
    		HTTPStatusCode: http.StatusInternalServerError,
    	},
    	ErrSTSInternalError: {
    		Code:           "InternalError",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrAccessKeyDisabled: {
    		Code:           "InvalidAccessKeyId",
    		Description:    "Your account is disabled; please contact your administrator.",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrInvalidArgument: {
    		Code:           "InvalidArgument",
    		Description:    "Invalid argument",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
  6. cmd/erasure-healing_test.go

    				errFileCorrupt,
    				errFileNotFound,
    				nil,
    				errFileCorrupt,
    			},
    			expectedMeta:     fi,
    			expectedDangling: false,
    		},
    		{
    			name: "FileInfoUnDecided-case6-(data-dir intact)",
    			metaArr: []FileInfo{
    				{},
    				{},
    				{},
    				fi,
    			},
    			errs: []error{
    				errFileNotFound,
    				errFileNotFound,
    				errFileNotFound,
    				nil,
    			},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Mar 27 15:10:40 GMT 2024
    - 47.6K bytes
    - Viewed (0)
  7. docs/debugging/s3-check-md5/main.go

    				if s3MD5 != object.ETag {
    					corrupted = true
    				}
    			}
    
    			if corrupted {
    				log.Println("CORRUPTED object:", objFullPath(object))
    			} else {
    				log.Println("INTACT object:", objFullPath(object))
    			}
    		}
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Feb 17 01:15:57 GMT 2024
    - 6.3K bytes
    - Viewed (0)
Back to top