search for: 13720

Displaying 19 results from an estimated 19 matches for "13720".

Did you mean: 13.20
2009 May 26
1
Covariance calculation gives different answer than Excel (PR#13720)
Full_Name: Amos Waterland Version: 2.8.1 OS: Ubuntu Linux Submission from: (NULL) (68.175.8.163) I calculated the covariance for a small data set as follows: X <- c(1,2,3,4) Y <- c(3,3,4,3) cov(X,Y) [1] 0.1666667 But when doing the computation with pencil and paper I get: ((-1.5)*(-0.25) + (-0.5)*(-0.25) + (0.5)*(0.75) + (1.5)*(-0.25))/4 [1] 0.125 Microsoft Excel 2003 covar() also
2017 Oct 11
0
[ANNOUNCE] libXfont2 2.0.2
A collection of minor fixes since 2.0.1, including CVEs 2017-13720 and 2017-13722. Adam Jackson (5): configure: Use -fvisibility=hidden if available autogen: Set a default subject prefix for patches freetype: Fix a logic error in computing face name readme: Update for libXfont 2.0 interface change libXfont 2.0.2 Emil Velikov (1):...
2017 Oct 19
0
[ANNOUNCE] libXfont 1.5.3
Matt Turner (1): libXfont 1.5.3 Michal Srb (2): Check for end of string in PatternMatch (CVE-2017-13720) pcfGetProperties: Check string boundaries (CVE-2017-13722) git tag: libXfont-1.5.3 https://xorg.freedesktop.org/archive/individual/lib/libXfont-1.5.3.tar.bz2 MD5: 9ba75bf38ba62a6ad52550ab716da9b3 libXfont-1.5.3.tar.bz2 SHA1: 628b8ca2207f09324b8926084318a2fa2edb16d1 libXfont-1.5.3.tar.bz...
2019 Feb 08
0
[Announce] Samba 4.8.9 Available for Download
...sion of stream with vfs_shadow_copy2 fails with NT_STATUS_OBJECT_NAME_INVALID. * BUG 13736: s3: libsmb: Use smb2cli_conn_max_trans_size() in cli_smb2_list(). o Günther Deschner <gd at samba.org> * BUG 13708: s3-vfs: Prevent NULL pointer dereference in vfs_glusterfs. * BUG 13720: s3-smbd: Avoid assuming fsp is always intact after close_file call. * BUG 13725: s3-vfs-fruit,s3-vfs-streams_xattr: Add close call. * BUG 13774: s3-vfs: Add glusterfs_fuse vfs module. o Aaron Haslett <aaronhaslett at catalyst.net.nz> * BUG 13738: dns: Changing onelevel search...
2019 Feb 08
0
[Announce] Samba 4.8.9 Available for Download
...sion of stream with vfs_shadow_copy2 fails with NT_STATUS_OBJECT_NAME_INVALID. * BUG 13736: s3: libsmb: Use smb2cli_conn_max_trans_size() in cli_smb2_list(). o Günther Deschner <gd at samba.org> * BUG 13708: s3-vfs: Prevent NULL pointer dereference in vfs_glusterfs. * BUG 13720: s3-smbd: Avoid assuming fsp is always intact after close_file call. * BUG 13725: s3-vfs-fruit,s3-vfs-streams_xattr: Add close call. * BUG 13774: s3-vfs: Add glusterfs_fuse vfs module. o Aaron Haslett <aaronhaslett at catalyst.net.nz> * BUG 13738: dns: Changing onelevel search...
2019 Mar 12
0
[Announce] Samba 4.9.5 Available for Download
...b2cli_conn_max_trans_size() in cli_smb2_list(). * BUG 13776: tldap: Avoid use after free errors. * BUG 13802: Fix idmap xid2sid cache churn. * BUG 13812: access_check_max_allowed() doesn't process "Owner Rights" ACEs. o Günther Deschner <gd at samba.org> * BUG 13720: s3-smbd: Avoid assuming fsp is always intact after close_file call. * BUG 13725: s3-vfs-fruit: Add close call. * BUG 13746: s3-smbd: Use fruit:model string for mDNS registration. * BUG 13774: s3-vfs: add glusterfs_fuse vfs module. o David Disseldorp <ddiss at samba.org> *...
2019 Mar 12
0
[Announce] Samba 4.9.5 Available for Download
...b2cli_conn_max_trans_size() in cli_smb2_list(). * BUG 13776: tldap: Avoid use after free errors. * BUG 13802: Fix idmap xid2sid cache churn. * BUG 13812: access_check_max_allowed() doesn't process "Owner Rights" ACEs. o Günther Deschner <gd at samba.org> * BUG 13720: s3-smbd: Avoid assuming fsp is always intact after close_file call. * BUG 13725: s3-vfs-fruit: Add close call. * BUG 13746: s3-smbd: Use fruit:model string for mDNS registration. * BUG 13774: s3-vfs: add glusterfs_fuse vfs module. o David Disseldorp <ddiss at samba.org> *...
2015 Mar 28
2
Problem connecting to an imap account with Dovecot
...=<1pvxdFcSpwAAAAAAAAAAAAAAAAAAAAAB> Mar 28 12:21:58 sd-41648 dovecot: service=imap, user=laurent at xxxxxx.fr, ip=[::1]. Disconnected: Logged out rcvd=1266, sent=108893 Mar 28 12:22:12 sd-41648 dovecot: imap-login: Login: user=<laurent at xxxxxx.fr>, method=PLAIN, rip=::1, lip=::1, mpid=13720, TLS, session=<XCXadVcStwAAAAAAAAAAAAAAAAAAAAAB> Mar 28 12:22:20 sd-41648 dovecot: service=imap, user=laurent at xxxxxx.fr, ip=[::1]. Disconnected: Logged out rcvd=309, sent=11066 Mar 28 12:22:21 sd-41648 postfix/master[31571]: warning: master_wakeup_timer_event: service pickup(public/pickup)...
2012 Nov 08
2
[LLVMdev] Bug Report -- Possible optimizer bug with thread_local variables
...quot; flag is true. This strikes me as a potential for confusion, because you have this one corner case -- thread_locals -- in which an "llvm::Constant" is not really a "constant" in the same way as other constants. This might be related to http://llvm.org/bugs/show_bug.cgi?id=13720, and perhaps a few other bugs. -Tom p.s. If anyone is hit by this bug, my current workaround is to declare Ptr volatile: int * volatile Ptr; Note that if the volatile is moved under the pointer, as in the following: volatile int * Ptr; then the bug reappears, as the load "*Ptr&quot...
2015 Apr 19
4
inquiry about differences between the tap and the vnet in the virt-manager
...c54:ff:fe84:e362/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:5 errors:0 dropped:0 overruns:0 frame:0 TX packets:114 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:500 RX bytes:670 (670.0 b) TX bytes:13720 (13.3 KiB) both of the methods above seems that the network of guest OS is OK at most of environments, and I can get the attributes of the virtual network device . They are seemed to be the same. about the tap0: [root@localhost ~]# ethtool -i tap0 driver: tun version: 1.6 firmware-version: bus-i...
2015 Apr 20
1
Re: inquiry about differences between the tap and the vnet in the virt-manager
...c54:ff:fe84:e362/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:5 errors:0 dropped:0 overruns:0 frame:0 TX packets:114 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:500 RX bytes:670 (670.0 b) TX bytes:13720 (13.3 KiB) both of the methods above seems that the network of guest OS is OK at most of environments, and I can get the attributes of the virtual network device . They are seemed to be the same. about the tap0: [root@localhost ~]# ethtool -i tap0 driver: tun version: 1.6 firmware-version: bus-i...
2007 Aug 26
0
3 commits - libswfdec/swfdec_as_context.c player/swfplay.c test/trace
...13624 => Hello World +13632 => Hello World +13640 => Hello World +13648 => Hello World +13656 => Hello World +13664 => Hello World +13672 => Hello World +13680 => Hello World +13688 => Hello World +13696 => Hello World +13704 => Hello World +13712 => Hello World +13720 => Hello World +13728 => Hello World +13736 => Hello World +13744 => Hello World +13752 => Hello World +13760 => Hello World +13768 => Hello World +13776 => Hello World +13784 => Hello World +13792 => Hello World +13800 => Hello World +13808 => Hello World +13816...
2008 Jan 01
0
4 commits - libswfdec/swfdec_as_internal.h libswfdec/swfdec_as_object.c libswfdec/swfdec_as_types.c libswfdec/swfdec_as_types.h libswfdec/swfdec_sprite_movie_as.c test/trace
...3616: 0, 0 +13624: , +13624: 0, 0 +13632: , +13632: 0, 0 +13640: , +13640: 0, 0 +13648: , +13648: 0, 0 +13656: , +13656: 0, 0 +13664: , +13664: 0, 0 +13672: , +13672: 0, 0 +13680: , +13680: 0, 0 +13688: , +13688: 0, 0 +13696: , +13696: 0, 0 +13704: , +13704: 0, 0 +13712: , +13712: 0, 0 +13720: , +13720: 0, 0 +13728: , +13728: 0, 0 +13736: , +13736: 0, 0 +13744: , +13744: 0, 0 +13752: , +13752: 0, 0 +13760: , +13760: 0, 0 +13768: , +13768: 0, 0 +13776: , +13776: 0, 0 +13784: , +13784: 0, 0 +13792: , +13792: 0, 0 +13800: , +13800: 0, 0 +13808: , +13808: 0, 0 +13816: , +13816:...
2007 Sep 18
0
[LLVMdev] 2.1 Pre-Release Available (testers needed)
...n/a MultiSource/Benchmarks/Olden/mst/mst | 0.0360 5928 0.0360 * 0.0360 | 0.52 0.51 0.54 * 0.60 | 1.02 0.96 n/a n/a MultiSource/Benchmarks/Olden/perimeter/perimeter | 0.0520 13720 0.1000 * 0.0880 | 0.80 0.58 0.63 * 0.72 | 1.38 1.27 n/a n/a MultiSource/Benchmarks/Olden/power/power | 0.0560 11228 0.0480 * 0.0360 | 6.88 7.59 4.21 * 4.34...
2017 Mar 29
5
NT_STATUS_NO_LOGON_SERVERS after removing a DC and WERR_BADFILE when trying to remove broken DC
Situation: Trying to upgrade Samba from 4.1 to 4.5 without disruption too much by adding new DCs and demoting old ones. After bringing online the first 4.5 DC, I ran `demote --remove-other-dead-server=` on that DC to remove one of the old 4.1 DCs (held no FSMO roles). That seemed to run fine (the DC had been offline for a few weeks at that point and I didn't want to restore it just for
2008 Jan 23
7
[PATCH 0/2] dm-band: The I/O bandwidth controller: Overview
Hi everyone, I'm happy to announce that I've implemented a Block I/O bandwidth controller. The controller is designed to be of use in a cgroup or virtual machine environment. The current approach is that the controller is implemented as a device-mapper driver. What's dm-band all about? ======================== Dm-band is an I/O bandwidth controller implemented as a device-mapper
2008 Jan 23
7
[PATCH 0/2] dm-band: The I/O bandwidth controller: Overview
Hi everyone, I'm happy to announce that I've implemented a Block I/O bandwidth controller. The controller is designed to be of use in a cgroup or virtual machine environment. The current approach is that the controller is implemented as a device-mapper driver. What's dm-band all about? ======================== Dm-band is an I/O bandwidth controller implemented as a device-mapper
2008 Jan 10
3
Samba problem connecting
Installed Samba 3.0.10 via 'pkgadd' on Solaris 2.6 - previously running Samba 2.2.8. It starts up and SWAT confirms that it is running and I am using the same smb.conf but I am unable to connect to a share via PC. Message "\\s080 is not accessible. You might not have permission to use this network resource. Contact the administrator of this server to find out if you have access
2007 Sep 15
22
[LLVMdev] 2.1 Pre-Release Available (testers needed)
LLVMers, The 2.1 pre-release (version 1) is available for testing: http://llvm.org/prereleases/2.1/version1/ I'm looking for members of the LLVM community to test the 2.1 release. There are 2 ways you can help: 1) Download llvm-2.1, llvm-test-2.1, and the appropriate llvm-gcc4.0 binary. Run "make check" and the full llvm-test suite (make TEST=nightly report). 2) Download