Home
last modified time | relevance | path

Searched defs:Redirect (Results 1 – 25 of 1561) sorted by relevance

12345678910>>...63

/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/lib/src/response/
H A Dredirect.rs47 pub struct Redirect(Status, Option<Uri<'static>>); struct
49 impl Redirect { implementation
64 pub fn to<U: TryInto<Uri<'static>>>(uri: U) -> Redirect { in to()
83 pub fn temporary<U: TryInto<Uri<'static>>>(uri: U) -> Redirect { in temporary()
103 pub fn permanent<U: TryInto<Uri<'static>>>(uri: U) -> Redirect { in permanent()
123 pub fn found<U: TryInto<Uri<'static>>>(uri: U) -> Redirect { in found()
141 pub fn moved<U: TryInto<Uri<'static>>>(uri: U) -> Redirect { in moved()
150 impl Responder<'_> for Redirect { implementation
/dports/net/rospo/rospo-0.7.1/vendor/github.com/gin-gonic/gin/gin-1.7.4/render/
H A Dredirect.go13 type Redirect struct { struct
14 Code int
15 Request *http.Request
16 Location string
20 func (r Redirect) Render(w http.ResponseWriter) error {
29 func (r Redirect) WriteContentType(http.ResponseWriter) {}
/dports/net/rospo/rospo-0.7.1/vendor/github.com/gin-gonic/gin/render/
H A Dredirect.go13 type Redirect struct { struct
14 Code int
15 Request *http.Request
16 Location string
20 func (r Redirect) Render(w http.ResponseWriter) error {
29 func (r Redirect) WriteContentType(http.ResponseWriter) {}
/dports/sysutils/aptly/aptly-1.4.0/vendor/github.com/gin-gonic/gin/render/
H A Dredirect.go12 type Redirect struct { struct
13 Code int
14 Request *http.Request
15 Location string
18 func (r Redirect) Render(w http.ResponseWriter) error {
26 func (r Redirect) WriteContentType(http.ResponseWriter) {}
/dports/databases/go-pgweb/pgweb-0.11.7/vendor/github.com/gin-gonic/gin/render/
H A Dredirect.go12 type Redirect struct { struct
13 Code int
14 Request *http.Request
15 Location string
18 func (r Redirect) Render(w http.ResponseWriter) error {
28 func (r Redirect) WriteContentType(http.ResponseWriter) {}
/dports/www/mirrorselect/mirrorselect-0.9.0/vendor/github.com/gin-gonic/gin/render/
H A Dredirect.go13 type Redirect struct { struct
14 Code int
15 Request *http.Request
16 Location string
20 func (r Redirect) Render(w http.ResponseWriter) error {
29 func (r Redirect) WriteContentType(http.ResponseWriter) {}
/dports/www/cpr/cpr-1.7.0/include/cpr/
H A Dredirect.h75Redirect(long p_maximum, bool p_follow, bool p_cont_send_cred, PostRedirectFlags p_post_flags) : m… in Redirect() function
77 explicit Redirect(long p_maximum) : maximum(p_maximum){}; in Redirect() function
78 explicit Redirect(bool p_follow) : follow(p_follow){}; in Redirect() function
79Redirect(bool p_follow, bool p_cont_send_cred) : follow(p_follow), cont_send_cred(p_cont_send_cred… in Redirect() function
80 explicit Redirect(PostRedirectFlags p_post_flags) : post_flags(p_post_flags){}; in Redirect() function
/dports/www/gitea/gitea-1.16.5/models/repo/
H A Dredirect.go32 type Redirect struct { struct
33 ID int64 `xorm:"pk autoincr"`
34 OwnerID int64 `xorm:"UNIQUE(s)"`
35 LowerName string `xorm:"UNIQUE(s) INDEX NOT NULL"`
36 RedirectRepoID int64 // repoID to redirect to
40 func (Redirect) TableName() string {
/dports/www/gitea/gitea-1.16.5/models/user/
H A Dredirect.go31 type Redirect struct { struct
32 ID int64 `xorm:"pk autoincr"`
33 LowerName string `xorm:"UNIQUE(s) INDEX NOT NULL"`
34 RedirectUserID int64 // userID to redirect to
38 func (Redirect) TableName() string {
/dports/net/traefik/traefik-2.6.1/vendor/github.com/vulcand/oxy/cbreaker/
H A Dfallback.go59 type Redirect struct { struct
60 URL string
61 PreservePath bool
74 func NewRedirectFallbackWithLogger(r Redirect, l *log.Logger) (*RedirectFallback, error) {
83 func NewRedirectFallback(r Redirect) (*RedirectFallback, error) {
/dports/www/gohugo/hugo-0.91.2/config/
H A DcommonConfig.go183 type Redirect struct { struct
184 From string
185 To string
186 Status int
187 Force bool
190 func (r Redirect) IsZero() bool {
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/examples/session/src/
H A Dmain.rs37 fn login(mut cookies: Cookies<'_>, login: Form<Login>) -> Result<Redirect, Flash<Redirect>> { in login() function
47 fn logout(mut cookies: Cookies<'_>) -> Flash<Redirect> { in logout()
53 fn login_user(_user: User) -> Redirect { in login_user()
/dports/sysutils/terraform-provider-gridscale/terraform-provider-gridscale-1.6.2/vendor/github.com/hashicorp/terraform-plugin-sdk/internal/registry/response/
H A Dredirect.go4 type Redirect struct { struct
5 URL string `json:"url"`
/dports/sysutils/terraform-provider-vultr/terraform-provider-vultr-0.1.10/vendor/github.com/hashicorp/terraform/registry/response/
H A Dredirect.go4 type Redirect struct { struct
5 URL string `json:"url"`
/dports/sysutils/terraform/terraform-1.0.11/internal/registry/response/
H A Dredirect.go4 type Redirect struct { struct
5 URL string `json:"url"`
/dports/sysutils/glow/glow-0.2.0/vendor/golang.org/x/net/idna/
H A Didna_test.go37 t.Errorf("ToUnicode(%q): got %q, want %q", tc.ascii, u, tc.unicode)
39 }
40 }
41
42 func TestIDNASeparators(t *testing.T) {
79 name: "Registration", profile: Registration,
87 for _, tc := range testCases {
/dports/www/squid/squid-4.15/src/
H A Dclient_side_request.h125 struct Redirect { struct
126 Redirect() : status(Http::scNone), location(NULL) {} in Redirect() function
128 Http::StatusCode status;
129 char *location;
/dports/security/modsecurity3/modsecurity-v3.0.5/src/actions/disruptive/
H A Dredirect.h39 explicit Redirect(const std::string &action) in Redirect() function
44 explicit Redirect(std::unique_ptr<RunTimeString> z) in Redirect() function
/dports/www/rearx/rearx-0.1.4/cargo-crates/gag-0.1.10/src/
H A Dredirect.rs43 pub struct Redirect<F> { struct
45 fds: RedirectFds, argument
50 struct RedirectFds { argument
96 impl<F> Redirect<F> implementation
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/examples/todo/src/
H A Dmain.rs56 fn new(todo_form: Form<Todo>, conn: DbConn) -> Flash<Redirect> { in new()
69 fn toggle(id: i32, conn: DbConn) -> Result<Redirect, Template> { in toggle()
79 fn delete(id: i32, conn: DbConn) -> Result<Flash<Redirect>, Template> { in delete()
/dports/games/scummvm/scummvm-2.5.1/engines/glk/zcode/
H A Dfrotz_types.h210 struct Redirect { struct
216 Redirect() : _xSize(0), _table(0), _width(0), _total(0) {} in Redirect() argument
218 _xSize(xSize), _table(table), _width(width), _total(total) {} in _xSize()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/glk/frotz/
H A Dfrotz_types.h209 struct Redirect { struct
215 Redirect() : _xSize(0), _table(0), _width(0), _total(0) {} in Redirect() argument
217 _xSize(xSize), _table(table), _width(width), _total(total) {} in _xSize()
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-s3-crt/source/model/
H A DRedirect.cpp23 Redirect::Redirect() : in Redirect() function in Aws::S3Crt::Model::Redirect
33 Redirect::Redirect(const XmlNode& xmlNode) : in Redirect() function in Aws::S3Crt::Model::Redirect
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-s3/source/model/
H A DRedirect.cpp23 Redirect::Redirect() : in Redirect() function in Aws::S3::Model::Redirect
33 Redirect::Redirect(const XmlNode& xmlNode) : in Redirect() function in Aws::S3::Model::Redirect
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/sun/net/www/protocol/http/
H A DProtocolRedirect.java52 class Redirect implements Runnable, Closeable { class
55 Redirect(ServerSocket ss) { in Redirect() method in Redirect

12345678910>>...63