search for: l1083

Displaying 8 results from an estimated 8 matches for "l1083".

Did you mean: 1083
2016 Apr 23
2
StreamLocal forwarding
...= "Address already in use" >From this, it appears that there is no attempt to unlink the socket if it already exists, as would be expected from this code (https://github.com/openssh/openssh-portable/blob/7de4b03a6e4071d454b72927ffaf52949fa34545/misc.c#L1083): sock = socket(PF_UNIX, SOCK_STREAM, 0); if (sock < 0) { saved_errno = errno; error("socket: %.100s", strerror(errno)); errno = saved_errno; return -1; } if (unlink_first == 1) { if (unlink(path) != 0 && errno != ENOENT) error("unlink(%s): %.100s", path, strerror(er...
2016 Jul 12
3
Xapian 1.4.0 released
On Mon, Jul 11, 2016 at 02:02:56PM -0700, Kevin Duraj wrote: > You are saying that when I search for "delve Xapian 1.4" on Google, a > company worth of 491 Billion of Dollars and you saying that their top > of the search result has nothing to do with Xapian. > > https://www.google.com/search?q=xapian+delve&ie=utf-8&oe=utf-8#q=delve+xapian+1.4 Well, I'm not
2016 May 03
2
StreamLocal forwarding
...gt; already in use" > > > > From this, it appears that there is no attempt to unlink the socket if > > it already exists, as would be expected from this code > > ( > > https://github.com/openssh/openssh-portable/blob/7de4b03a6e4071d454b72927ffaf52949fa34545/misc.c#L1083 > > ): > > > > sock = socket(PF_UNIX, SOCK_STREAM, 0); > > if (sock < 0) { > > saved_errno = errno; > > error("socket: %.100s", strerror(errno)); > > errno = saved_errno; > > return -1; > > } > > if (unlink_first == 1) { >...
2017 Sep 19
0
Bug or feature? polling frequency = (pollfreq + pollinterval)
...ing of each line, and you should be able to follow the various Quick and Full update cycles. You could comment out some of the mapping lines in the mge_hid2nut table if you don't want to waste time reading certain values: https://github.com/networkupstools/nut/blob/v2.7.4/drivers/mge-hid.c#L1083 Note that there are some duplicates - your UPS will not have every one of those HID PDC usages (4th column).
2016 Jul 23
0
Xapian 1.4.0 released
...ame.size() > MAX_SAFE_TERM_LENGTH) throw Xapian::InvalidArgumentError("Term too long (> " STRINGIZE(MAX_SAFE_TERM_LENGTH) "): " + tname); Reference: https://github.com/xapian/xapian/blob/e3692bff7b7c25c8e09536889d5884d033199f36/xapian-core/backends/glass/glass_database.cc#L1083-L1084 On Tue, Jul 12, 2016 at 10:13 AM, James Aylett <james-xapian at tartarus.org> wrote: > On Mon, Jul 11, 2016 at 02:02:56PM -0700, Kevin Duraj wrote: > >> You are saying that when I search for "delve Xapian 1.4" on Google, a >> company worth of 491 Billion of...
2017 Sep 19
2
Bug or feature? polling frequency = (pollfreq + pollinterval)
Hi, Context of my question: * OS name and version, Synology's distributed Linux: Linux DS 3.10.102 #15152 SMP Fri Sep 1 11:15:03 CST 2017 x86_64 GNU/Linux * exact NUT version, Tricky... the installed tools display: $ /usr/sbin/upsd -V Network UPS Tools upsd DSM6-1-15114-170518 while the one I've compiled, and its not running, displays: $ /opt/sbin/upsd -V Network UPS Tools upsd
2015 Jul 31
0
[LLVMdev] [libcxx] How to update libcxx.llvm.org to use Sphinx generated doc?
...the buildbot master [1] https://github.com/llvm-mirror/llvm/blob/master/cmake/modules/AddSphinxTarget.cmake [2] https://github.com/llvm-mirror/zorg/blob/master/zorg/buildbot/builders/SphinxDocsBuilder.py [3] https://github.com/llvm-mirror/zorg/blob/master/buildbot/osuosl/master/config/builders.py#L1083 Hope that helps. Thanks, Dan.
2015 Jul 20
4
[LLVMdev] [libcxx] How to update libcxx.llvm.org to use Sphinx generated doc?
Hi All, I'm working on rewriting libc++'s documentation using Sphinx. Hopefully it will be easier to write and maintain documentation using restructured text and not HTML. What steps do I need to take to get libc++ a Sphinx builder and get the required changes made for libcxx.llvm.org? /Eric