Displaying 20 results from an estimated 20 matches for "a100".
Did you mean:
100
2009 Jul 01
2
Multi-tenant parking broken in 1.6.1.1?
...callee fails because a | delimiter is used in the Dial()
function.
Perhaps we have configured it incorrectly. Here is the pertinent
section from features.conf:
[parkinglot_a10] ; EBC
context => a10parking
parkpos => 101-110
;parkext => 100
findslot => next
[parkinglot_a100] ; SSI
context => a100parking
;parkext => 1000
parkpos => 1001-1020
findslot => next
If I understand this correctly, the parkinglog_a100 would be the channel
variable and a100parking the context into which parking extensions are
placed.
We set the channel parameter in sip.conf:
[a100...
2018 Mar 12
0
Equivalent of gtools::mixedsort in R base
???
> y <- sort( c("a1","a2","a10","a12","a100"))
> y
[1] "a1" "a10" "a100" "a12" "a2"
> mixedsort(y)
[1] "a1" "a2" "a10" "a12" "a100"
**Please read the docs!** They say that mixedsort() and mixedorder() both
take a **singl...
2009 Jun 27
1
Multiple parking lots use default park positions
Hello, all. I'm having a deeply frustrating time getting multiple
parking lots to work and am wondering what I am doing wrong. I am using
Asterisk 1.6.1.1. I defined two separate parking lots in features.conf
as follows:
[parkinglot_a100] ; SSI
context => a100-parking
parkpos => 900-920
findslot => next
[parkinglot_a10] ; EBC
context => a10-parking
parkpos => 800-820
findslot => next
I then set the parkinglot parameters in sip.conf as follows:
[general]
context=incoming
tos_audio=0xb0
tos_sip=0xb0
disallow=all...
2018 Mar 12
1
Equivalent of gtools::mixedsort in R base
...<- order( alph, digt )
vo <- ordered( v, levels=vu[ o ] )
}
o2 <- do.call( order, lapply( DF, myrank ) )
DF[ o2, ]
?order
?ordered
?rank
On Sun, 11 Mar 2018, Bert Gunter wrote:
> ???
>
>> y <- sort( c("a1","a2","a10","a12","a100"))
>> y
> [1] "a1" "a10" "a100" "a12" "a2"
>> mixedsort(y)
> [1] "a1" "a2" "a10" "a12" "a100"
>
> **Please read the docs!** They say that mixedsort() and mixedo...
2018 Mar 12
7
Equivalent of gtools::mixedsort in R base
Hi,
Searching for functions that would order strings that mix characters and numbers in a "natural" way (ie, "a1 a2 a10" instead of "a1 a10 a2"), I found the mixedsort and mixedorder from the gtools package.
Problems:
1- mixedorder does not work in a "do.call(mixedorder, mydataframe)" call like the order function does
2- gtools has not been updated in 2.5
2007 Sep 17
0
assertion failed after too many links error
...link fails (rsync then copies the file instead of linking, apparently);
also, it doesn't go wrong if the file list isn't that large:
$ rm a????
$ ln a??? ../b
(removing a??? and linking a?? doesn't demonstrate the effect)
$ cd ..
$ rsync -aHv --link-dest ../b/ a/ c/
...
a18185 => a100
a18186 => a100
rsync: link "/tmp/c/a18187" => a100 failed: Too many links (31)
rsync: link "/tmp/c/a182" => ../b/a182 failed: Too many links (31)
rsync: hlink.c:449: finish_hard_link: Assertion `flist != ((void *)0)' failed.
rsync: connection unexpectedly closed (65...
2008 Oct 13
2
Multiple mailboxes per user
...calhost 143
* OK Dovecot ready.
a1 login user password
a1 OK Logged in.
c1 list "" *
* LIST (\HasNoChildren) "." "INBOX"
* LIST (\Noselect \HasChildren) "." "graph"
* LIST (\Noselect \HasChildren) "." "spam"
c1 OK List completed.
a100 logout
* BYE Logging out
a100 OK Logout completed.
The logs only show:
Oct 13 10:44:44 machine dovecot: imap-login: Login: user=<user>,
method=PLAIN, rip=127.0.1.1, lip=127.0.1.1, TLS
Oct 13 10:44:46 machine dovecot: IMAP(user): Disconnected: Logged out
Any ideas where I am going wrong? O...
2009 Jul 10
3
strange strsplit gsub problem 0 is this a bug or a string length limitation?
...A25+A26+A27+A28+A29+A30+A31+A32+A33+A34+A35+A36+A37+A38+A39+A40+A41+A42+A43+A44+A45+A46+A47+A48+A49+A50+A51+A52+A53+A54+A55+A56+A57+A58+A59+A60+A61+A62+A63+A64+A65+A66+A67+A68+A69+A70+A71+A72+A73+A74+A75+A76+A77+A78+A79+A80+A81+A82+A83+A84+A85+A86+A87+A88+A89+A90+A91+A92+A93+A94+A95+A96+A97+A98+A99+A100+A101+A102+A103+A104+A105+A106+A107+A108+A109+A110+A111+A112+A113
benchmarkName = as.character(backtestFormula)[2]
print(as.character(backtestFormula)[3])
print(benchmarkName)
assetsNames <- strsplit(gsub(" ", "", as.character(backtestFormula)[3]),
"\\+")[[1]]...
2012 Aug 16
4
Column Extraction from matrix
Hi all,
I have a 4 by 100 matrix. I wish to extract each column and make it into a 2
by 2 matrix.
I also want to assign names for each 2X2 matrix.
For example
set.seed(2)
a=matrix(rnorm(400),ncol=100)
a1=matrix(a[,1],ncol=2)
a2=matrix(a[,2],ncol=2)
.
.
.
a100=matrix(a[,100],ncol=2)
Any simple ideas. Thanks.
B
--
View this message in context: http://r.789695.n4.nabble.com/Column-Extraction-from-matrix-tp4640465.html
Sent from the R help mailing list archive at Nabble.com.
2008 Jan 19
1
how to use different variable to store values with different length in a loop
Hi, List
I am trying to use variables named A1, A2, ..., A100 to store some values,
each variable could store some values with different length, how can I
achieve this?
Thanks,
Jack
[[alternative HTML version deleted]]
2004 Dec 08
3
Samba printer name != cups printer name
I recently added a printer to cups and the samba name is wrong.
Anyone know how I can fix it?
Environment:
OS: Red Hat Enterprise Linux ES release 3 (Taroon Update 3)
Uname: Linux stilton.ulticom.com 2.4.21-20.EL #1 Wed Aug 18 20:58:25 EDT 2004 i686 i686 i386 GNU/Linux
Samba: samba-client-3.0.4-6.3E samba-common-3.0.4-6.3E samba-3.0.4-6.3E
Cups: cups-libs-1.1.17-13.3.16
2002 May 14
5
Question
...I want to take the second row and make
a2<-which(mat[2,]==1)
and so on until I arrive at row 100.
I want to make it automatic for the 100 rows and so I wrote:
for(i in 1:nrow(mat)){
ai<-which(mat[i,]==1)
}
but it doesn't work.
I need to obtain 100 vectors called a1,a2,a3,...,a100.
Please help me.
Alessandro
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)...
2006 Aug 16
0
Success story: updating LG DVD firmware using Wine
Hello,
I have an LG GSA-4163B drive. Recently I had many problems with the drive
not recognizing correct writing speed, and locking up hard on many DVD-RW
media. When I bought the drive, the latest firmware was at version A100,
and it was available bundled with a DOS flasher. Unfortunately LG dropped
DOS support, and now all the firmware updates are Windows only.
As the drive was barely usable anyway, I decided to risk and try to run the
updater on Wine.
I downloaded an official internet updater from LG site, named
LGO...
2006 Mar 15
5
Recent 6.1-PRE: burncd: ioctl(CDRIOCFIXATE): Input/output error
I'm running:
localhost(6.1-P)[21] uname -a
FreeBSD localhost 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #19: Wed Mar 15 07:15:25 PST 2006 root@g1-18.catwhisker.org.:/common/S2/obj/usr/src/sys/LAPTOP_30W i386
localhost(6.1-P)[22]
I figured I'd grab a copy of the recent 6.1-BETA4 (disc1) ISO to
try it out & hand it out to folks....
It seems to have worked, but I got a bit of a whine
2010 Sep 20
0
Samba Resolving Slow or Not Working
...41 (4 Ports)
Device IP:??192.168.2.1
Subnet Mask:?255.255.255.0
DHCP Enabled
DHCP Range:??192.168.2.10
????192.168.2.30
DNS 1-3:??nothing
WINS???nothing
?
---LAPTOP #1---
Toshiba Satellite P100
2.5Ghz 1Mb Ram
Windows XP Pro
Hostname:?SATELLITE
Workgroup:?MAJESTIC
?
---LAPTOP #2---
Toshiba Satellite A100
1.5Ghz 512Mb Ram
Debian Lenny
Hostname:?HOSTISP
Workgroup:?SAMBA
?
PROBLEM #1: Samba Not working
?
I can boot the HOSTISP machine and it gets a valid IP address. I can open zone alarm on SATELLITE and find the IP for the HOSTISP box. I can also open a tightVNC window on SATELLITE and access the HOS...
2017 Aug 17
0
URGENT: Update issues from 3.6.6 to 3.10.2 Accessing files via samba come up with permission denied
...-15 -- Mercedes Benz of
Miami_CDs_backup/deltas.dat => -1 (Operation not permitted)
[2017-08-16 22:13:36.262468] I [MSGID: 109066]
[dht-rename.c:1608:dht_rename] 0-export-dht: renaming
/projects/ACTIVE/Automotive/MercedesBenz/AN Mercedes Benz of Miami/10
CORRESPONDENCE/2017-08-16 CE coordination/A100 - ARCHITECTURAL SITE
PLAN.dwg (hash=export-replicate-0/cache=export-replicate-0) =
> /projects/ACTIVE/Automotive/MercedesBenz/AN Mercedes Benz of Miami/10 CORRESPONDENCE/2017-08-16 CE coordination/atmp6906 (hash=export-replicate-0/cache=<nul>)
[2017-08-16 22:13:37.728159] I [MSGID: 109066]...
2006 Apr 05
1
GEOM_RAID3: Device datos is broken, too few valid components
...on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
Timecounter "TSC" frequency 2079563677 Hz quality 800
Timecounters tick every 1.000 msec
ad0: 38166MB <Seagate ST340823A 3.32> at ata0-master UDMA100
acd0: DVDROM <TOSHIBA DVD-ROM SD-M1612/1004> at ata0-slave UDMA33
acd1: DVDR <HL-DT-ST DVDRAM GSA-4081B/A100> at ata1-slave UDMA33
ad4: 152627MB <Seagate ST3160021A 8.01> at ata2-master UDMA100
ad5: 152627MB <Seagate ST3160021A 8.01> at ata2-slave UDMA100
ad6: 152627MB <S...
2010 Sep 29
1
Hard time installing printers 3.4.8
...nd I get to
a point where it's telling me that the files it's either reading or
writing are a symlink outside the share path. And so, I think this is
why it fails. Here's the log file +- 100 lines around the error.
Hopefully that's enough output from the log.
freecups# grep -A100 -B100 NT_STATUS_ACCESS_DENIED log.smbd
Checking operation #92 (type 92, layer 0)
Making operation type 92 opaque [module /[Default VFS]/]
Accepting operation type 92 from module /[Default VFS]/
[2010/09/29 17:31:53, 5] smbd/vfs.c:192(vfs_init_custom)
Checking operation #93 (type 93, la...
2017 Jun 12
1
URGENT: Update issues from 3.6.6 to 3.10.2 Accessing files via samba come up with permission denied
Did the logs provide any hints as to what the issue may be?
Diego
On Sat, Jun 3, 2017 at 12:16 PM, Diego Remolina <dijuremo at gmail.com> wrote:
> Thanks for taking the time to look into this. Since we needed downtime
> due to the gluster update, we also updated the OS, including samba. We
> went from 4.2.x to 4.4.4 and many other packages for CentOS were
> updated as well. OS
2002 Oct 01
1
ssh with iptables and equalize
...9 psc-gw2.customer.alter.net (65.194.72.114) 28.217 ms 27.871 ms
28.211 ms
10 bar-foo.psc.net (192.88.115.1) 27.594 ms 27.480 ms 26.089 ms
11 cmu-i1.psc.net (192.88.115.182) 25.469 ms 25.237 ms 25.841 ms
12 CORE255-VL501.GW.CMU.NET (128.2.33.227) 27.467 ms 28.731 ms 26.838
ms
13 CYH-A100-VL255.GW.CMU.NET (128.2.255.35) 26.844 ms 27.118 ms 26.839
ms
14 UNIX1.andrew.cmu.edu (128.2.11.201) 27.342 ms 27.106 ms 27.714 ms
$ ssh -vvv -x -a -4 -l mkhurana unix1.andrew.cmu.edu
OpenSSH_3.1p1, SSH protocols 1.5/2.0, OpenSSL 0x0090602f
debug1: Reading configuration data /etc/ssh/ssh_c...