search for: 1750

Displaying 20 results from an estimated 193 matches for "1750".

Did you mean: 1050
2010 Apr 08
17
[Bug 1750] New: Sftp hangs if stderr is used.
https://bugzilla.mindrot.org/show_bug.cgi?id=1750 Summary: Sftp hangs if stderr is used. Product: Portable OpenSSH Version: 5.4p1 Platform: Other OS/Version: All Status: NEW Severity: major Priority: P2 Component: sshd AssignedTo: unassigned-bugs a...
2023 May 18
1
suprising behaviour of tryCatch()
G'day Federico, On Wed, 17 May 2023 10:42:17 +0000 "Calboli Federico (LUKE)" <federico.calboli at luke.fi> wrote: > sexsnp = rep(NA, 1750) > for(i in 1:1750){tryCatch(sexsnp[i] = fisher.test(table(data[,3], > data[,i + 38]))$p, error = function(e) print(NA))} Error: unexpected > '=' in "for(i in 1:1750){tryCatch(sexsnp[i] =" Try: R> for(i in 1:1750){tryCatch(eval(expression("sexsnp[i] = fisher.tes...
2005 Feb 17
5
Digium TDM 400P and Dell 1750
Has anyone figured out how to power a Digium TDM 400P card in a Dell 1750 server? I opened the server and noticed that there is no access to 4 pin power to power the card. Is there some sort of adapter that I need to power the Digium card in a Dell Server? I see that the 1750 is listed on the Wiki. How have others powered the TDM400P in a Dell 1750? http:/...
2023 May 17
4
suprising behaviour of tryCatch()
Hello, I run a fisher.test() in a loop, with the issue that some of the data will not be useable. To protect the loop I used tryCatch but: sexsnp = rep(NA, 1750) for(i in 1:1750){tryCatch(sexsnp[i] = fisher.test(table(data[,3], data[,i + 38]))$p, error = function(e) print(NA))} Error: unexpected '=' in "for(i in 1:1750){tryCatch(sexsnp[i] =" But this works: for(i in 1:1750){tryCatch(sexsnp[i] <- fisher.test(table(data[,3], data[,i +...
2016 Sep 28
2
[PATCH 2/5] Optimize fixed-point celt_fir_c() for ARM NEON
...a 15% loss rate on a Novena using opus_demo (by using RTCD and changing the function pointers to the version of the code to test), optimizing xcorr_kernel gives almost as much speed-up as intrinsics for all of celt_fir: celt_fir_c, xcorr_kernel_c: 1753 ms (stddev 9) [1730 1740 {1740 1740 1740 1750 1750 1750 1750 1750 1750 1750 1750 1750 1750 1750 1760 1760 1760 1760 1770 1770} 1780 1860] celt_fir_c, xcorr_kernel_neon: 1710 ms (stddev 12) [1680 1690 {1690 1690 1700 1700 1700 1700 1710 1710 1710 1710 1710 1710 1710 1710 1710 1720 1720 1730 1730 1730} 1740 1810] celt_fir_neon: 1695 ms (stdd...
2005 Mar 29
8
Dell 1750 & TDM400P - Power
Has anyone come up with a way to get power to a TDM400P card installed in a Dell PowerEdge 1750? Thanks, Adam The contents of this email message and any attachments are confidential and are intended solely for addressee. The information may also be legally privileged. This transmission is sent in trust, for the sole purpose of delivery to the intended recipient. If you have received this tr...
2024 Apr 20
3
[Bug 1750] New: 'ipset save' does not save in format loadable by systemd (it saves in 'ipset list' format)
https://bugzilla.netfilter.org/show_bug.cgi?id=1750 Bug ID: 1750 Summary: 'ipset save' does not save in format loadable by systemd (it saves in 'ipset list' format) Product: ipset Version: unspecified Hardware: x86_64 OS: All Statu...
2004 Jun 10
1
FWIW- Cisco 1750 dropped packets and choppy audio
...d be established due to extremely choppy audio in one direction only (outbound from * to distant sip phones and distant * boxes). We were running HEAD from June 8th. While diagnosing the root cause, we monitored bandwidth utilization at the asterisk-connected managed-switch as well as at the Cisco 1750 Internet interface. We observed consistent/even data flows to/from the * box, however the outbound Cisco interface indicated more inbound traffic than outbound traffic by a considerable/noticeable amount. Both iax2 and sip sessions were impacted exactly the same regardless of the codec being used....
2007 May 27
1
Please advise: Asterisk on Dell PowerEdge 1750 w/ hyperthreading
I've to setup Asterisk on a Dell PowerEdge 1750 server. Its dual Xeon 3GHz with Hyperthreading. People on this list who have experience with this server please advise me how is the performance of Asterisk on this server, what flavour of linux is good on it etc. Is Hyperthreading going to be a problem or not. I once read somewhere that hyperthrea...
2013 Dec 03
0
CEBA-2013:1750 CentOS 6 qemu-kvm Update
CentOS Errata and Bugfix Advisory 2013:1750 Upstream details at : https://rhn.redhat.com/errata/RHBA-2013-1750.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: c772d1f85c6046a9c85e7630ae9cf70b58ad604f30eca9a7473df8505c2212bd qemu-guest-agent-0.12.1.2-2.415.el6_5...
2003 Mar 06
1
Cisco SIP Weirdness (1750, not ATA)
I have the following in extentions.conf: exten => 2111,1,Dial(SIP/2111 at gw1.langley) exten => 2111,2,Voicemail(u2111) exten => 2111,3,Hangup exten => 2111,100,Voicemail(b2111) exten => 2111,101,Hangup I have the following in sip.conf: ; Cisco 1750 [gw1.langley] type=friend host=172.16.17.1 context=default canreinvite=no Like the ATA, lots of stuff doesn't work on the 1750 if I don't have canreinvite=no Extention 2111 is connected to an FXS port on the Cisco 1750. I can make and receive calls just fine. If extention 2111 is busy a...
2023 May 18
1
suprising behaviour of tryCatch()
...nment. /Henrik On Thu, May 18, 2023 at 8:22?AM Berwin A Turlach <berwin.turlach at gmail.com> wrote: > > G'day Federico, > > On Wed, 17 May 2023 10:42:17 +0000 > "Calboli Federico (LUKE)" <federico.calboli at luke.fi> wrote: > > > sexsnp = rep(NA, 1750) > > for(i in 1:1750){tryCatch(sexsnp[i] = fisher.test(table(data[,3], > > data[,i + 38]))$p, error = function(e) print(NA))} Error: unexpected > > '=' in "for(i in 1:1750){tryCatch(sexsnp[i] =" > > Try: > > R> for(i in 1:1750){tryCatch(eval(expres...
2013 Sep 12
1
Configure samba 3.4 running with mysql backend
...= xxxxxxx samba:mysql user = vinasamba samba:mysql database = samba_authentication Working] comment = Working Vinahost Document path = /home/f/public_html/working read only = no writable = yes create mask = 1750 force create mode = 1750 force directory mode = 1750 valid users = vy vynt f Why I miss UID and GID when add user to samba ? How i solve this error ? Sorry for my bad english. Thank you in advance. vynt
2006 Mar 23
3
Still problems with "step()" function
...347932 75 15.0857882809971 0.999676323029616 1550 "SUROESTE" -0.659712404473708 275 19.6855832458419 0.99394006170119 1800 "SUROESTE" 0.441475545631197 171 12.2966073388367 1.02639721523883 375 "MAGDALENA MEDIO" -0.100925918589961 210 4.08228296275315 0.963297650493535 1750 "VALLE DE ABURRA" 0.789820067820206 209 21.4270750408514 1.02262711864407 2000 "SUROESTE" 0.0797349680188535 150 9.83262770545642 0.990626969124134 1400 "SUROESTE" 0.0168571170664228 69 6.28415300546448 1.02701607456437 2175 "ORIENTE" -0.502526820951296 157 4...
2023 May 18
1
suprising behaviour of tryCatch()
...important. On Thu, May 18, 2023 at 8:38?AM Calboli Federico (LUKE) <federico.calboli at luke.fi> wrote: > > Hello, > > I run a fisher.test() in a loop, with the issue that some of the data will not be useable. To protect the loop I used tryCatch but: > > sexsnp = rep(NA, 1750) > for(i in 1:1750){tryCatch(sexsnp[i] = fisher.test(table(data[,3], data[,i + 38]))$p, error = function(e) print(NA))} > Error: unexpected '=' in "for(i in 1:1750){tryCatch(sexsnp[i] =" > > But this works: > > for(i in 1:1750){tryCatch(sexsnp[i] <- fisher.tes...
2019 Jan 18
3
testparm: /var/run/ctdb/ctdb.socket missing
Apologies in advance, but I have been banging my head against this and the only Google results I've found are from 2014, and don't work (or apply). OS: Ubuntu 18.04 bionic smbd: 4.9.4-Debian (the apt.van-belle.nl version) When I run `testparm` I get: rlimit_max: increasing rlimit_max (8192) to minimum Windows limit (16384) WARNING: The "syslog" option is deprecated
2007 Feb 14
4
Guide to better performance using * ?
Can someone point me in the right direction to find documentation on best practices when setting up a new Asterisk server? I'm using RHES4 and Dell 1750 with TE412P. My current problems are frequent crashes and choppy audio so I think I can easily tweak these out of the picture. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070214/6bccc8e6/attachment.ht...
2018 Jun 20
2
Roaming profiles
...net rpc rights grant "EXAMPLE\Domänen-Admins" SeDiskOperatorPrivilege -U "EXAMPLE\administrator" net rpc rights list privileges SeDiskOperatorPrivilege -U "EXAMPLE\administrator" mkdir -p /home/EXAMPLE/profiles chgrp -R domänen-benutzer /home/EXAMPLE/profiles/ chmod 1750 /home/EXAMPLE/profiles/ smbcontrol all reload-config What did I wrong?
2012 Jul 06
1
Problem using Lag on time series
...830224 1708 1716 1708 1716 -1 8 19830225 1718 1726 1718 1718 -1 9 19830228 1712 1713 1701 1704 1 10 19830301 1690 1694 1683 1689 1 11 19830302 1698 1713 1698 1708 -1 12 19830303 1714 1721 1711 1714 -1 13 19830304 1717 1725 1714 1721 0 14 19830307 1715 1738 1715 1735 -1 15 19830308 1754 1762 1750 1758 -1 16 19830309 1746 1750 1735 1740 1 17 19830310 1744 1745 1731 1735 0 18 19830311 1735 1743 1732 1739 0 19 19830314 1732 1734 1729 1730 1 20 19830315 1735 1740 1733 1735 -1 21 19830316 1737 1737 1733 1734 0 22 19830317 1726 1729 1722 1723 1 23 19830318 1722 1723 1718 1719 1 24 198303...
2006 Oct 30
4
Samba-OpenLDAP and AD question..
...were going to to create an AD 'resource' domain, put all of the workstations in it and create a trust relationship between the two domains. In other words the users would be in the Samba+OpenLDAP domain and the workstations in the AD 'resource' domain. If it matters we have about 1750 workstations with about 2000 users. Is this a reasonable model to follow or thing to do? If we do this what sort of pitfalls, if any, should I expect to encounter? Any ideas, opinions, knowledge of this are greatly appreciated. Thanks, John