Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for StatusNotImplemented (0.29 sec)

  1. internal/kms/errors.go

    		Err:     "failed to decrypt ciphertext",
    	}
    
    	// ErrNotSupported is an error returned by the KMS when the requested
    	// functionality is not supported by the KMS service.
    	ErrNotSupported = Error{
    		Code:    http.StatusNotImplemented,
    		APICode: "kms:NotSupported",
    		Err:     "requested functionality is not supported",
    	}
    )
    
    // Error is a KMS error that can be translated into an S3 API error.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. internal/kms/kes.go

    			return nil, ErrKeyNotFound
    		}
    		if errors.Is(err, kes.ErrNotAllowed) {
    			return nil, ErrPermission
    		}
    		if kErr, ok := err.(kes.Error); ok && kErr.Status() == http.StatusNotImplemented {
    			return nil, ErrNotSupported
    		}
    	}
    	return mac, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. cmd/object-lambda-handlers.go

    	"Unavailable For Legal Reasons":   http.StatusUnavailableForLegalReasons,
    	"Internal Server Error":           http.StatusInternalServerError,
    	"Not Implemented":                 http.StatusNotImplemented,
    	"Bad Gateway":                     http.StatusBadGateway,
    	"Service Unavailable":             http.StatusServiceUnavailable,
    	"Gateway Timeout":                 http.StatusGatewayTimeout,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrNotImplemented: {
    		Code:           "NotImplemented",
    		Description:    "A header you provided implies functionality that is not implemented",
    		HTTPStatusCode: http.StatusNotImplemented,
    	},
    	ErrPreconditionFailed: {
    		Code:           "PreconditionFailed",
    		Description:    "At least one of the pre-conditions you specified did not hold",
    		HTTPStatusCode: http.StatusPreconditionFailed,
    	},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	// Convert to svg.
    	svg, err := dotToSvg(dot.Bytes())
    	if err != nil {
    		http.Error(w, "Could not execute dot; may need to install graphviz.",
    			http.StatusNotImplemented)
    		ui.options.UI.PrintErr("Failed to execute dot. Is Graphviz installed?\n", err)
    		return
    	}
    
    	// Get all node names into an array.
    	nodes := []string{""} // dot starts with node numbered 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. cmd/bucket-handlers_test.go

    			uploadIDMarker:     "",
    			delimiter:          "",
    			maxUploads:         "0",
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusNotImplemented,
    			shouldPass:         false,
    		},
    		// Test case - 5.
    		// Invalid upload id and marker combination.
    		{
    			bucket:             bucketName,
    			prefix:             "asia",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  7. src/net/http/server.go

    				//      A server that receives a request message with a
    				//      transfer coding it does not understand SHOULD
    				//      respond with 501 (Unimplemented).
    				code := StatusNotImplemented
    
    				// We purposefully aren't echoing back the transfer-encoding's value,
    				// so as to mitigate the risk of cross side scripting by an attacker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"StatusNoContent", Const, 0},
    		{"StatusNonAuthoritativeInfo", Const, 0},
    		{"StatusNotAcceptable", Const, 0},
    		{"StatusNotExtended", Const, 7},
    		{"StatusNotFound", Const, 0},
    		{"StatusNotImplemented", Const, 0},
    		{"StatusNotModified", Const, 0},
    		{"StatusOK", Const, 0},
    		{"StatusPartialContent", Const, 0},
    		{"StatusPaymentRequired", Const, 0},
    		{"StatusPermanentRedirect", Const, 7},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top