Home
last modified time | relevance | path

Searched refs:getR (Results 1 – 25 of 361) sorted by relevance

12345678910>>...15

/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vault-plugin-secrets-gcp/plugin/iamutil/
H A Diam_resource_test.go50 getR, err := constructRequest(r, &r.config.GetMethod, nil)
55 if getR.URL.String() != expectedURLBase+":getIamPolicy" {
58 if getR.Method != "GET" {
59 t.Fatalf("expected get request method %s, got %s", "GET", getR.Method)
61 if getR.Body != nil {
62 data, err := ioutil.ReadAll(getR.Body)
174 getR, err := constructRequest(r, &r.config.GetMethod, nil)
179 if getR.URL.String() != expectedURLBase+":getIamPolicy" {
182 if getR.Method != "GET" {
185 if getR.Body == nil {
[all …]
H A Ddataset_resource_test.go81 getR, err := constructRequest(r, &r.config.GetMethod, nil)
86 if getR.URL.String() != expectedURLBase {
87 t.Fatalf("expected get request URL %s, got %s", expectedURLBase, getR.URL.String())
89 if getR.Method != "GET" {
90 t.Fatalf("expected get request method %s, got %s", "GET", getR.Method)
92 if getR.Body != nil {
93 data, err := ioutil.ReadAll(getR.Body)
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/base/
H A DossimJpegYCbCrVector.cpp8 theBuf[0] = static_cast<unsigned char>(clamp(ossim::round<int>(0.299*rgbColor.getR() + in ossimJpegYCbCrVector()
12 theBuf[1] = static_cast<unsigned char>(clamp(ossim::round<int>((-0.1687)*rgbColor.getR() - in ossimJpegYCbCrVector()
16 theBuf[2] = static_cast<unsigned char>(clamp(ossim::round<int>(0.5*rgbColor.getR() - in ossimJpegYCbCrVector()
24 theBuf[0] = static_cast<unsigned char>(clamp(ossim::round<int>(0.299*rgbColor.getR() + in operator =()
28 theBuf[1] = static_cast<unsigned char>(clamp(ossim::round<int>((-0.1687)*rgbColor.getR() - in operator =()
32 theBuf[2] = static_cast<unsigned char>(clamp(ossim::round<int>(0.5*rgbColor.getR() - in operator =()
H A DossimHsiVector.cpp26 setFromRgb(rgb.getR()/255.0, rgb.getG()/255.0, rgb.getB()/255.0); in ossimHsiVector()
31 setFromRgb(rgb.getR(), rgb.getG(), rgb.getB()); in ossimHsiVector()
36 setFromRgb(rgb.getR()/255.0, rgb.getG()/255.0, rgb.getB()/255.0); in operator =()
44 setFromRgb(rgb.getR(), rgb.getG(), rgb.getB()); in operator =()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/java/org/apache/commons/math3/linear/
H A DQRDecompositionTest.java76 Assert.assertEquals(rows, qr.getR().getRowDimension()); in checkDimension()
77 Assert.assertEquals(columns, qr.getR().getColumnDimension()); in checkDimension()
102 double norm = qr.getQ().multiply(qr.getR()).subtract(m).getNorm(); in checkAEqualQR()
137 checkUpperTriangular(new QRDecomposition(matrix).getR()); in testRUpperTriangular()
140 checkUpperTriangular(new QRDecomposition(matrix).getR()); in testRUpperTriangular()
143 checkUpperTriangular(new QRDecomposition(matrix).getR()); in testRUpperTriangular()
146 checkUpperTriangular(new QRDecomposition(matrix).getR()); in testRUpperTriangular()
152 checkUpperTriangular(new QRDecomposition(matrix).getR()); in testRUpperTriangular()
155 checkUpperTriangular(new QRDecomposition(matrix).getR()); in testRUpperTriangular()
232 RealMatrix r = qr.getR(); in testMatricesValues()
[all …]
H A DRRQRDecompositionTest.java75 Assert.assertEquals(rows, qr.getR().getRowDimension()); in checkDimension()
76 Assert.assertEquals(columns, qr.getR().getColumnDimension()); in checkDimension()
101 double norm = rrqr.getQ().multiply(rrqr.getR()).subtract(m.multiply(rrqr.getP())).getNorm(); in checkAPEqualQR()
136 checkUpperTriangular(new RRQRDecomposition(matrix).getR()); in testRUpperTriangular()
139 checkUpperTriangular(new RRQRDecomposition(matrix).getR()); in testRUpperTriangular()
142 checkUpperTriangular(new RRQRDecomposition(matrix).getR()); in testRUpperTriangular()
145 checkUpperTriangular(new RRQRDecomposition(matrix).getR()); in testRUpperTriangular()
151 checkUpperTriangular(new RRQRDecomposition(matrix).getR()); in testRUpperTriangular()
154 checkUpperTriangular(new RRQRDecomposition(matrix).getR()); in testRUpperTriangular()
/dports/graphics/yafaray/libYafaRay-3.5.1/include/utilities/
H A Dimage_buffers.h76 uint8_t getR() const { return r; } in getR() function
81 …colorA_t getColor() { return colorA_t((float) getR()/255.f, (float) getG()/255.f, (float) getB()/2… in getColor()
110 uint8_t getR() const { return ra & 0xFE; } in getR() function
136 uint8_t getR() const { return r; } in getR() function
141 …colorA_t getColor() { return colorA_t((float) getR()/255.f, (float) getG()/255.f, (float) getB()/2… in getColor()
189 uint8_t getR() const { return ((rgb565 & 0xF800) >> 8); } in getR() function
194 …colorA_t getColor() { return colorA_t((float) getR()/248.f, (float) getG()/252.f, (float) getB()/2… in getColor()
219 uint16_t getR() const { return r + ((uint16_t)(rgb_extra & 0x30) << 4); } in getR() function
224 …colorA_t getColor() { return colorA_t((float) getR()/1023.f, (float) getG()/1023.f, (float) getB()… in getColor()
253 uint16_t getR() const { return r + ((uint16_t)(rgb_extra & 0x30) << 4); } in getR() function
[all …]
/dports/sysutils/consul/consul-1.10.3/agent/consul/
H A Dkvs_endpoint_test.go173 getR := structs.KeyRequest{
231 getR := structs.KeyRequest{
277 getR := structs.KeyRequest{
306 getR.Key = "/nope"
353 getR := structs.KeyRequest{
364 getR.MaxQueryTime = time.Second
477 getR := structs.KeyRequest{
672 getR := structs.KeyListRequest{
699 getR.Prefix = "/nope"
904 getR := structs.KeyRequest{
[all …]
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/hashicorp/consul/agent/consul/
H A Dkvs_endpoint_test.go161 getR := structs.KeyRequest{
215 getR := structs.KeyRequest{
257 getR := structs.KeyRequest{
286 getR.Key = "/nope"
329 getR := structs.KeyRequest{
340 getR.MaxQueryTime = time.Second
449 getR := structs.KeyRequest{
636 getR := structs.KeyListRequest{
663 getR.Prefix = "/nope"
856 getR := structs.KeyRequest{
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/hashicorp/consul/agent/consul/
H A Dkvs_endpoint_test.go173 getR := structs.KeyRequest{
231 getR := structs.KeyRequest{
277 getR := structs.KeyRequest{
306 getR.Key = "/nope"
353 getR := structs.KeyRequest{
364 getR.MaxQueryTime = time.Second
477 getR := structs.KeyRequest{
672 getR := structs.KeyListRequest{
699 getR.Prefix = "/nope"
904 getR := structs.KeyRequest{
[all …]
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/hashicorp/consul/agent/consul/
H A Dkvs_endpoint_test.go160 getR := structs.KeyRequest{
213 getR := structs.KeyRequest{
255 getR := structs.KeyRequest{
284 getR.Key = "/nope"
327 getR := structs.KeyRequest{
338 getR.MaxQueryTime = time.Second
446 getR := structs.KeyRequest{
636 getR := structs.KeyListRequest{
663 getR.Prefix = "/nope"
853 getR := structs.KeyRequest{
[all …]
H A Dacl_endpoint_test.go372 getR := structs.ACLSpecificRequest{
377 if err := msgpackrpc.CallWithCodec(codec, "ACL.Get", &getR, &acls); err != nil {
420 getR := structs.ACLPolicyRequest{
425 if err := msgpackrpc.CallWithCodec(codec, "ACL.GetPolicy", &getR, &acls); err != nil {
437 getR.ETag = acls.ETag
482 getR := structs.DCSpecificRequest{
487 if err := msgpackrpc.CallWithCodec(codec, "ACL.List", &getR, &acls); err != nil {
525 getR := structs.DCSpecificRequest{
529 err := msgpackrpc.CallWithCodec(codec, "ACL.List", &getR, &acls)
550 getR := structs.DCSpecificRequest{
[all …]
H A Dsession_endpoint_test.go257 getR := structs.SessionSpecificRequest{
262 if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil {
305 getR := structs.DCSpecificRequest{
309 if err := msgpackrpc.CallWithCodec(codec, "Session.List", &getR, &sessions); err != nil {
383 getR := structs.SessionSpecificRequest{
389 if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil {
426 if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil {
454 getR.Token = token
487 getR.Session = "adf4238a-882b-9ddc-4a9d-5b6758e4159e"
578 getR := structs.DCSpecificRequest{
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/hashicorp/consul/agent/consul/
H A Dkvs_endpoint_test.go173 getR := structs.KeyRequest{
231 getR := structs.KeyRequest{
277 getR := structs.KeyRequest{
306 getR.Key = "/nope"
353 getR := structs.KeyRequest{
364 getR.MaxQueryTime = time.Second
477 getR := structs.KeyRequest{
672 getR := structs.KeyListRequest{
699 getR.Prefix = "/nope"
904 getR := structs.KeyRequest{
[all …]
/dports/www/fabio/fabio-1.5.14/vendor/github.com/hashicorp/consul/consul-1.4.2/agent/consul/
H A Dkvs_endpoint_test.go161 getR := structs.KeyRequest{
215 getR := structs.KeyRequest{
257 getR := structs.KeyRequest{
286 getR.Key = "/nope"
329 getR := structs.KeyRequest{
340 getR.MaxQueryTime = time.Second
449 getR := structs.KeyRequest{
640 getR := structs.KeyListRequest{
667 getR.Prefix = "/nope"
858 getR := structs.KeyRequest{
[all …]
H A Dsession_endpoint_test.go258 getR := structs.SessionSpecificRequest{
263 if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil {
306 getR := structs.DCSpecificRequest{
310 if err := msgpackrpc.CallWithCodec(codec, "Session.List", &getR, &sessions); err != nil {
385 getR := structs.SessionSpecificRequest{
391 if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil {
428 if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil {
456 getR.Token = token
489 getR.Session = "adf4238a-882b-9ddc-4a9d-5b6758e4159e"
580 getR := structs.DCSpecificRequest{
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/consul/agent/consul/
H A Dkvs_endpoint_test.go161 getR := structs.KeyRequest{
215 getR := structs.KeyRequest{
257 getR := structs.KeyRequest{
286 getR.Key = "/nope"
329 getR := structs.KeyRequest{
340 getR.MaxQueryTime = time.Second
449 getR := structs.KeyRequest{
636 getR := structs.KeyListRequest{
663 getR.Prefix = "/nope"
856 getR := structs.KeyRequest{
[all …]
H A Dsession_endpoint_test.go262 getR := structs.SessionSpecificRequest{
267 if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil {
311 getR := structs.DCSpecificRequest{
315 if err := msgpackrpc.CallWithCodec(codec, "Session.List", &getR, &sessions); err != nil {
391 getR := structs.SessionSpecificRequest{
397 if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil {
434 if err := msgpackrpc.CallWithCodec(codec, "Session.Get", &getR, &sessions); err != nil {
462 getR.Token = token
495 getR.SessionID = "adf4238a-882b-9ddc-4a9d-5b6758e4159e"
589 getR := structs.DCSpecificRequest{
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/hashicorp/consul/agent/consul/
H A Dkvs_endpoint_test.go160 getR := structs.KeyRequest{
213 getR := structs.KeyRequest{
255 getR := structs.KeyRequest{
284 getR.Key = "/nope"
327 getR := structs.KeyRequest{
338 getR.MaxQueryTime = time.Second
446 getR := structs.KeyRequest{
636 getR := structs.KeyListRequest{
663 getR.Prefix = "/nope"
853 getR := structs.KeyRequest{
[all …]
H A Dacl_endpoint_test.go372 getR := structs.ACLSpecificRequest{
377 if err := msgpackrpc.CallWithCodec(codec, "ACL.Get", &getR, &acls); err != nil {
420 getR := structs.ACLPolicyRequest{
425 if err := msgpackrpc.CallWithCodec(codec, "ACL.GetPolicy", &getR, &acls); err != nil {
437 getR.ETag = acls.ETag
482 getR := structs.DCSpecificRequest{
487 if err := msgpackrpc.CallWithCodec(codec, "ACL.List", &getR, &acls); err != nil {
525 getR := structs.DCSpecificRequest{
529 err := msgpackrpc.CallWithCodec(codec, "ACL.List", &getR, &acls)
550 getR := structs.DCSpecificRequest{
[all …]
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/hashicorp/consul/agent/consul/
H A Dkvs_endpoint_test.go160 getR := structs.KeyRequest{
213 getR := structs.KeyRequest{
255 getR := structs.KeyRequest{
284 getR.Key = "/nope"
327 getR := structs.KeyRequest{
338 getR.MaxQueryTime = time.Second
446 getR := structs.KeyRequest{
636 getR := structs.KeyListRequest{
663 getR.Prefix = "/nope"
853 getR := structs.KeyRequest{
[all …]
H A Dacl_endpoint_test.go372 getR := structs.ACLSpecificRequest{
377 if err := msgpackrpc.CallWithCodec(codec, "ACL.Get", &getR, &acls); err != nil {
420 getR := structs.ACLPolicyRequest{
425 if err := msgpackrpc.CallWithCodec(codec, "ACL.GetPolicy", &getR, &acls); err != nil {
437 getR.ETag = acls.ETag
482 getR := structs.DCSpecificRequest{
487 if err := msgpackrpc.CallWithCodec(codec, "ACL.List", &getR, &acls); err != nil {
525 getR := structs.DCSpecificRequest{
529 err := msgpackrpc.CallWithCodec(codec, "ACL.List", &getR, &acls)
550 getR := structs.DCSpecificRequest{
[all …]
/dports/graphics/hugin/hugin-2020.0.0/src/hugin1/hugin/
H A DOverviewCameraTool.cpp49 double scale = (state->getR() - state->getSphereRadius()) / 40000.0; in MouseMoveEvent()
83 if (state->getR() > limit_low * radius) { in ChangeZoomLevel()
84 state->setR((state->getR() - radius) / scale + radius); in ChangeZoomLevel()
90 if (state->getR() < limit_high * radius) { in ChangeZoomLevel()
91 state->setR((state->getR() - radius) * scale + radius); in ChangeZoomLevel()
134 double d = state->getR(); in MouseMoveEvent()
194 state->setR(state->getR() / scale); in ChangeZoomLevel()
196 state->setR(state->getR() * scale); in ChangeZoomLevel()
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/song/models/
H A DTGColor.java38 public int getR() { in getR() method in TGColor
47 …return (this.getR() == color.getR() && this.getG() == color.getG() && this.getB() == color.getB()); in isEqual()
57 color.setR(getR()); in copy()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/java/org/apache/commons/math3/geometry/euclidean/threed/
H A DSphericalCoordinatesTest.java50 Assert.assertEquals(2, sc1.getR(), 1.0e-10); in testCoordinatesCtoS()
54 Assert.assertEquals(2, sc2.getR(), 1.0e-10); in testCoordinatesCtoS()
58 Assert.assertEquals(2, sc3.getR(), 1.0e-10); in testCoordinatesCtoS()
62 Assert.assertEquals(2, sc4.getR(), 1.0e-10); in testCoordinatesCtoS()
66 Assert.assertEquals(2, sc5.getR(), 1.0e-10); in testCoordinatesCtoS()
70 Assert.assertEquals(2, sc6.getR(), 1.0e-10); in testCoordinatesCtoS()
181 Assert.assertEquals(a.getR(), b.getR(), 1.0e-10); in testSerialization()

12345678910>>...15