search for: showes

Displaying 20 results from an estimated 77138 matches for "showes".

Did you mean: showed
2008 Jun 05
5
vector comparison
I know this is fairly basic, but I must have somehow missed it in the manuals. I have two vectors, often of unequal length. I would like to compare them for identity. Order of elements do not matter, but they should contain the same. I.e: I want this kind of comparison: > if (1==1) show("yes") else show("blah") [1] "yes" > if (1==2) show("yes") else
2010 Nov 30
2
Asteris 1.8 and mISDN - 'mISDN' (cause 66 - Channel not implemented)
HI, I tried to configure Asterisk 1.8 on one of my test-hosts. I've installed from centos-asterisk.repo (http://packages.asterisk.org/centos/$releasever/tested/$basearch/): Nov 26 15:34:56 Installed: asterisk-sounds-core-en-gsm-1.4.20-1_centos5.noarch Nov 26 15:34:59 Installed: asterisk18-core-1.8.0-1_centos5.i386 Nov 26 15:35:02 Installed: asterisk18-voicemail-1.8.0-1_centos5.i386 Nov 26
2005 Jan 24
1
how can i override the show view to capture show/n , show/n+1, etc.
Hi - Yet another rails newbie ... I have a simple list view rhtml with data returned from a db and displayed within a table. Each row has a show action link_to based on the id field in the table row. i.e. http://127.0.0.1:3000/myapp/show/1 http://127.0.0.1:3000/myapp/show/2 http://127.0.0.1:3000/myapp/show/3 I want to override the default show view but I don''t understand how I can do
2006 Mar 23
7
Ok... what is 'sip show peers' really used for?
I'd love to understand what the function of the peer list returned by 'sip show peers' is for, especially when Realtime is used. If I start Asterisk with realtime enabled, a 'sip show peers' yields none. As each peer (phone) registers, or a call is made to the peer, Asterisk adds them to the list returned by 'sip show peers'. Correct? Apparently Asterisk doesn't
2006 Jun 15
7
Customising ''show''
Newb here; I feel like im cheating when i actually write to the list, but i''ve been stuck on this for a while now and cant seem to find the answer in tutorials... heres the simplified version of the problem controller says: def show @exhibition = Exhibition.find(params[:id]) end content says: <% for exhibition in @exhibitions %> <%= link_to
2006 Feb 16
2
Problem with scoping a variable value
Hi there, I have a function which has a variable called show as an input: richardson.grad <- function(func, x, d=0.01, eps=1e-4, r=6, show=F){ # do some things if(show) { cat("\n","first order approximations", "\n") print(a.mtr, 12) } #do more things and return } The show variable is being used as a flag to show intermediate
2015 Jun 30
2
Defining a `show` function breaks the print-ing of S4 object -- bug or expected?
Hi r-devel If you define a function named `show` or attach a package with an exported `show` function, then printing/vieweing S4 objects breaks. This is probably because the `print` function calls `show`, which is now masked. Example: show <- function() {} > setClass("Person", slots = list(name = "character")) > tom <- new("Person", name =
2015 Jun 30
2
Defining a `show` function breaks the print-ing of S4 object -- bug or expected?
On 30/06/2015 1:57 PM, Hadley Wickham wrote: > A slightly simpler formulation of the problem is: > > show <- function(...) stop("My show!") > methods::setClass("Person", slots = list(name = "character")) > methods::new("Person", name = "Tom") > #> Error in (function (...) : My show! Just to be clear: the complaint is
2010 Jan 20
1
Reshaping data with xtabs giving me 'extra' data
Dear all, Lets say I have several data frames as follows: > set.seed(42) > dates <- as.Date(c("2010-01-19", "2010-01-20")) > times <- c("09:30:00", "11:30:00", "13:30:00", "15:30:00") > shows <- c("Red Dwarf", "Being Human", "Doctor Who") > > df1 <- data.frame(Date = dates[1],
2013 Apr 21
0
[PATCH] Reduce valgrind num-callers to 50
My Valgrind doesn't run, saying it doesn't support showing more than 50 entries of a stack trace --- test/test_bins.sh | 4 ++-- test/test_flac.sh | 8 ++++---- test/test_grabbag.sh | 8 ++++---- test/test_libFLAC++.sh | 2 +- test/test_libFLAC.sh | 2 +- test/test_metaflac.sh | 12 ++++++------ test/test_seeking.sh | 12 ++++++------
2015 Jun 30
2
Defining a `show` function breaks the print-ing of S4 object -- bug or expected?
On 30/06/2015 5:27 PM, Lorenz, David wrote: > There is something I'm really missing here. The function show is a > standardGeneric function, so the correct way to write it as method like > this: That describes methods::show. The problem is that the default print mechanism isn't calling methods::show() (or base::print() as Luke says), it's calling show() or print() in the
2011 Oct 21
20
How to transform my html form into a rails 3 form
Hi, I have the following code working in a rails 3 view, but it is unfortunately not pure rails code! <% @filter1 = "tr.show1,tr.show2" %> <% @filter2 = "tr.show1" %> <% @filter3 = "tr.show2" %> <form> <p> <input type="checkbox" value=<%=@filter1%> onclick="$ (this).is('':checked'')
2007 Jun 10
0
Branch 'as' - 5 commits - libswfdec/swfdec_mouse_as.c libswfdec/swfdec_movie_asprops.c test/trace
libswfdec/swfdec_mouse_as.c | 29 +++++++++++++++++------------ libswfdec/swfdec_movie_asprops.c | 4 ++-- test/trace/Makefile.am | 7 +++++++ test/trace/mouse-show-hide-5.swf |binary test/trace/mouse-show-hide-5.swf.trace | 4 ++++ test/trace/mouse-show-hide-6.swf |binary test/trace/mouse-show-hide-6.swf.trace | 4 ++++
2010 May 24
4
convert zaptel to dahdi?
I am trying to get a zaptel install converted to dahdi. I can get dahdi installed, and the pseudo device even shows up; however, dahdi show channels shows me nothing. There is a TE122 and a TDM800 in there, and neither show up. dahdi show status shows both cards, and dahdi tools show that the cards are there, working, and have no alarms. What am I missing? Michael Munger, dCAP, MCPS, MCNPS,
2015 Jun 30
2
Defining a `show` function breaks the print-ing of S4 object -- bug or expected?
Same thing happens with S3 if you redefine print(). I thought that code was actually calculating the function to call rather than the symbol to use, but apparently not. Shouldn't be too hard to fix. luke On Tue, 30 Jun 2015, Hadley Wickham wrote: > On Tue, Jun 30, 2015 at 2:20 PM, Duncan Murdoch > <murdoch.duncan at gmail.com> wrote: >> On 30/06/2015 1:57 PM, Hadley
2005 Mar 11
7
Sip show registry returning nothing
Hello all, For some reason I am not showing registration in SIP. Can anyone give me an idea what can cause this? asterisk1*CLI> sip show registry Host Username Refresh State -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050311/bd3a7577/attachment.htm
2020 Mar 31
2
Unable to "show" a group using samba-tool
Howdy! I'm setting up a domain controller, and things are going wonderfully, but I'm running into a strange problem, only some groups will display using the `samba-tool group show` command. <snip> root at vorador:~# samba-tool group addmembers videos dkowis Added members to group videos root at vorador:~# samba-tool group list | grep videos videos root at vorador:~# samba-tool
2015 Jun 30
1
Defining a `show` function breaks the print-ing of S4 object -- bug or expected?
On 30/06/2015 7:04 PM, Paul Gilbert wrote: > > > On 06/30/2015 11:33 AM, Duncan Murdoch wrote: >> On 30/06/2015 5:27 PM, Lorenz, David wrote: >>> There is something I'm really missing here. The function show is a >>> standardGeneric function, so the correct way to write it as method like >>> this: >> >> That describes methods::show. The
2008 Mar 13
3
Sealed for setGeneric
Hi the list When two setGeneric occurs on the same function, the second erage the first and erase all the function previously define. Is it possible to prevent that ? Is it possible to declare a setGeneric that can not be erased later ? Something like the |sealed for setMethod...| || |Thanks| || Christophe
2006 Feb 05
6
render partial -- show certain content only if...
i''m working on a _post.rhtml partial, and it displays one blog post. i''m accessing this partial on the list.rhtml and the show.rhtml what i''d like is to only show the "link" link on the list.rhtml and not on the show page. <%= post.title%> <br /> <%= post.body%> <%= link_to