search for: tack

Displaying 20 results from an estimated 426 matches for "tack".

Did you mean: stack
2010 Mar 07
1
duplicate STRSXP : shallow copy ?
...nt j=0; j<nc; j++){ p[j] = tolower( p[j] ) ; } } SEXP res = PROTECT( allocVector( VECSXP, 2 ) ); SET_VECTOR_ELT( res, 0, x ); SET_VECTOR_ELT( res, 1, y ); UNPROTECT(2) ; return res ; ', includes = "#include <ctype.h>" ) I get : > fx( c("Tick", "Tack", "Tock" ) ) [[1]] [1] "tick" "tack" "tock" [[2]] [1] "tick" "tack" "tock" where I would expect the second element of the list to not be modified. Is this intended ? If not, I can track it down to the DUPLICATE_ATOMIC_...
2002 Mar 01
2
best way to work with cvs?
I use a script to get the lastest samba: #!/usr/bin/ksh echo "\npassword: cvs\n" cvs -d :pserver:cvs@pserver.samba.org:/cvsroot login cvs -z5 -d :pserver:cvs@pserver.samba.org:/cvsroot co samba Are there any other commands I could tack on or something I should do differently to make sure I am getting correct rebuilds? For example, should I tack on at the end: cd /usr/local/samba/source autoconf or should I run some make commands? I think I saw something about needing to run make proto some times?!? David David E. Shapiro S...
2010 Nov 22
1
tack + heap sizes ?
Where can I find required memory sizes on stack and heap for encoder or decoder ? How do these figures depend on sampling rate and/or data rate or other settings ?
1998 Dec 14
1
communication between: a server Samba and a PC client
...s something wrong in my configuration of smb.conf? \\station1\hp4m_4_gt it's ok via Novell connection \\station\hp4m_4_gt , station1 is unknown in the over case.... I would like to have the good way to configure a Window's 95 PC.... protocole, net (microsoft, Netware....) Josiane Tack p.s. excuse-me for my bad english... -------------------------------------------------------------------------------- Josiane Tack ISTEEM - CC 049 Universite Montpellier II Place Eugene Bataillon 34095 MONTPELLIER Cedex 05 Tel. 04.67.63.56.18 / Fax. 04.67.14.47.85 E-Mail: Josiane.Tack@dstu.univ-m...
2010 Jun 25
1
Anyone try 'ssh server" and get "Password for DOMAIN\USER:>>"
I'm trying to use 'ssh' as a domain user from a workstation into my server. When I ssh as a non-domain user, it doesn't tack on a domain (or workstation) name, so it just works, but when I log in from from my Samba domain, it tacks it on (and the linux security stuff doesn't like "domain\" either. Should the pam_winbind module be able to authenticate this type of user name against the domain? If not, is...
2001 Oct 04
2
Tried a different tack ....
I installed the latest Codeweavers preview build (binary RPM, ugh!), and the DeskTopWindow error I was experiencing building from cvs is gone. All the font fixme warnings (which had, at one point, gone away) are back, and I'm back to the previous error I was getting before DeskTopWindow: babylon5:alaric:~:46 $ wine --debugmsg fixme-font d:\\install.exe Invoking /opt/wine/bin/wine.bin
2010 Jan 03
1
Re: How to achieve Japanese localization on Mac OSX?
...wine-devel/2009-November/080062.html > > > > > > > > > > > Hmmm. The message seems to imply that using LC_MESSAGES would work. > > > However, it did not. I'll read more on the thread in Wine-devel. > > > > > What did you use? If you tacked on a .utf8, then of course it didn't > > work! On Mac OS, you have to put a dash between the "UTF" and the "8": > > ja_JP.UTF-8. (Or you can type ja_JP.utf-8.) And if you want Shift-JIS, > > then you need to tack on a .SJIS: ja_JP.SJIS. > > > &g...
2004 Feb 11
6
Spelling (PR#6570)
I came across this in connection with an unrelated issue > beta[2] Error in beta[2] : object is not subsettable > beta[2] <- 5 Error in "[<-"(`*tmp*`, 2, value = 5) : object is not subsetable One of the messages must be wrong, but I need a native English speaker to tell me which one. -- O__ ---- Peter Dalgaard Blegdamsvej 3 c/ /'_ --- Dept. of
2005 May 06
1
Am I on the right track, and consultants
...oing to put up the list of consultants referred to on this page soon: http://www.astricon.net/training/dcap.shtml We need an asterisk/telco consultant in/near san francisco asap and I don't know where to look for one. Is there a list on voip-info I haven't found yet? cheers, Dan 'tack' Trudell ---------------------- t r a c t i o n san francisco 1.415.522.3592x8511 main 1.415.522.3594 fax www.tractionco.com Traction. Step One in Forward Motion.
2009 Aug 05
0
Asterisk with gizmo5 and google voice only takes one call at a time.
...Anyways, The first caller goes through just fine but the 2nd caller just gets a ringing. the output looks like this. -- Executing [s at default:1] Wait("SIP/198.65.166.147-084fe8b0", "5") in new s tack -- Executing [s at default:2] Answer("SIP/198.65.166.147-084fe8b0", "") in new stack -- Executing [s at default:3] Wait("SIP/198.65.166.147-084fe8b0", "2") in new s...
2003 Dec 12
3
C++: Appending Values onto an R-Vector.
...and insert values into the allocated slots, the code works fine. If you'd like to see some test code, I've already posted it here: https://www.stat.math.ethz.ch/pipermail/r-help/2003-December/041871.html Here's my question, then: Is SET_LENGTH() the appropriate way to create space for tacking values onto the end of an R-vector in C++, or should I be trying to tack them on in some other way? Thanks again! -- Jim Java
2006 Jul 23
4
Anything like with_scope for ActionController?
...Please note that the human readable parameter I need to inject is NOT related to the <id> being used by the action/controller pair. It''s identifying a container object whose contains are operated on by the actions. I currently have this working with routes, however I need to tack on an extra parameter to all the url generating functions (url_for, form_start_tag, named_route_url...) to get the mapping to pick up the custom URL parameter. Having to remember to append :short_name=>@my_object.short_name (with or without to_param magic), is getting annoying and the...
2007 Apr 09
8
How do I use link_to with all the current options?
In one of my pages I want to create some URLs that go to the same page, but tack on an extra parameter (column sorting stuff). How do I do that? I''ve tried link_to "Title", :sort => "title" and that''s pretty close...it keeps the controller name, but it doesn''t include one of the parameters. I''m using nested routes...
2002 Nov 20
3
using R under windows
I am used to using R under unix. I have a problem with R under Windows-2000: Suppose I have a is a plain text file code.r full of R code that I want to source into R. My problem is that Windows invisibly tacks ".txt" onto the end of the filename (the name looks like code.r but it is really code.r.txt). How to get windows to both allow me to call it code.r (for real! Not code.r.txt) and to edit it as a text file by default (say with Notepad)? Thanks for any help. Bill Simpson -.-.-.-.-.-.-.-...
2016 Mar 08
2
Module Versioning... and other things
...ote: > [...] the merging of ldlinux.sys and isolinux.bin, which I would very > much like to rally people on this list into seeing as beneficial. [...] My understanding is that isolinux.bin and ldlinux.bin are pretty much twins[1]. If I understand correctly, you'd like the latter to be tacked onto the former because people are too stupid to put both on the ISOs that they are too stupid to anticipate might have USB disks derived from. Is that a rough understanding of the cause that you are rallying for? - Shao [1] There are obviously differences, including that the former has ex...
2008 Dec 02
4
Educentos?
Is there an Edubuntu equivalent for Centos?
2015 Feb 03
2
Another Fedora decision
...ng, but some cursory > googling indicates that I'm right. What am I missing here? I don't think anybody is missing anything. "Palindrome" in this context may not be limited to real words; the author may be suggesting that you not pick your password by picking a real word and tacking on its reverse to make a palindrome, e.g., "password1drowssap". --keith -- kkeller at wombat.san-francisco.ca.us
2010 Feb 18
2
xapian.DocNotFoundError: regression?
...t_mset() seems to consistently be raising xapian.DocNotFoundError. I've attached a small test case which reproduces this. The same test case works fine with 1.0.16 (not the latest 1.0.x, but it's what I had installed). Program output with 1.1.3 (core) / 1.1.4 (bindings): tack at orion:~$ rm -rf xapdb/; python xaptest.py Traceback (most recent call last): File "xaptest.py", line 23, in <module> print enquire.get_mset(0, 10) xapian.DocNotFoundError: Document 2 not found Program output with 1.0.16: tack at o...
2016 Aug 21
2
Sound failure in CentOS 6.8
...OS 6.8 system several months ago. > > alsamixer may tell you something useful. > When I select HDA Intel PCH, which is what it should be using, everything looks normal with one possible exception. There are three volume sliders labeled S/PDIF and the second one has "Default" tacked on to it. All three have volume set at zero and alsamixer won't allow any change. The default should be HDA Intel PCH. I have a strong suspicion that there's a config file somewhere that somehow got messed up, but all the config files that I'm aware of that might have anything to...
2015 Jun 15
3
More about my SSL certificate problem
Someone, I don't remember whether it was Alex or Urban, asked me to check on my private keyfile to see if it began with "Begin RSA private key". I reported that it does not. Now here's where things get strange: When I ran the command: $ openssl req -nodes -newkey rsa:2048 -sha1 -keyout myserver.key -out server.csr on an old Ubuntu system, `myserver.key' does begin with