Home
last modified time | relevance | path

Searched refs:ExecuteAsync (Results 1 – 25 of 184) sorted by relevance

12345678

/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/test/System.Web.Http.Test/Controllers/
H A DReflectedHttpActionDescriptorTest.cs180 Task<object> returnValue = actionDescriptor.ExecuteAsync(_context, _arguments); in ExecuteAsync_Returns_TaskOfNull_ForVoidAction()
194 Task<object> result = actionDescriptor.ExecuteAsync(_context, _arguments); in ExecuteAsync_Returns_Results_ForNonVoidAction()
208 Task<object> returnValue = actionDescriptor.ExecuteAsync(_context, _arguments); in ExecuteAsync_Returns_TaskOfNull_ForTaskAction()
222 Task<object> result = actionDescriptor.ExecuteAsync(_context, _arguments); in ExecuteAsync_Returns_Results_ForTaskOfTAction()
237 () => actionDescriptor.ExecuteAsync(null, _arguments), in ExecuteAsync_Throws_IfContextIsNull()
248 () => actionDescriptor.ExecuteAsync(_context, null).RethrowFaultedTaskException(), in ExecuteAsync_Throws_IfArgumentsIsNull()
260 … () => actionDescriptor.ExecuteAsync(_context, _arguments).RethrowFaultedTaskException()); in ExecuteAsync_Throws_IfValueTypeArgumentsIsNull()
278 … () => actionDescriptor.ExecuteAsync(_context, _arguments).RethrowFaultedTaskException()); in ExecuteAsync_Throws_IfArgumentNameIsWrong()
296 … () => actionDescriptor.ExecuteAsync(_context, _arguments).RethrowFaultedTaskException()); in ExecuteAsync_Throws_IfArgumentTypeIsWrong()
314 … () => actionDescriptor.ExecuteAsync(_context, _arguments).RethrowFaultedTaskException(), in ExecuteAsync_IfTaskReturningMethod_ReturnsWrappedTaskInstance_Throws()
[all …]
H A DApiControllerActionInvokerTest.cs58 …_actionDescriptorMock.Verify(ad => ad.ExecuteAsync(_actionContext.ControllerContext, _actionContex… in InvokeActionAsync_InvokesActionDescriptorExecuteAsync()
65 …_actionDescriptorMock.Setup(ad => ad.ExecuteAsync(_actionContext.ControllerContext, _actionContext… in InvokeActionAsync_PassesExecutionResultToConfiguredConverter()
78 …_actionDescriptorMock.Setup(ad => ad.ExecuteAsync(_actionContext.ControllerContext, _actionContext… in InvokeActionAsync_ReturnsResponseFromConverter()
93 …_actionDescriptorMock.Setup(ad => ad.ExecuteAsync(It.IsAny<HttpControllerContext>(), It.IsAny<IDic… in InvokeActionAsync_WhenExecuteThrowsHttpResponseException_ReturnsResponse()
107 …_actionDescriptorMock.Setup(ad => ad.ExecuteAsync(It.IsAny<HttpControllerContext>(), It.IsAny<IDic… in InvokeActionAsync_WhenExecuteThrows_ReturnsFaultedTask()
H A DApiControllerTest.cs56 HttpResponseMessage message = api.ExecuteAsync( in Setting_CustomActionInvoker()
91 HttpResponseMessage message = api.ExecuteAsync( in Setting_CustomActionSelector()
108 HttpResponseMessage message = api.ExecuteAsync( in Default_Get()
125 HttpResponseMessage message = api.ExecuteAsync( in Default_Post()
142 HttpResponseMessage message = api.ExecuteAsync( in Default_Put()
159 HttpResponseMessage message = api.ExecuteAsync( in Default_Delete()
178 … HttpResponseMessage message = api.ExecuteAsync(controllerContext, CancellationToken.None).Result; in Route_ActionName()
199 … HttpResponseMessage message = api.ExecuteAsync(controllerContext, CancellationToken.None).Result; in Route_Get_Action_With_Route_Parameters()
224 … HttpResponseMessage message = api.ExecuteAsync(controllerContext, CancellationToken.None).Result; in Route_Get_Action_With_Query_Parameters()
263 HttpResponseMessage message = api.ExecuteAsync( in Route_Post_Action_With_Content_Parameter()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/test/System.Web.Http.Test/Tracing/Tracers/
H A DHttpControllerTracerTest.cs77 mockController.Setup(c => c.ExecuteAsync(context, CancellationToken.None)) in ExecuteAsync_RemovesInnerControllerFromReleaseListAndAddsItselfInstead()
87 … ((IHttpController)tracer).ExecuteAsync(context, CancellationToken.None).WaitUntilCompleted(); in ExecuteAsync_RemovesInnerControllerFromReleaseListAndAddsItselfInstead()
101 …mockController.Setup(b => b.ExecuteAsync(It.IsAny<HttpControllerContext>(), It.IsAny<CancellationT… in ExecuteAsync_Invokes_Inner_And_Traces()
120 …HttpResponseMessage actualResponse = ((IHttpController)tracer).ExecuteAsync(controllerContext, Can… in ExecuteAsync_Invokes_Inner_And_Traces()
135 …mockController.Setup(b => b.ExecuteAsync(It.IsAny<HttpControllerContext>(), It.IsAny<CancellationT… in ExecuteAsync_Faults_And_Traces_When_Inner_Faults()
154 …ert.Throws<InvalidOperationException>(() => ((IHttpController)tracer).ExecuteAsync(controllerConte… in ExecuteAsync_Faults_And_Traces_When_Inner_Faults()
167 …mockController.Setup(b => b.ExecuteAsync(It.IsAny<HttpControllerContext>(), It.IsAny<CancellationT… in ExecuteAsync_IsCancelled_And_Traces_When_Inner_IsCancelled()
186 … Task task = ((IHttpController)tracer).ExecuteAsync(controllerContext, CancellationToken.None); in ExecuteAsync_IsCancelled_And_Traces_When_Inner_IsCancelled()
H A DHttpActionDescriptorTracerTest.cs72 …a => a.ExecuteAsync(It.IsAny<HttpControllerContext>(), It.IsAny<IDictionary<string, object>>())).C… in ExecuteAsync_Invokes_Inner_ExecuteAsync()
79 tracer.ExecuteAsync(controllerContext, arguments); in ExecuteAsync_Invokes_Inner_ExecuteAsync()
91 …mockActionDescriptor.Setup(a => a.ExecuteAsync(It.IsAny<HttpControllerContext>(), It.IsAny<IDictio… in ExecuteAsync_Traces()
105 var result = tracer.ExecuteAsync(controllerContext, arguments); in ExecuteAsync_Traces()
119 …a => a.ExecuteAsync(It.IsAny<HttpControllerContext>(), It.IsAny<IDictionary<string, object>>())).T… in ExecuteAsync_Throws_What_Inner_Throws_And_Traces()
133 … Assert.Throws<InvalidOperationException>(() => tracer.ExecuteAsync(controllerContext, arguments)); in ExecuteAsync_Throws_What_Inner_Throws_And_Traces()
/dports/devel/msbuild/msbuild-0.06/src/Build/BackEnd/BuildManager/
H A DBuildSubmission.cs177 ExecuteAsync(null, null, _legacyThreadingSemantics); in Execute()
196 public void ExecuteAsync(BuildSubmissionCompleteCallback callback, object context) in ExecuteAsync() method in Microsoft.Build.Execution.BuildSubmission
198 ExecuteAsync(callback, context, false); in ExecuteAsync()
240 …private void ExecuteAsync(BuildSubmissionCompleteCallback callback, object context, bool allowMain… in ExecuteAsync() method in Microsoft.Build.Execution.BuildSubmission
/dports/lang/mono/mono-5.10.1.57/mcs/tests/
H A Dtest-async-55.cs33 …Task.Factory.StartNew (new Func<Task> (ExecuteAsync), new CancellationToken (), TaskCreationOption… in Main()
54 static async Task ExecuteAsync () in ExecuteAsync() method in X
/dports/www/firefox-esr/firefox-91.8.0/storage/test/gtest/
H A Dtest_spinningSynchronousClose.cpp43 do_check_success(stmt->ExecuteAsync(nullptr, getter_AddRefs(p))); in TEST()
62 do_check_success(stmt->ExecuteAsync(nullptr, getter_AddRefs(p))); in TEST()
H A Dtest_async_callbacks_with_spun_event_loops.cpp115 stmt->ExecuteAsync(new UnownedCallback(db), getter_AddRefs(ps)));
142 stmt->ExecuteAsync(new UnownedCallback(db), getter_AddRefs(ps)));
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/Microsoft.Web.Http.Data/
H A DCustomizingActionDescriptor.cs43 …public override Task<object> ExecuteAsync(HttpControllerContext controllerContext, IDictionary<str… in ExecuteAsync() method in Microsoft.Web.Http.Data.CustomizingActionDescriptor
45 return _innerDescriptor.ExecuteAsync(controllerContext, arguments); in ExecuteAsync()
/dports/www/firefox/firefox-99.0/storage/test/gtest/
H A Dtest_spinningSynchronousClose.cpp43 do_check_success(stmt->ExecuteAsync(nullptr, getter_AddRefs(p))); in TEST()
62 do_check_success(stmt->ExecuteAsync(nullptr, getter_AddRefs(p))); in TEST()
H A Dtest_async_callbacks_with_spun_event_loops.cpp115 stmt->ExecuteAsync(new UnownedCallback(db), getter_AddRefs(ps))); in TEST()
142 stmt->ExecuteAsync(new UnownedCallback(db), getter_AddRefs(ps))); in TEST()
/dports/lang/spidermonkey60/firefox-60.9.0/storage/test/gtest/
H A Dtest_spinningSynchronousClose.cpp50 do_check_success(stmt->ExecuteAsync(nullptr, getter_AddRefs(p))); in TEST()
71 do_check_success(stmt->ExecuteAsync(nullptr, getter_AddRefs(p))); in TEST()
H A Dtest_async_callbacks_with_spun_event_loops.cpp127 do_check_success(stmt->ExecuteAsync(new UnownedCallback(db), in TEST()
157 do_check_success(stmt->ExecuteAsync(new UnownedCallback(db), in TEST()
/dports/mail/thunderbird/thunderbird-91.8.0/storage/test/gtest/
H A Dtest_spinningSynchronousClose.cpp43 do_check_success(stmt->ExecuteAsync(nullptr, getter_AddRefs(p))); in TEST()
62 do_check_success(stmt->ExecuteAsync(nullptr, getter_AddRefs(p))); in TEST()
H A Dtest_async_callbacks_with_spun_event_loops.cpp115 stmt->ExecuteAsync(new UnownedCallback(db), getter_AddRefs(ps))); in TEST()
142 stmt->ExecuteAsync(new UnownedCallback(db), getter_AddRefs(ps))); in TEST()
/dports/lang/spidermonkey78/firefox-78.9.0/storage/test/gtest/
H A Dtest_spinningSynchronousClose.cpp44 do_check_success(stmt->ExecuteAsync(nullptr, getter_AddRefs(p))); in TEST()
64 do_check_success(stmt->ExecuteAsync(nullptr, getter_AddRefs(p))); in TEST()
H A Dtest_async_callbacks_with_spun_event_loops.cpp117 stmt->ExecuteAsync(new UnownedCallback(db), getter_AddRefs(ps))); in TEST()
145 stmt->ExecuteAsync(new UnownedCallback(db), getter_AddRefs(ps))); in TEST()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Microsoft.Build.Execution/
H A DBuildSubmission.cs79 ExecuteAsync (null, null); in Execute()
103 public void ExecuteAsync (BuildSubmissionCompleteCallback callback, object context) in ExecuteAsync() method in Microsoft.Build.Execution.BuildSubmission
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/test/ApiAuth.IS.Test/Extensions/
H A DAutoRedirectEndSessionEndpointTests.cs62 await response.ExecuteAsync(ctx); in AutoRedirectSessionEndpoint_AutoRedirectsValidatedPostLogoutRequests_ToApplicationsWithProfiles()
103 await response.ExecuteAsync(ctx); in AutoRedirectSessionEndpoint_AutoRedirectsValidatedGetLogoutRequests_ToApplicationsWithProfiles()
141 await response.ExecuteAsync(ctx); in AutoRedirectSessionEndpoint_RedirectsToError_WhenValidationFails()
182 await response.ExecuteAsync(ctx); in AutoRedirectSessionEndpoint_RedirectsToLogoutUri_WhenClientDoesntHaveAProfile()
220 await response.ExecuteAsync(ctx); in AutoRedirectSessionEndpoint_RedirectsToLogoutUri_WhenTheValidationRequestDoesNotContainAClient()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Http/Tracing/Tracers/
H A DHttpControllerTracer.cs49 …Task<HttpResponseMessage> IHttpController.ExecuteAsync(HttpControllerContext controllerContext, Ca… in IHttpController.ExecuteAsync()
62 return _innerController.ExecuteAsync(controllerContext, cancellationToken) in IHttpController.ExecuteAsync()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/interfaces/generic/
H A DScriptInvocationManager.cpp221 int CScriptInvocationManager::ExecuteAsync( in ExecuteAsync() function in CScriptInvocationManager
238 return ExecuteAsync(script, invoker, addon, arguments, reuseable, pluginHandle); in ExecuteAsync()
241 int CScriptInvocationManager::ExecuteAsync( in ExecuteAsync() function in CScriptInvocationManager
323 int scriptId = ExecuteAsync(script, languageInvoker, addon, arguments); in ExecuteSync()
H A DScriptInvocationManager.h50 int ExecuteAsync(const std::string& script,
64 int ExecuteAsync(const std::string& script,
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/login/test/
H A Doobe_screens_utils.cc98 test::OobeJS().ExecuteAsync("$('fingerprint-setup').$.skipStart.click()"); in ExitFingerprintPinSetupScreen()
112 test::OobeJS().ExecuteAsync( in ExitDiscoverPinSetupScreen()
/dports/www/firefox-legacy/firefox-52.8.0esr/storage/test/
H A Dtest_async_callbacks_with_spun_event_loops.cpp128 do_check_success(stmt->ExecuteAsync(new UnownedCallback(db), in test_SpinEventsLoopInHandleResult()
159 do_check_success(stmt->ExecuteAsync(new UnownedCallback(db), in test_SpinEventsLoopInHandleError()

12345678