Home
last modified time | relevance | path

Searched refs:resp1 (Results 1 – 25 of 418) sorted by relevance

12345678910>>...17

/dports/www/ulfius/ulfius-2.7.3/test/
H A Dcore.c593 ulfius_init_response(&resp1); in START_TEST()
594 ck_assert_int_eq(resp1.status, 200); in START_TEST()
595 ck_assert_ptr_eq(resp1.protocol, NULL); in START_TEST()
597 ck_assert_int_eq(resp1.nb_cookies, 0); in START_TEST()
615 ck_assert_int_eq(resp1.timeout, 0); in START_TEST()
617 resp1.status = STATUS; in START_TEST()
618 resp1.protocol = o_strdup(PROTOCOL); in START_TEST()
643 resp1.timeout = TIMEOUT; in START_TEST()
699 ulfius_clean_response(&resp1); in START_TEST()
700 ulfius_init_response(&resp1); in START_TEST()
[all …]
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/cygnal/testsuite/libnet.all/
H A Dtest_cache.cpp144 cache.addResponse("foo", resp1); in test()
148 if ((cache.findResponse("foo") == resp1) in test()
228 cache.addResponse("foo", resp1); in test_remove()
229 cache.addResponse("bar", resp1); in test_remove()
230 cache.addResponse("barfoo", resp1); in test_remove()
231 cache.addResponse("foobar", resp1); in test_remove()
233 if ((cache.findResponse("foo") == resp1) in test_remove()
234 && (cache.findResponse("bar") == resp1) in test_remove()
300 cache.addResponse("foo", resp1); in test_errors()
301 cache.addResponse("bar", resp1); in test_errors()
[all …]
/dports/devel/py-moto/moto-2.2.16/tests/test_batch/
H A Dtest_batch_task_definition.py59 resp1 = register_job_def(
63 resp1.should.contain("jobDefinitionArn")
64 resp1.should.have.key("jobDefinitionName").equals(job_def_name)
65 resp1.should.contain("revision")
67 assert resp1["jobDefinitionArn"].endswith(
68 "{0}:{1}".format(resp1["jobDefinitionName"], resp1["revision"])
70 resp1["revision"].should.equal(1)
77 resp2["jobDefinitionArn"].should_not.equal(resp1["jobDefinitionArn"])
84 resp3["jobDefinitionArn"].should_not.equal(resp1["jobDefinitionArn"])
92 resp4["jobDefinitionArn"].should_not.equal(resp1["jobDefinitionArn"])
/dports/devel/pecl-swoole/swoole-4.8.5/core-tests/src/coroutine/
H A Dhttp_server.cpp35 auto resp1 = cli.Get("/hi"); in TEST() local
36 EXPECT_EQ(resp1->status, 200); in TEST()
37 EXPECT_EQ(resp1->body, string("Hello World!")); in TEST()
76 auto resp1 = cli.Post("/post", params); in TEST() local
77 EXPECT_EQ(resp1->status, 200); in TEST()
78 EXPECT_EQ(resp1->body, string("Hello World!")); in TEST()
/dports/java/apache-commons-httpclient/commons-httpclient-3.1/src/test/org/apache/commons/httpclient/
H A DTestPartsNoHost.java75 String resp1 = stream.toString(); in testFilePartResendsFileData() local
80 assertEquals(resp1, resp2); in testFilePartResendsFileData()
87 String resp1 = stream.toString(); in testStringPartResendsData() local
91 assertEquals(resp1, resp2); in testStringPartResendsData()
98 String resp1 = stream.toString(); in testFilePartNullFileResendsData() local
102 assertEquals(resp1, resp2); in testFilePartNullFileResendsData()
/dports/biology/cufflinks/cufflinks-2.2.1-89-gdc3b0cb/src/locfit/
H A Ddensity.c30 INT multint(t,resp1,resp2,lf,cf,h) in multint() argument
32 double *t, *resp1, *resp2, *cf, h;
36 setzero(resp1,p*p);
71 resp1[p*k+j] = resp1[p*j+k] = resp1[p*j+k]*wt;
75 INT mlinint(t,resp1,resp2,lf,cf,h) in mlinint() argument
77 double *t, *resp1, *resp2, *cf, h;
86 { setzero(resp1,p*p);
94 resp1[j] = resp1[p*j] = w0*sca[i]*sca[i]/2;
106 resp1[k*p+l] = resp1[k+p*l] = w0/4*SQR(sca[i])*SQR(sca[j]);
151 resp1[0] = g[0];
[all …]
/dports/devel/py-moto/moto-2.2.16/tests/test_efs/
H A Dtest_file_system.py258 resp1 = efs.describe_file_systems(MaxItems=4)
261 assert has_status_code(resp1, 200)
264 resp1.pop("ResponseMetadata")
265 assert set(resp1.keys()) == {"NextMarker", "FileSystems"}
266 assert len(resp1["FileSystems"]) == 4
267 fs_id_set_1 = {fs["FileSystemId"] for fs in resp1["FileSystems"]}
273 resp2 = efs.describe_file_systems(MaxItems=4, Marker=resp1["NextMarker"])
282 assert resp2["Marker"] == resp1["NextMarker"]
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go55 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
86 if got != resp1 {
87 t.Errorf("SelectConfig(%v) = %v; want %v", testRPCInfo, got, resp1)
109 retChan1 <- resp1
122 retChan1 <- resp1
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/google.golang.org/grpc/grpc-go-1.34.0/internal/resolver/
H A Dconfig_selector_test.go55 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
86 if got != resp1 {
87 t.Errorf("SelectConfig(%v) = %v; want %v", testRPCInfo, got, resp1)
109 retChan1 <- resp1
122 retChan1 <- resp1
/dports/www/py-turbogears2/TurboGears2-2.3.12/tests/test_stack/rendering/
H A Dtest_decorators.py77 resp1 = self.app.get('/sub1/index')
79 assert resp1.body == resp2.body
82 resp1 = self.app.get('/sub1/index_override')
84 assert resp1.body != resp2.body
87 resp1 = self.app.get('/sub1/data')
88 assert ('"v"' in resp1 and '"parent_value"' in resp1)
/dports/net/rclone/rclone-1.57.0/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go57 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
88 if err != nil || got != resp1 {
89 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
111 retChan1 <- resp1
125 retChan1 <- resp1
/dports/net/drive/drive-0.4.0/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go57 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
88 if err != nil || got != resp1 {
89 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
111 retChan1 <- resp1
125 retChan1 <- resp1
/dports/www/gohugo/hugo-0.91.2/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go57 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
88 if err != nil || got != resp1 {
89 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
111 retChan1 <- resp1
125 retChan1 <- resp1
/dports/www/gitlab-pages/gitlab-pages-f8512edbec4ec83b426c8ca2dda467de424685e4/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go57 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
88 if err != nil || got != resp1 {
89 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
111 retChan1 <- resp1
125 retChan1 <- resp1
/dports/net/cloudquery/cloudquery-0.16.0/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go57 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
88 if err != nil || got != resp1 {
89 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
111 retChan1 <- resp1
125 retChan1 <- resp1
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go57 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
88 if err != nil || got != resp1 {
89 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
111 retChan1 <- resp1
125 retChan1 <- resp1
/dports/security/xray-core/Xray-core-1.5.0/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go57 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
88 if err != nil || got != resp1 {
89 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
111 retChan1 <- resp1
125 retChan1 <- resp1
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go55 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
86 if err != nil || got != resp1 {
87 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
109 retChan1 <- resp1
123 retChan1 <- resp1
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go55 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
86 if err != nil || got != resp1 {
87 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
109 retChan1 <- resp1
123 retChan1 <- resp1
/dports/net/grpcurl/grpcurl-1.8.5/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go55 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
86 if err != nil || got != resp1 {
87 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
109 retChan1 <- resp1
123 retChan1 <- resp1
/dports/net/v2ray/v2ray-core-4.36.2/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go55 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
86 if err != nil || got != resp1 {
87 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
109 retChan1 <- resp1
123 retChan1 <- resp1
/dports/sysutils/restic/restic-0.12.1/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go55 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
86 if err != nil || got != resp1 {
87 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
109 retChan1 <- resp1
123 retChan1 <- resp1
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go57 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
88 if err != nil || got != resp1 {
89 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
111 retChan1 <- resp1
125 retChan1 <- resp1
/dports/databases/litestream/litestream-0.3.6/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go55 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
86 if err != nil || got != resp1 {
87 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
109 retChan1 <- resp1
123 retChan1 <- resp1
/dports/textproc/gitlab-elasticsearch-indexer/gitlab-elasticsearch-indexer-ef1440548effec15831eda2d246dacc43233cefb/vendor/google.golang.org/grpc/internal/resolver/
H A Dconfig_selector_test.go55 resp1 := &RPCConfig{MethodConfig: serviceconfig.MethodConfig{MaxReqSize: &one}}
86 if err != nil || got != resp1 {
87 t.Errorf("SelectConfig(%v) = %v, %v; want %v, nil", testRPCInfo, got, err, resp1)
109 retChan1 <- resp1
123 retChan1 <- resp1

12345678910>>...17