Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for StatusNotImplemented (0.38 sec)

  1. src/net/http/status.go

    	StatusRequestHeaderFieldsTooLarge  = 431 // RFC 6585, 5
    	StatusUnavailableForLegalReasons   = 451 // RFC 7725, 3
    
    	StatusInternalServerError           = 500 // RFC 9110, 15.6.1
    	StatusNotImplemented                = 501 // RFC 9110, 15.6.2
    	StatusBadGateway                    = 502 // RFC 9110, 15.6.3
    	StatusServiceUnavailable            = 503 // RFC 9110, 15.6.4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. 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)
  3. pkg/wasm/httpfetcher.go

    		}
    		break
    	}
    	return nil, fmt.Errorf("wasm module download failed after %v attempts, last error: %v", attempts, lastError)
    }
    
    func retryable(code int) bool {
    	return code >= 500 &&
    		!(code == http.StatusNotImplemented ||
    			code == http.StatusHTTPVersionNotSupported ||
    			code == http.StatusNetworkAuthenticationRequired)
    }
    
    func isPosixTar(b []byte) bool {
    	return len(b) > 262 && bytes.Equal(b[257:262], tarMagicNumber)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/vcweb/vcweb.go

    			http.NotFound(w, req)
    		} else if notInstalled := (ServerNotInstalledError{}); errors.As(err, &notInstalled) || errors.Is(err, exec.ErrNotFound) {
    			http.Error(w, err.Error(), http.StatusNotImplemented)
    		} else {
    			http.Error(w, err.Error(), http.StatusInternalServerError)
    		}
    	}
    }
    
    // A ScriptNotFoundError indicates that the requested script file does not exist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top