Displaying 3 results from an estimated 3 matches for "getcach".
Did you mean:
getcache
2008 Feb 13
0
RFC for package PopCon: a popularity contest for R and packages
...ackage:graphics" "package:grDevices"
[7] "package:utils" "package:datasets" "package:methods"
[10] "Autoloads" "package:base"
# Notice the above search entry .pcUDB. That's the R Object Table
> typeof(PopCon::getCache())
[1] "character"
> PopCon::getCache()
[1] ".conflicts.OK" "search" "::"
# Now the cache contains the name 'search', which I called above,
# and the double colon operator.
> library(cluster)
> any(PopCon::getCache()=='packa...
2008 Feb 14
0
RFC for package PopCon: a popularity contest for R and packages
...ackage:graphics" "package:grDevices"
[7] "package:utils" "package:datasets" "package:methods"
[10] "Autoloads" "package:base"
# Notice the above search entry .pcUDB. That's the R Object Table
> typeof(PopCon::getCache())
[1] "character"
> PopCon::getCache()
[1] ".conflicts.OK" "search" "::"
# Now the cache contains the name 'search', which I called above,
# and the double colon operator.
> library(cluster)
> any(PopCon::getCache()=='packa...
2010 Apr 19
1
[PATCH matahari] Removes all code for the previous CPUWrapper class.
...urn cpunum; }
- int getCorenum(void) { return corenum; }
- int getNumcores(void) { return numcores; }
-
- int getModel(void) { return model; }
- int getFamily(void) { return family; }
- int getCpuid_Lvl(void) { return cpuid_lvl; }
- double getSpeed(void) { return speed; }
- int getCache(void) { return cache; }
-
- const string &getVendor(void) { return vendor; }
- const string &getFlags(void) { return flags; }
-};
diff --git a/src/host.cpp b/src/host.cpp
index ac04f47..b3ed51f 100644
--- a/src/host.cpp
+++ b/src/host.cpp
@@ -46,14 +46,8 @@ ostream& operator<&...