Displaying 15 results from an estimated 15 matches for "baa".
Did you mean:
tbaa
2006 Feb 07
0
Rendering objects directly via <%= render @some_object %>
...sed back to ActionView render method
# The options parameter, which contains the original options hash,
# could optionally be uesd to when generating the hash.
#
def renject_render_options( options = {} )
# Generate the wished for hash
return { :partial => @partial, :locals = {:foo => @foo, :baa => @baa }}
end
attr_writer :partial
attr_writer :foo
attr_writer :baa
end
@some_object = SomeClass
@some_object.partial = ''Partial''
@some_object.foo = ''Foo''
@some_object.baa = ''Baa''
-----------------
Rendering @some_object via
<%= ren...
2007 May 02
4
Terse Mocks
Hello,
I recently made a feature request with a patch for terser mocks.
http://rubyforge.org/tracker/index.php?func=detail&aid=10412&group_id=1917&atid=7480
Here are some examples with their current equivalents:
the_mock.expects.foo(1,2) {|a, b| :bar}
the_mock.expects.foo(1,2).returns(:bar)
the_mock.expects(:foo).with(1,2) {|a, b| :bar}
the_mock.expects(:foo).with(1,2).returns(:bar)
2012 Jul 07
1
Getting objects from quantmod ticker list
Hi all,
I would need to put datas downloaded with quantmod into a matrix or a data
frame.
Suppose to start from here:
*require(quantmod)
ticker.list <- c('AAA', 'ALTSALES', 'AMBNS', 'AMBSL', 'BAA', 'EMRATIO',
'FEDFUNDS', 'GASPRICE', 'GS1', 'GS10', 'GS20', 'LNS14100000', 'MORTG',
'NAPM', 'NPPTTL', 'OILPRICE', 'PAYEMS', 'TB3MS', 'UNRATE')
series <- getSymbols(ticker.list, sr...
2011 Nov 18
1
setting up multiple listeners
Hello,
I'm using Dovecot v2 and am atempting to get webmail going. I'm trying
to set up imap so that port 993 only is listening on the external
interface, for both ipv4 and ipv6, but that on localhost only again
for ipv4 and ipv6 unencrypted port 143 is active. I've tried various
combinations but keep getting an error invalid number. I've googled
and not come up with the missing
2004 Oct 18
1
W2K can't join 3.0.7 domain
I've got an unpatched W2K Pro system and I'm trying to join it to the 3.0.7
domain. I put in root and root's password for the domain administrator. The
root user's uid is 0 and root is in Domain Users and works for logging into
other workstations in the domain.
W2K reports "User not found" when I try to join the domain. However, the
machine account is indeed
2005 Nov 30
0
Cross-subnet browsing
...1.101 -R 'ifss'
192.168.1.102 ifss<00>
# nmblookup unicast from domainA to domainB
pdc.domainA> nmblookup -U 192.168.1.101 -R 'rachel95'
querying rachel95 on 192.168.1.101
name_query failed to find name rachel95
# Reverse looking up same client after the IP is known
misty@baa:~> nmblookup -U 192.168.4.1 -A 192.168.4.100
Looking up status of 192.168.4.100
RACHEL95 <00> - M <ACTIVE>
DV <00> - <GROUP> M <ACTIVE>
RACHEL95 <03> - M <ACTIVE>
RACHEL95...
2002 Aug 15
4
tinc-1.0pre7-i386-1.tgz
Beste tinc-developer,
Ik moet van mijn baas een aantal VPN's aanleggen en ben nu thuis bezig om te
testen. Ik heb 2 computers in een thuisnetwerkje (totaal 6 computers)
geinstalleerd met SuSe 7.3, daar de klanten dit ook hebben. De computers zijn
verbonden met een switch.
Dit is de inhoud van mijn bestanden:
Op computer 1 genaamd...
2010 Oct 04
2
Recursion error after upgrade to R_2.11.1 [Sec=Unclassified]
Hi all,
After an upgrade from R_2.10.1 to R_2.11.1 I am now getting the following error:
Error: evaluation nested too deeply: infinite recursion / options(expressions=)?
This occurs in the initialize method of S4 classes where I was initialising attributes eg:
.Object[['realtimeState']] <- list()
I can avoid this new error by altering the code to do:
.Object$realtimeState <-
2015 Jul 20
0
Problems with IMAP/POP and dovecot director on backend (director_proxy_maybe)
...I try to connect via
IMAP-/POP3-client (through proxy or direct) it fails with following log
messages. It seems, that the director doesn?t set the host field within
IMAP/POP sessions before proxying!?
auth: Debug: auth client connected (pid=46359)
imap-login: ID sent: x-session-id=V3iJmU4biAAK/BAa,
x-originating-ip=10.0.0.26, x-originating-port=54408,
x-connected-ip=10.0.1.151, x-connected-port=143, x-proxy-ttl=4: user=<>,
rip=10.0.1.151, lip=10.0.2.21, session=<RVnAm04bzwAK/FCX>
auth: Debug: client in: AUTH 1 PLAIN service=imap
session=RVnAm04bzwAK/FCX...
2019 Feb 14
2
RFC: [DebugInfo] Improving Debug Information in LLVM to Recover Optimized-out Function Parameters
...or
> previous example %vreg gets replaced with $rsi and we get two 'identity
> copies' ($rsi = COPY $rsi) that get deleted. Such situation is special
> for call at entry block whose argument is callee's argument that is used
> only at that place. For example like:
>
> baa(int a) {
> foo(a);
> <code that does not use 'a' variable>;
> }
>
> Variable 'a' is dead after 'foo' call and there is no interest in
> preserving it in further flow of function. At that point we lose
> information about parameter forwarding ins...
2019 Feb 12
2
RFC: [DebugInfo] Improving Debug Information in LLVM to Recover Optimized-out Function Parameters
[+ some folks more knowledgable about the Machine layer than me.]
> On Feb 12, 2019, at 5:07 AM, Nikola Prica <nikola.prica at rt-rk.com> wrote:
>
> Hi,
>
> I am one of the authors of this feature. On Phabricator, we agreed to
> take discussion whether encoding this in IR and threading it through the
> compiler or performing a late MIR analysis is the better approach.
2019 Feb 14
2
RFC: [DebugInfo] Improving Debug Information in LLVM to Recover Optimized-out Function Parameters
...aced with $rsi and we get two 'identity
>>> copies' ($rsi = COPY $rsi) that get deleted. Such situation is special
>>> for call at entry block whose argument is callee's argument that is used
>>> only at that place. For example like:
>>>
>>> baa(int a) {
>>> foo(a);
>>> <code that does not use 'a' variable>;
>>> }
>>>
>>> Variable 'a' is dead after 'foo' call and there is no interest in
>>> preserving it in further flow of function. At that point we lose
&...
2005 Apr 06
3
Re:
...;br>
</body></html>
----------imuegsolcysnwliubriy
Content-Type: image/bmp; name="tawfnpkjlw.bmp"
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename="tawfnpkjlw.bmp"
Content-ID: <tawfnpkjlw.bmp>
Qk1eCAAAAAAAADYAAAAoAAAAOgAAABIAAAABABAAAAAAACgIAAAAAAAAAAAAAAAAAAAAAAAA
/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/
/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/
/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/
/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/...
2019 Feb 22
3
RFC: [DebugInfo] Improving Debug Information in LLVM to Recover Optimized-out Function Parameters
...tity
>>>>> copies' ($rsi = COPY $rsi) that get deleted. Such situation is special
>>>>> for call at entry block whose argument is callee's argument that is used
>>>>> only at that place. For example like:
>>>>>
>>>>> baa(int a) {
>>>>> foo(a);
>>>>> <code that does not use 'a' variable>;
>>>>> }
>>>>>
>>>>> Variable 'a' is dead after 'foo' call and there is no interest in
>>>>> preserving it in fu...
2008 Aug 09
2
xy plot in version 2.7.1 for Mac (PR#12520)
...hhKWocuWzKNVUEVRoRb2a/rROr8WZ/Nnt0B+sM4f0fRzpjzL
lLeasguyz4cKWjijq07TWZsW1utXd8XCbXVFhaw3yVHrr+10FBVSryMJYhIkPd3f3cvSK5kp8PRw
eS8nmwtT1LP8dWE904+qaEbkh9sX602zW8J12T5fpKhQZ7Ud/kU6+Wt0d9A0oVqzG12t1a1mN9pS
HbOhTVpv4WDsgbiHFrUFnYv9i9sXtOiiHW2E9ZQg+q3T0795NuNfWTSeWtuy8cul2SIWzliqSeNY
bKOmPza75Ut1s32yhUgEbaAuz69vi9Wj6wewUg1zNfTGN0RadLYBXWpyJnJWifl1+sNS07ZM0+3+
Gn9XbFkbliYrptOcO3x9WVmhvcZpygprseYWv0+vyvZH2utyekdTbM4d/ZkhLXNkSVFhrycl4dje
ZPew4HR9WeiE0xNlpmSaS6lhzmXPMjki/0w9hIjq0DCSFj/mNFWSzqkU65iKBcATYailL8aKLNXt
tW0xT7nUY4pMt+R7/FrsY0IE+M/9ZaSmfVij5ns+Jlko4+RyqOms/ZKsB4N6QYEMEWst1hRjrDTz
U4oKV8e539/t0cD...