Home
last modified time | relevance | path

Searched refs:readRatio (Results 1 – 11 of 11) sorted by relevance

/dports/net-p2p/qbittorrent/qbittorrent-4.3.9/src/gui/
H A Dstatsdialog.cpp92 const qreal readRatio = cs.readRatio; in update() local
93 m_ui->labelCacheHits->setText(QString::fromLatin1("%1%").arg((readRatio > 0) in update()
94 ? Utils::String::fromDouble(100 * readRatio, 2) in update()
/dports/sysutils/kubectl/kubernetes-1.22.2/test/e2e/upgrades/apps/
H A Dmysql.go162 readRatio := float64(readSuccess) / float64(readSuccess+readFailure)
164 if readRatio < 0.75 {
165 framework.Failf("Too many failures reading data. Success ratio: %f", readRatio)
/dports/net-p2p/qbittorrent/qbittorrent-4.3.9/src/base/bittorrent/
H A Dcachestatus.h41 qreal readRatio = 0; // TODO: remove when LIBTORRENT_VERSION_NUM >= 20000 member
H A Dsession.cpp4932 …m_cacheStatus.readRatio = static_cast<qreal>(numBlocksCacheHits) / std::max<int64_t>((numBlocksCac… in handleSessionStatsAlert()
/dports/net-p2p/qbittorrent/qbittorrent-4.3.9/src/webui/api/
H A Dsynccontroller.cpp137 …const qreal readRatio = cacheStatus.readRatio; // TODO: remove when LIBTORRENT_VERSION_NUM >= 200… in getTransferInfo() local
138 …map[KEY_TRANSFER_READ_CACHE_HITS] = (readRatio > 0) ? Utils::String::fromDouble(100 * readRatio, 2… in getTransferInfo()
/dports/biology/bbmap/bbmap/current/driver/
H A DLoadReads.java213 double readRatio=readsProcessed/(double)size; in process() local
258 outstream.println("Read Ratio 1: \t"+(String.format(Locale.ROOT, "%.2f", readRatio))); in process()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/framework/randomshaders/
H A DrsgExpression.cpp1052 float readRatio = (readRangeLen > 0.0f) ? (intersectionLen / readRangeLen) : 1.0f; in computeEntryReadWeight() local
1053 float elementWeight = 0.5f*readRatio + 0.5f*entryRatio; in computeEntryReadWeight()
1080 … float readRatio = (readRangeLen > 0) ? ((float)intersectionLen / (float)readRangeLen) : 1.0f; in computeEntryReadWeight() local
1081 float elementWeight = 0.5f*readRatio + 0.5f*entryRatio; in computeEntryReadWeight()
/dports/biology/bbmap/bbmap/current/shared/
H A DTools.java819 double memRatio, diskRatio, readRatio; in estimateFileMemory() local
827 readRatio=diskRatio/100; in estimateFileMemory()
831 long readsEstimate=(long)(readRatio*size); in estimateFileMemory()
958 double readRatio=readCount/(double)(Tools.max(1, sumBytes)); in estimateFileMemory() local
959 long readEstimate=(long)(readRatio*diskEstimate); in estimateFileMemory()
/dports/math/vampire/vampire-4.5.1/Shell/
H A DOptions.hpp1218 bool readRatio(const char* val,char seperator);
1220 return readRatio(value.c_str(),sep); in setValue()
H A DOptions.cpp2537 bool Options::RatioOptionValue::readRatio(const char* val, char separator) in readRatio() function in Options::RatioOptionValue
/dports/net-p2p/qbittorrent/qbittorrent-4.3.9/
H A DChangelog624 - BUGFIX: Redefine CacheStatus.readRatio field. (Chocobo1)