Home
last modified time | relevance | path

Searched refs:RequestMethod (Results 1 – 25 of 1463) sorted by relevance

12345678910>>...59

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/mvc/condition/
H A DRequestMethodsRequestCondition.java28 import org.springframework.web.bind.annotation.RequestMethod;
40 private final Set<RequestMethod> methods;
47 public RequestMethodsRequestCondition(RequestMethod... requestMethods) { in RequestMethodsRequestCondition()
51 private static List<RequestMethod> asList(RequestMethod... requestMethods) { in asList()
58 private RequestMethodsRequestCondition(Collection<RequestMethod> requestMethods) { in RequestMethodsRequestCondition()
59 this.methods = Collections.unmodifiableSet(new LinkedHashSet<RequestMethod>(requestMethods)); in RequestMethodsRequestCondition()
65 public Set<RequestMethod> getMethods() { in getMethods()
70 protected Collection<RequestMethod> getContent() { in getContent()
84 Set<RequestMethod> set = new LinkedHashSet<RequestMethod>(this.methods); in combine()
101 RequestMethod incomingRequestMethod = RequestMethod.valueOf(request.getMethod()); in getMatchingCondition()
[all …]
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/vendor/google/recaptcha/
H A DARCHITECTURE.md23 [`RequestMethod\Post`](./src/ReCaptcha/RequestMethod/Post.php) class.
29 [`RequestMethod`](./src/ReCaptcha/RequestMethod.php) instance to configure this.
35 $recaptcha = new \ReCaptcha\ReCaptcha($secret, new \ReCaptcha\RequestMethod\CurlPost());
48 [`RequestMethod`](./src/ReCaptcha/RequestMethod.php) interface. The convention
49 is to name this class `RequestMethod\`_MethodType_`Post` and create a separate
50 `RequestMethod\`_MethodType_ class that wraps just the calls to the network
51 calls themselves. This means that the `RequestMethod\`_MethodType_`Post` can be
53 [`RequestMethod\CurlPost`](./src/ReCaptcha/RequestMethod/CurlPost.php) and
54 [`RequestMethod\Curl`](./src/ReCaptcha/RequestMethod/Curl.php) with the matching
55 [`RequestMethod/CurlPostTest`](./tests/ReCaptcha/RequestMethod/CurlPostTest.php)
[all …]
/dports/www/phpbb3/phpBB3/vendor/google/recaptcha/
H A DARCHITECTURE.md23 [`RequestMethod\Post`](./src/ReCaptcha/RequestMethod/Post.php) class.
29 [`RequestMethod`](./src/ReCaptcha/RequestMethod.php) instance to configure this.
35 $recaptcha = new \ReCaptcha\ReCaptcha($secret, new \ReCaptcha\RequestMethod\CurlPost());
48 [`RequestMethod`](./src/ReCaptcha/RequestMethod.php) interface. The convention
49 is to name this class `RequestMethod\`_MethodType_`Post` and create a separate
50 `RequestMethod\`_MethodType_ class that wraps just the calls to the network
51 calls themselves. This means that the `RequestMethod\`_MethodType_`Post` can be
53 [`RequestMethod\CurlPost`](./src/ReCaptcha/RequestMethod/CurlPost.php) and
54 [`RequestMethod\Curl`](./src/ReCaptcha/RequestMethod/Curl.php) with the matching
55 [`RequestMethod/CurlPostTest`](./tests/ReCaptcha/RequestMethod/CurlPostTest.php)
[all …]
/dports/devel/kiwix-lib/kiwix-lib-9.4.1/src/server/
H A Drequest_context.cpp37 RequestMethod str2RequestMethod(const std::string& method) { in str2RequestMethod()
38 if (method == "GET") return RequestMethod::GET; in str2RequestMethod()
39 else if (method == "HEAD") return RequestMethod::HEAD; in str2RequestMethod()
40 else if (method == "POST") return RequestMethod::POST; in str2RequestMethod()
41 else if (method == "PUT") return RequestMethod::PUT; in str2RequestMethod()
42 else if (method == "DELETE") return RequestMethod::DELETE_; in str2RequestMethod()
43 else if (method == "CONNECT") return RequestMethod::CONNECT; in str2RequestMethod()
45 else if (method == "TRACE") return RequestMethod::TRACE; in str2RequestMethod()
46 else if (method == "PATCH") return RequestMethod::PATCH; in str2RequestMethod()
47 else return RequestMethod::OTHER; in str2RequestMethod()
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/condition/
H A DRequestMethodsRequestConditionTests.java26 import org.springframework.web.bind.annotation.RequestMethod;
35 RequestMethodsRequestCondition condition = new RequestMethodsRequestCondition(RequestMethod.GET); in methodMatch()
44 RequestMethodsRequestCondition condition = new RequestMethodsRequestCondition(RequestMethod.GET); in methodNoMatch()
53 …estCondition condition = new RequestMethodsRequestCondition(RequestMethod.GET, RequestMethod.POST); in multipleMethodsMatch()
71 …stCondition condition1 = new RequestMethodsRequestCondition(RequestMethod.GET, RequestMethod.HEAD); in compareTo()
72 …RequestMethodsRequestCondition condition2 = new RequestMethodsRequestCondition(RequestMethod.POST); in compareTo()
92 RequestMethodsRequestCondition condition1 = new RequestMethodsRequestCondition(RequestMethod.GET); in combine()
93 …RequestMethodsRequestCondition condition2 = new RequestMethodsRequestCondition(RequestMethod.POST); in combine()
H A DRequestConditionHolderTests.java27 import org.springframework.web.bind.annotation.RequestMethod;
68 …odsRequestCondition rm = new RequestMethodsRequestCondition(RequestMethod.GET, RequestMethod.POST); in match()
70 RequestMethodsRequestCondition expected = new RequestMethodsRequestCondition(RequestMethod.GET); in match()
79 RequestMethodsRequestCondition rm = new RequestMethodsRequestCondition(RequestMethod.POST); in noMatch()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/annotation/
H A DRequestSpecificMappingInfoComparatorTests.java29 import org.springframework.web.bind.annotation.RequestMethod;
53 …emptyInfo = new AnnotationMethodHandlerAdapter.RequestSpecificMappingInfo(null, new RequestMethod[… in setUp()
55 …tionMethodHandlerAdapter.RequestSpecificMappingInfo(null, new RequestMethod[]{RequestMethod.GET}, … in setUp()
57 …HandlerAdapter.RequestSpecificMappingInfo(null, new RequestMethod[]{RequestMethod.GET, RequestMeth… in setUp()
59 …tionMethodHandlerAdapter.RequestSpecificMappingInfo(null, new RequestMethod[]{RequestMethod.GET}, … in setUp()
61 …tionMethodHandlerAdapter.RequestSpecificMappingInfo(null, new RequestMethod[]{RequestMethod.GET}, … in setUp()
H A DServletAnnotationMappingUtilsTests.java23 import org.springframework.web.bind.annotation.RequestMethod;
30 RequestMethod[] methods = new RequestMethod[]{RequestMethod.GET, RequestMethod.POST}; in checkRequestMethodMatch()
38 RequestMethod[] methods = new RequestMethod[]{RequestMethod.GET, RequestMethod.POST}; in checkRequestMethodNoMatch()
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/maud-0.22.3/benches/
H A Dcomplicated_maud.rs17 pub enum RequestMethod { enum
26 req_meth: RequestMethod,
34 req_meth: RequestMethod::Get, in new()
38 pub fn with_method(mut self, meth: RequestMethod) -> Button<'a> { in with_method()
47 RequestMethod::Get => { in render()
50 RequestMethod::Post => { in render()
97 use crate::btn::{Button, RequestMethod}; in render_complicated_template()
108 .with_method(RequestMethod::Post)) in render_complicated_template()
/dports/www/otrs/otrs-rel-6_0_29/development/webservices/
H A DGenericTicketConnectorREST.yml55 RequestMethod:
59 RequestMethod:
63 RequestMethod:
67 RequestMethod:
71 RequestMethod:
75 RequestMethod:
79 RequestMethod:
83 RequestMethod:
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/method/
H A DRequestMappingInfoTests.java32 import org.springframework.web.bind.annotation.RequestMethod;
194 new RequestMethodsRequestCondition(RequestMethod.GET), in compareTwoHttpMethodsOneParam()
217 new RequestMethodsRequestCondition(RequestMethod.GET), in equals()
226 new RequestMethodsRequestCondition(RequestMethod.GET), in equals()
238 new RequestMethodsRequestCondition(RequestMethod.GET), in equals()
250 new RequestMethodsRequestCondition(RequestMethod.GET, RequestMethod.POST), in equals()
262 new RequestMethodsRequestCondition(RequestMethod.GET), in equals()
274 new RequestMethodsRequestCondition(RequestMethod.GET), in equals()
286 new RequestMethodsRequestCondition(RequestMethod.GET), in equals()
298 new RequestMethodsRequestCondition(RequestMethod.GET), in equals()
[all …]
/dports/www/otrs/otrs-rel-6_0_29/scripts/test/sample/Webservice/
H A DGenericTicketConnectorREST.yml56 RequestMethod:
60 RequestMethod:
64 RequestMethod:
68 RequestMethod:
72 RequestMethod:
76 RequestMethod:
80 RequestMethod:
84 RequestMethod:
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/html/inc/ReCaptcha/
H A DReCaptcha.php48 * @var RequestMethod
56 * @param RequestMethod $requestMethod method used to send the request. Defaults to POST.
58 public function __construct($secret, RequestMethod $requestMethod = null)
73 $this->requestMethod = new RequestMethod\Post();
/dports/www/joomla3/joomla3-3.9.24/libraries/vendor/google/recaptcha/src/ReCaptcha/
H A DReCaptcha.php48 * @var RequestMethod
56 * @param RequestMethod $requestMethod method used to send the request. Defaults to POST.
58 public function __construct($secret, RequestMethod $requestMethod = null)
73 $this->requestMethod = new RequestMethod\Post();
/dports/www/otrs/otrs-rel-6_0_29/scripts/test/GenericInterface/Provider/
H A DProvider.t278 for my $RequestMethod (qw(get post)) {
292 if ( $RequestMethod eq 'post' ) {
352 … "$Test->{Name} $WebserviceAccess Run() HTTP $RequestMethod result success status",
363 … "$Test->{Name} $WebserviceAccess Run() HTTP $RequestMethod result error status",
373 for my $RequestMethod (qw(get post)) {
396 if ( $RequestMethod eq 'get' ) {
398 $Response = LWP::UserAgent->new()->$RequestMethod($URL);
401 … $Response = LWP::UserAgent->new()->$RequestMethod( $URL, Content => $QueryString );
452 for my $RequestMethod (qw(get post)) {
457 my $Response = LWP::UserAgent->new()->$RequestMethod($URL);
[all …]
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/html/inc/ReCaptcha/RequestMethod/
H A DCurlPost.php27 namespace ReCaptcha\RequestMethod;
29 use ReCaptcha\RequestMethod; alias
37 class CurlPost implements RequestMethod
H A DPost.php27 namespace ReCaptcha\RequestMethod;
29 use ReCaptcha\RequestMethod; alias
35 class Post implements RequestMethod
/dports/www/joomla3/joomla3-3.9.24/libraries/vendor/google/recaptcha/src/ReCaptcha/RequestMethod/
H A DCurlPost.php27 namespace ReCaptcha\RequestMethod;
29 use ReCaptcha\RequestMethod; alias
37 class CurlPost implements RequestMethod
H A DPost.php27 namespace ReCaptcha\RequestMethod;
29 use ReCaptcha\RequestMethod; alias
35 class Post implements RequestMethod
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/method/annotation/
H A DUriTemplateServletAnnotationControllerHandlerMethodTests.java45 import org.springframework.web.bind.annotation.RequestMethod;
526 @RequestMapping(method = RequestMethod.GET)
531 @RequestMapping(method = RequestMethod.POST)
536 @RequestMapping(value = "/{hotel}", method = RequestMethod.GET)
541 @RequestMapping(value = "{hotel}", method = RequestMethod.PUT)
546 @RequestMapping(value = "{hotel}", method = RequestMethod.DELETE)
557 @RequestMapping(method = RequestMethod.GET)
561 @RequestMapping(method = RequestMethod.GET, value = "{hotelId}")
565 @RequestMapping(method = RequestMethod.PUT, value = "{hotelId}")
618 @RequestMapping(value = "/{foo}", method=RequestMethod.GET)
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/gocloud.dev/server/requestlog/
H A Dncsa_test.go45 RequestMethod: "POST",
65 RequestMethod: "POST",
76 RequestMethod: "POST",
88 RequestMethod: "POST",
/dports/www/gohugo/hugo-0.91.2/vendor/gocloud.dev/server/requestlog/
H A Dncsa_test.go45 RequestMethod: "POST",
65 RequestMethod: "POST",
76 RequestMethod: "POST",
88 RequestMethod: "POST",
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/gocloud.dev/server/requestlog/
H A Dncsa_test.go45 RequestMethod: "POST",
65 RequestMethod: "POST",
76 RequestMethod: "POST",
88 RequestMethod: "POST",
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/gocloud.dev/go-cloud-5094f54ed8bb/server/requestlog/
H A Dncsa_test.go45 RequestMethod: "POST",
65 RequestMethod: "POST",
76 RequestMethod: "POST",
88 RequestMethod: "POST",
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/vendor/google/recaptcha/src/ReCaptcha/RequestMethod/
H A DPost.php35 namespace ReCaptcha\RequestMethod;
38 use ReCaptcha\RequestMethod; alias
44 class Post implements RequestMethod

12345678910>>...59