search for: qiu

Displaying 20 results from an estimated 138 matches for "qiu".

Did you mean: niu
1998 Nov 05
0
help on print from unix to PC
...amba running on my sun ultra2 with solaris2.6. Seem every thing works. I can share the directories and PC can share unix printer too. But the unix can not use PC's printer. when I try to directly use the command smbclient to print, I get following error. Antone can give me a hint? Thanks!! Feng Qiu server:Feng 33>cat filename | smbclient \\\\Qiu\\epson -N -P doing parameter log file = /usr/local/samba/var/log.%m doing parameter max log size = 50 doing parameter security = user doing parameter password level = 8 doing parameter encrypt passwords = yes doing parameter socket options = TCP_...
2007 Nov 21
1
multiple comparison (glht) problem
...infct = mcp(blanket = "Dunnett"), alternative = "less") Errors are: Error in try(coef.(model)) : could not find function "coef." Error in modelparm.default(model, ...) : no 'coef' method for 'model' found! Thanks! Regards, Anqi Qiu Anqi Qiu Center for Imaging Science Johns Hopkins University Email: anqi at cis.jhu.edu tel: 410-516-8103 Anqi Qiu Center for Imaging Science Johns Hopkins University Email: anqi at cis.jhu.edu tel: 410-516-8103
2009 May 21
5
Authenticating with /etc/passwd
I am trying to do authentication with /etc/passwd and something is not working right for me. Pls help! When i try to authenticate via pop3, I get: -ERR Authentication failed. In the logs, I get: May 21 11:14:07 Info: auth(default): client in: AUTH 1 PLAIN service=pop3 secured lip=127.0.0.1 rip=127.0.0.1 lport=110 rport=32774 resp=AGp1bmUAU0lORzNlcnQ= May 21 11:14:07 Info: auth(default):
2019 Aug 08
2
回复: [RFC] Improve iteration of estimating divisions
...er: ``` float fdiv(unsigned int a, unsigned int b) { return (float)a / (float)b; } float m; __attribute__((noinline)) void foo() { m = 0.0; } int main() { for (int i = 1; i < 1000000; ++i) for (int j = 1; j < 30000; ++j) { m = fdiv(i, j); foo(); } } ``` Regards, Qiu Chaofan ________________________________________ 发件人: Finkel, Hal J. <hfinkel at anl.gov> 发送时间: 2019年8月7日 4:04 收件人: 邱 超凡; llvm-dev at lists.llvm.org 主题: Re: [llvm-dev] [RFC] Improve iteration of estimating divisions On 8/6/19 12:20 AM, 邱 超凡 via llvm-dev wrote: > Hi there, I notice that...
2006 Jan 25
2
how to test robustness of correlation
...pearson correlation), either by outlier removal procedure, or resampling technique. I am wondering if there is any R package or R code that have incorporated outlier removal or resampling procedure in calculating correlation coefficient. Your help is greatly appreciated. Thanks. Yang Yang Qiu Integrated Data Analysis Cheminformatics@RTP GlaxoSmithKline [[alternative HTML version deleted]]
2014 Oct 27
0
How could the admin do to grant me with permission to run virsh as unprivileged user?
Thank you! How could the admin do to grant me with permission to run virsh as unprivileged user? Also by configurating libvirtd.conf, unix_sock_group? 2014-10-28 Allen Qiu 发件人:libvirt-users-request@redhat.com 发送时间:2014-10-28 00:00 主题:libvirt-users Digest, Vol 58, Issue 33 收件人:"libvirt-users"<libvirt-users@redhat.com> 抄送: Send libvirt-users mailing list submissions to libvirt-users@redhat.com To subscribe or unsubscribe via the World Wide We...
2007 Jan 18
5
how to get the index of entry with max value in an array?
Hi all: A short question: For example, a=[3,4,6,2,3], obviously the 3rd entry of the array has the maxium value, what I want is index of the maxium value: 3. is there a neat expression to get this index? Thank you! Best, Feng [[alternative HTML version deleted]]
2013 Jul 17
3
Re: [ovs-discuss] Libvirt "tc ingress qdisc" automatically removed by ovs vlan tag setting, how?
On Wed, Jul 17, 2013 at 6:06 AM, Qiu Yu <unicell@gmail.com> wrote: > After some digging in openvswitch code. My wild guess is that vlan tag > reconfiguring triggered iface_configure_qos (vswitchd/bridge.c), which > in turn called netdev_set_policing to reset ingress policing rate. > Although there's no ingress_po...
2005 Nov 17
8
Point pattern to grid
Dear all, I'd like to change a point pattern to a grid of cells and use one of the variables as the output. e.g. The point pattern is of a window of (500*500) and several features such as pH, SoilType etc. I like to divide it into a grid with cell size 5*5, and use the mean of the point values falling inside the cell as the output. Is there any package in R working with this? Thanks in
2019 Sep 27
2
Opportunity to split store of shuffled vector.
...x float>* %a, align 16 %vecins1 = shufflevector <4 x float> <float 1.000000e+00, float undef, float undef, float 2.000000e+00>, <4 x float> %0, <4 x i32> <i32 0, i32 5, i32 6, i32 3> store <4 x float> %vecins1, <4 x float>* %a, align 16 Regards, Qiu Chaofan Florian Hahn <florian_hahn at apple.com> 于2019年9月26日周四 下午7:15写道: > > Hi > > > On Sep 26, 2019, at 10:53, Qiu Chaofan via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > > > Hi there, > > > > I notice that LLVM seems to always generate ve...
2016 Jan 01
3
Fix for CVE-2015-5299 denies access to ZFS snapshots due to overly strict condition checking
...change the line if (!NT_STATUS_IS_OK(status)) { in check_access_snapdir() in source3/modules/vfs_shadow_copy2.c to if (status == NT_STATUS_ACCESS_DENIED) { would result in more accurate outcomes and avoid other statuses such as NT_STATUS_NOT_SUPPORTED ending up access denied. -- 裘佺 (QIU Quan) <jackqq at gmail.com>
2014 Oct 27
2
What is the difference between running "virt-manager" and "sudo virt-manager"?
...le TCP/IP networking for ORBit, or you have stale NFS locks due to a system crash. See http://projects.gnome.org/gconf/ for information." How should I deal with the two issues respectively? Is there any drawback by simply running "virt-manager"? Regards, Allen 2014-10-27 Allen Qiu
2019 Aug 06
3
[RFC] Improve iteration of estimating divisions
...and multiply it with `a`. But if we put the operand `a` into iterations in the estimate function, the result would be better. Patching such a change may break several existing test cases in different platforms since it’s target-independent code. So any suggestions are welcome. Thanks. Regards, Qiu Chaofan
2013 May 31
2
Re: How to use libguestfs access LVM as non-root user?
On Fri, May 31, 2013 at 12:48 AM, Richard W.M. Jones <rjones@redhat.com>wrote: > On Thu, May 30, 2013 at 10:21:42PM +0800, Qiu Yu wrote: > > Hi, > > > > Following code snippet, running as non-root user, will throw up a > > 'Permission denied' RuntimeError. > > > > Could someone kindly guide me the correct way to handle LVM disk as > > non-root user? > > > > impo...
2019 Oct 04
2
Opportunity to split store of shuffled vector.
...ather than vector load+store? On Thu, Oct 3, 2019 at 12:33 PM Nemanja Ivanovic via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Just out of curiosity, > would it perhaps make sense to canonicalize this to a masked store? > > Nemanja > > On Thu, Sep 26, 2019 at 10:59 PM Qiu Chaofan via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> > I may be missing something obvious, but what is `vector` defined as >> here? Can you provide a buildable example? >> >> Sorry, I should provide a cross-platform version using vector >> ex...
2013 May 30
2
How to use libguestfs access LVM as non-root user?
...rect way to handle LVM disk as non-root user? Cause as http://libguestfs.org homepage claims, "libguestfs doesn't need root permissions." A little confused somehow. import guestfs g = guestfs.GuestFS() g.add_drive_opts("/dev/vg0/disk1", format="raw") Thanks! -- Qiu Yu
2013 Jul 17
2
Libvirt "tc ingress qdisc" automatically removed by ovs vlan tag setting, how?
...------------ (<-- still exists) Other information -- # ovs-vsctl --version ovs-vsctl (Open vSwitch) 1.9.2 Compiled May 27 2013 14:19:16 # uname -r 2.6.32-358.111.1.openstack.el6.x86_64 # virsh --version (This is a version I built from libvirt upstream origin/v0.9.11-stable branch) 0.9.11.9 -- Qiu Yu
2006 Jun 12
5
use AT320 international call
Hi all, The firmware I used is pa168s_iax2_us_151011.bin. My problem is the handset dial before I finished key in all the numbers, no matter how fast I managed to press the keys. It appeared it always dialed immediately, for example "011862", when I actually ment to dial 0118620xxxxxxxx. Thus left the remaining numbers "0xxxxxxxx" unsent. The handset had its dial plan
2006 Dec 04
2
ask for help
Dear Sir I would appreciate recieving the manul instruction of the program foe geochemical calculations.please what are the requirmentsof using the program Thanks Tanat university faculty of science , geology department ,tanta Egypt Prof.Mohamed Fouad Ghoneim Ph.D- D.Sc. Head of Geology Department Faculty of Science Tanta University, Egypt www.profghoneim.tk
2003 Aug 20
5
Rsync hang on HP-UX 10.20
...meofday(0x7b03ac10, 0) = 0 11982: gettimeofday(0x7b03ac00, 0) = 0 11982: gettimeofday(0x7b03ac10, 0) = 0 11982: select(0, 0, 0, 0, 0x7b03abf0) = 0 11982: gettimeofday(0x7b03ac10, 0) = 0 Has anyone experienced similar hangs and know the possible reasons? Thank you very much for your help! Xiaoqin Qiu Technical Computing Group IT Infrastructure Services Organization Agilent Technologies, Inc. (818)879-6220 xiaoqin_qiu@agilent.com