Home
last modified time | relevance | path

Searched refs:getinfo (Results 1 – 25 of 2010) sorted by relevance

12345678910>>...81

/dports/misc/librepo/librepo-1.14.2/tests/python/tests/
H A Dtest_handle.py19 self.assertRaises(ValueError, h.getinfo, 999999)
26 self.assertFalse(h.getinfo(librepo.LRI_UPDATE))
28 self.assertTrue(h.getinfo(librepo.LRI_UPDATE))
30 self.assertFalse(h.getinfo(librepo.LRI_UPDATE))
32 self.assertTrue(h.getinfo(librepo.LRI_UPDATE))
34 self.assertFalse(h.getinfo(librepo.LRI_UPDATE))
36 self.assertEqual(h.getinfo(librepo.LRI_URLS), [])
42 self.assertEqual(h.getinfo(librepo.LRI_URLS), [])
52 self.assertFalse(h.getinfo(librepo.LRI_LOCAL))
54 self.assertTrue(h.getinfo(librepo.LRI_LOCAL))
[all …]
H A Dtest_result.py11 self.assertRaises(ValueError, r.getinfo, 99999999)
12 self.assertFalse(r.getinfo(librepo.LRR_YUM_REPO))
13 self.assertFalse(r.getinfo(librepo.LRR_YUM_REPOMD))
14 self.assertRaises(LibrepoException, r.getinfo, librepo.LRR_YUM_TIMESTAMP)
16 self.assertFalse(r.getinfo(librepo.LRR_RPMMD_REPO))
17 self.assertFalse(r.getinfo(librepo.LRR_RPMMD_REPOMD))
18 self.assertRaises(LibrepoException, r.getinfo, librepo.LRR_RPMMD_TIMESTAMP)
H A Dtest_yum_repo_locating.py85 yum_repo_downloaded = r.getinfo(librepo.LRR_YUM_REPO)
86 yum_repomd_downloaded = r.getinfo(librepo.LRR_YUM_REPOMD)
131 yum_repo_downloaded = r.getinfo(librepo.LRR_YUM_REPO)
143 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
144 yum_repomd = r.getinfo(librepo.LRR_YUM_REPOMD)
162 yum_repo_downloaded = r.getinfo(librepo.LRR_YUM_REPO)
174 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
175 yum_repomd = r.getinfo(librepo.LRR_YUM_REPOMD)
194 yum_repo_downloaded = r.getinfo(librepo.LRR_YUM_REPO)
231 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
[all …]
H A Dtest_yum_repo_downloading.py44 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
45 yum_repomd = r.getinfo(librepo.LRR_YUM_REPOMD)
46 timestamp = r.getinfo(librepo.LRR_YUM_TIMESTAMP)
303 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
508 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
551 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
594 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
638 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
680 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
697 yum_repo = r.getinfo(librepo.LRR_YUM_REPO)
[all …]
/dports/math/R-cran-lme4/lme4/tests/
H A Drefit.R15 getinfo <- function(x) { function
71 all.equal(getinfo(fm1), getinfo(fm1ML), tolerance=0.05)# 0.029998
83 all.equal(getinfo(gm1), getinfo(gm1R), tolerance=0) # to see it --> 5.52e-4
85 stopifnot(all.equal(getinfo(gm1), getinfo(gm1R), tolerance = 1e-4))
88 all.equal(getinfo(gm1), getinfo(gm1S), tolerance=0) # to see:
89 stopifnot(all.equal(getinfo(gm1), getinfo(gm1S), tolerance = 0.4))
95 all.equal(getinfo(gm2), getinfo(gm2R), tolerance= 0)
96 stopifnot(all.equal(getinfo(gm2), getinfo(gm2R), tolerance= 6e-4))
101 stopifnot(all.equal(getinfo(gm2), getinfo(gm2S), tolerance=0.40))
124 all.equal(getinfo(d1), getinfo(d2), tolerance = 0)# -> 0.00126
[all …]
/dports/ftp/py-pycurl/pycurl-7.44.1/tests/
H A Dgetinfo_test.py26 self.assertEqual(200, self.curl.getinfo(pycurl.HTTP_CODE))
28 assert type(self.curl.getinfo(pycurl.TOTAL_TIME)) is float
30 assert self.curl.getinfo(pycurl.SPEED_DOWNLOAD) > 0
35 assert self.curl.getinfo(pycurl.NAMELOOKUP_TIME) > 0
36 assert self.curl.getinfo(pycurl.NAMELOOKUP_TIME) < 1
51 assert self.curl.getinfo(pycurl.TOTAL_TIME) > 0
52 assert self.curl.getinfo(pycurl.TOTAL_TIME) < 1
58 assert type(self.curl.getinfo(pycurl.LOCAL_IP)) is str
59 assert type(self.curl.getinfo(pycurl.LOCAL_PORT)) is int
84 info = self.curl.getinfo(pycurl.INFO_COOKIELIST)
[all …]
/dports/ftp/py-pycurl/pycurl-7.44.1/python/curl/
H A D__init__.py126 return self.handle.getinfo(*args)
132 m['http-code'] = self.handle.getinfo(pycurl.HTTP_CODE)
133 m['total-time'] = self.handle.getinfo(pycurl.TOTAL_TIME)
135 m['connect-time'] = self.handle.getinfo(pycurl.CONNECT_TIME)
139 m['size-upload'] = self.handle.getinfo(pycurl.SIZE_UPLOAD)
141 m['speed-upload'] = self.handle.getinfo(pycurl.SPEED_UPLOAD)
142 m['header-size'] = self.handle.getinfo(pycurl.HEADER_SIZE)
150 m['filetime'] = self.handle.getinfo(pycurl.INFO_FILETIME)
157 m['os-errno'] = self.handle.getinfo(pycurl.OS_ERRNO)
159 m['ssl-engines'] = self.handle.getinfo(pycurl.SSL_ENGINES)
[all …]
/dports/databases/tile38/tile38-1.12.0/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/net-p2p/bitmark-recorder/bitmarkd-0.13.3/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/net-p2p/bitmark-daemon/bitmarkd-0.13.3/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/net-p2p/bitmark-cli/bitmarkd-0.13.3/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/net-p2p/bitmark/bitmarkd-0.13.3/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/editors/micro/micro-2.0.10/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/www/oauth2-proxy/oauth2-proxy-7.2.0/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/net/storj/storj-1.45.3/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/yuin/gopher-lua/_lua5.1-tests/
H A Ddb.lua25 local a = debug.getinfo(print)
27 local b = debug.getinfo(test, "SfL")
58 assert(debug.getinfo(f).short_src == "")
64 local a = debug.getinfo(2)
66 a = debug.getinfo(1)
72 g = debug.getinfo(f)
77 local a = debug.getinfo(1)
183 x = debug.getinfo(2)
335 local tail = debug.getinfo(2)
429 local x = debug.getinfo(co, 1, "lfLS")
[all …]
/dports/misc/py-xgboost/xgboost-1.5.1/R-package/tests/testthat/
H A Dtest_dmatrix.R16 expect_equal(getinfo(dtest1, 'label'), getinfo(dtest2, 'label'))
35 expect_equal(getinfo(dtest1, 'label'), getinfo(dtest3, 'label'))
43 expect_equal(getinfo(dtest4, 'label'), c(0, 1, 0))
50 labels <- getinfo(dtest, 'label')
51 expect_equal(test_label, getinfo(dtest, 'label'))
54 expect_equal(test_label, getinfo(dtest, 'label_lower_bound'))
57 expect_equal(test_label, getinfo(dtest, 'label_upper_bound'))
59 expect_true(length(getinfo(dtest, 'weight')) == 0)
60 expect_true(length(getinfo(dtest, 'base_margin')) == 0)
83 expect_equal(getinfo(dsub1, 'label'), getinfo(dsub2, 'label'))
/dports/misc/xgboost/xgboost-1.5.1/R-package/tests/testthat/
H A Dtest_dmatrix.R16 expect_equal(getinfo(dtest1, 'label'), getinfo(dtest2, 'label'))
35 expect_equal(getinfo(dtest1, 'label'), getinfo(dtest3, 'label'))
43 expect_equal(getinfo(dtest4, 'label'), c(0, 1, 0))
50 labels <- getinfo(dtest, 'label')
51 expect_equal(test_label, getinfo(dtest, 'label'))
54 expect_equal(test_label, getinfo(dtest, 'label_lower_bound'))
57 expect_equal(test_label, getinfo(dtest, 'label_upper_bound'))
59 expect_true(length(getinfo(dtest, 'weight')) == 0)
60 expect_true(length(getinfo(dtest, 'base_margin')) == 0)
83 expect_equal(getinfo(dsub1, 'label'), getinfo(dsub2, 'label'))
/dports/www/p5-WWW-Curl/WWW-Curl-4.17/t/
H A D09times.t39 my $bytes = $curl->getinfo(CURLINFO_SIZE_DOWNLOAD);
41 my $realurl = $curl->getinfo(CURLINFO_EFFECTIVE_URL);
43 my $httpcode = $curl->getinfo(CURLINFO_HTTP_CODE);
47 my $start = $curl->getinfo(CURLINFO_STARTTRANSFER_TIME);
49 my $total = $curl->getinfo(CURLINFO_TOTAL_TIME);
51 my $dns = $curl->getinfo(CURLINFO_NAMELOOKUP_TIME);
53 my $conn = $curl->getinfo(CURLINFO_CONNECT_TIME);
55 my $pre = $curl->getinfo(CURLINFO_PRETRANSFER_TIME);
/dports/www/p5-Net-Curl/Net-Curl-0.44/t/
H A Dold-09times.t41 my $bytes = $curl->getinfo(CURLINFO_SIZE_DOWNLOAD);
43 my $realurl = $curl->getinfo(CURLINFO_EFFECTIVE_URL);
45 my $httpcode = $curl->getinfo(CURLINFO_HTTP_CODE);
52 my $start = $curl->getinfo(CURLINFO_STARTTRANSFER_TIME);
54 my $total = $curl->getinfo(CURLINFO_TOTAL_TIME);
56 my $dns = $curl->getinfo(CURLINFO_NAMELOOKUP_TIME);
58 my $conn = $curl->getinfo(CURLINFO_CONNECT_TIME);
60 my $pre = $curl->getinfo(CURLINFO_PRETRANSFER_TIME);
H A Dcompat-09times.t49 my $bytes = $curl->getinfo(CURLINFO_SIZE_DOWNLOAD);
51 my $realurl = $curl->getinfo(CURLINFO_EFFECTIVE_URL);
53 my $httpcode = $curl->getinfo(CURLINFO_HTTP_CODE);
60 my $start = $curl->getinfo(CURLINFO_STARTTRANSFER_TIME);
62 my $total = $curl->getinfo(CURLINFO_TOTAL_TIME);
64 my $dns = $curl->getinfo(CURLINFO_NAMELOOKUP_TIME);
66 my $conn = $curl->getinfo(CURLINFO_CONNECT_TIME);
68 my $pre = $curl->getinfo(CURLINFO_PRETRANSFER_TIME);
/dports/devel/py-fs2/fs-2.4.11/tests/
H A Dtest_wrap.py90 self.assertEqual(fs.getinfo("foo"), mem_fs.getinfo("foo"))
91 self.assertEqual(fs.getinfo("foo"), mem_fs.getinfo("foo"))
93 self.assertEqual(fs.getinfo("/"), mem_fs.getinfo("/"))
94 self.assertEqual(fs.getinfo("/"), mem_fs.getinfo("/"))
97 fs.getinfo("/foofoo")
/dports/misc/py-xgboost/xgboost-1.5.1/R-package/man/
H A Dgetinfo.Rd3 \name{getinfo}
4 \alias{getinfo}
5 \alias{getinfo.xgb.DMatrix}
8 getinfo(object, ...)
10 \method{getinfo}{xgb.DMatrix}(object, name, ...)
33 \code{group} can be setup by \code{setinfo} but can't be retrieved by \code{getinfo}.
39 labels <- getinfo(dtrain, 'label')
42 labels2 <- getinfo(dtrain, 'label')

12345678910>>...81