Displaying 6 results from an estimated 6 matches for "getweight".
Did you mean:
get_weight
2011 Aug 26
0
R.oo inheritance with pass by reference
...this$.age = num;
})
#..........................................................
setConstructorS3("PerMore", function(age,wt) {
if (missing(age)) age <- NA;
if (missing(wt)) wt <- NA;
extend(Person(), "PerMore",
.age=age,
.wt=wt
)
})
setMethodS3("getWeight", "PerMore", function(this, ...) {
this$.wt;
})
setMethodS3("setWeight", "PerMore", function(this,w, ...) {
this$.wt = w;
})
pc = PerMore(67,150)
pc$getWeight() #
pc$getAge() # 67
#...........................................................
setConstructorS3(&q...
2010 Aug 10
4
[PATCH] Values of cpu_weight and cpu_cap are lost after xend restart
# HG changeset patch
# User Lutz.Dube
# Node ID ca2c8c262dbaa6b2521cec60af7cd688dabdf850
# Parent 8992134dcfd0b9e1e86f4111e68a8aa48bd33c3c
Values of cpu_weight and cpu_cap are lost after xend restart
For managed domains in state ''halted'' I always get default values
for cpu_cap / cpu_weight after xend restart.
This is because the names of parameters differ between a SXP file to
2011 Oct 27
0
R.oo package, inherit two classes
...;Dog", function(this,num, ...) {
this$.dog_age = num;
})
#..........................................................
setConstructorS3("PerDog", function(age=NA,wt=NA,dog_age=NULL) {
extend(Person(age=age),Dog(dog_age=dog_age), "PerDog",
.wt=wt
)
})
setMethodS3("getWeight", "PerDog", function(this, ...) {
this$.wt;
})
setMethodS3("setWeight", "PerDog", function(this,w, ...) {
this$.wt = w;
})
> pd = PerDog(67,150,1)
Error in list(`PerDog(67, 150, 1)` = <environment>, `extend(Person(age =
age), Dog(dog_age = dog_age),...
2007 Mar 30
0
[933] branches/wxruby2/wxwidgets_282: Font API 2.6 -> 2.8, corrections to Event doc
...quot;:#Font_getpointsize
</span><span class="cx"> * "Font#get_style":#Font_getstyle
</span><span class="cx"> * "Font#get_underlined":#Font_getunderlined
</span><span class="cx"> * "Font#get_weight":#Font_getweight
</span><span class="cx"> * "Font#new":#Font_new
</span><del>-* "Font#ok":#Font_ok
</del><ins>+* "Font#is_ok":#Font_isok
</ins><span class="cx"> * "Font#set_default_encoding":#Font_setdefaulte...
2012 Oct 12
0
Wine release 1.5.15
...: Add family name to string array.
dwrite: Implement GetStringLength method.
dwrite: Implement GetString().
dwrite: Implement GetFontStretch().
dwrite: Added IDWriteTextFormat stub implementation.
dwrite: Use proper table field as stretch value.
dwrite: Implement GetWeight() for IDWriteFont.
dwrite: Store text format properties.
Nozomi Kodama (6):
d3dx9_36: Implement D3DXSHMultiply4.
d3dx9_36/tests: Speed up some tests.
d3dx9_36/tests: Avoid a potential out of bound access.
d3dx9_36/tests: Relax an equality between floats.
d3dx9_3...
2006 Nov 26
0
[758] trunk/wxruby2: i18n support: added Locale class, methods for get/set languages & encodings
...nbsp /**
-         * \brief Gets the font weight. See for a list of valid
-weight identifiers.
-        */
-
</del><span class="cx"> int GetWeight() const;
</span><del>-        /**
-         * \brief Returns if this object is a valid font, otherwise.
-     &...