search for: anothername

Displaying 6 results from an estimated 6 matches for "anothername".

2004 May 19
1
volume parameter PLEASE!
The 'volume' parameter works fine? I would like change the share name on windows but not works! The share: [share] path = /home/unipost/barcelona/industria9/admision volume = anothername writeable = yes When i try to mount "share" windows shows the name "share" and not "anothername" Anyone help me please? thanks!
2005 Aug 15
2
Newbie rendering problem
Hi On every list request i render an item partial through a collection of items. the item table has 3 columns namely name,anotherName and id. the item partial looks like <%@item=item%> <%= error_messages_for(:item) %> <tr id="<%=item.id%>"> <% for column in Item.content_columns %> <td><%=h item.send(column.name) %></td> <% end %> <td><%= li...
2008 Oct 22
1
Disabling the auto-complete feature in named list indexing
Is there any way to disable the auto-complete feature when we index a named list? E.g: a <- list ('longname'=1, 'anothername'=2) a$l will return 1 and a$a will return 2 the '[[' operator behaves in the same way, the '[' operator does not do autocomplete. Is there any way to disable autocomplete for all the operators? Thanks Pradheep [[alternative HTML version deleted]]
2007 May 02
0
Samba 3.x and PCNetLink domain trusts]]]
...ba and PCNL and between Samba/NT4. The one exception seems to be logging in as Samba/myname on the ENT4 PDC. I had created a ENT4/myname account. I had forgotten to add SAMBA/myname to the local users group on the ENT4 PDC before trying to the ENT4 PDC as SAMBA/myname. If I log in as SAMBA/anothername it is OK. This isn't real show stopper since I think I can drop the NT4 machine and domain altogether. (the goal is to eventually move everything to Samba.) Thanks for the assistance. > To: samba@lists.samba.org > Subject: Re: [Samba] Samba 3.x and PCNetLink domain trusts]] > Da...
2003 Oct 12
6
Rd problems
Hola! I have the following in a .Rd file: \eqn{\mbox{coef} = c(\mbox{coef}[1],\ldots, \mbox{coef}[n]) } {coef = c(coef[1], coef[2], \dots, coef[n])} However, both arguments come out in the latex file! Whats happening? Kjetil Halvorsen
2010 Nov 15
3
indexing lists
Hi List, I'm trying to work out how to use which(), or another function, to find the top-level index of a list item based on a condition. An example will clarify my question. a <- list(c(1,2),c(3,4)) a [[1]] [1] 1 2 [[2]] [1] 3 4 I want to find the top level index of c(1,2), which should return 1 since; a[[1]] [1] 1 2 I can't seem to work out the syntax. I've tried; which(a