similar to: [Bug 1288] ssh-add on Cygwin -- can't access ssh-agent socket

Displaying 20 results from an estimated 100 matches similar to: "[Bug 1288] ssh-add on Cygwin -- can't access ssh-agent socket"

2016 Mar 09
0
mkdir-dup test flapping
On Wed, Mar 09, 2016 at 04:11:05PM +1300, Douglas Bagnall wrote: > We looked at this some more, and Andrew seemed to understand and wrote > the attached patch. Great catch you guys ! Thanks for taking a look, I've been busy on other stuff for the past few weeks. Let me go through the issue and proposed code *really* carefully :-). The open code can be really tricky (as you've
2024 Apr 08
0
[Announce] Samba 4.19.6 Available for Download
Release Announcements --------------------- This is the latest stable release of the Samba 4.19 release series. Changes since 4.19.5 -------------------- o? Ralph Boehme <slow at samba.org> ?? * BUG 15527: fd_handle_destructor() panics within an smbd_smb2_close() if ???? vfs_stat_fsp() fails in fd_close(). o? Guenther Deschner <gd at samba.org> ?? * BUG 15588: samba-gpupdate:
2024 Apr 08
0
[Announce] Samba 4.19.6 Available for Download
Release Announcements --------------------- This is the latest stable release of the Samba 4.19 release series. Changes since 4.19.5 -------------------- o? Ralph Boehme <slow at samba.org> ?? * BUG 15527: fd_handle_destructor() panics within an smbd_smb2_close() if ???? vfs_stat_fsp() fails in fd_close(). o? Guenther Deschner <gd at samba.org> ?? * BUG 15588: samba-gpupdate:
2011 Aug 13
1
samba 3.6.0 core dump
Hello, Any thoughts on what is causing this? Aug 13 12:42:00 box smbd[29073]: [2011/08/13 12:42:00.489676, 0] lib/fault.c:47(fault_report) Aug 13 12:42:00 box smbd[29073]: =============================================================== Aug 13 12:42:00 box smbd[29073]: [2011/08/13 12:42:00.490368, 0] lib/fault.c:48(fault_report) Aug 13 12:42:00 box smbd[29073]: INTERNAL ERROR: Signal 11
2016 Mar 09
4
mkdir-dup test flapping
We looked at this some more, and Andrew seemed to understand and wrote the attached patch. > > We got the logs by forcing smbd to run with -d10 by patching > file_server/fileserver.c. The issue appears to be in this call: 3638 /* Ensure there was no race condition. */ 3639 if (!check_same_stat(&smb_dname->st, &fsp->fsp_name->st)) { 3640
2024 Mar 27
0
[Announce] Samba 4.20.0 Available for Download
Release Announcements --------------------- This is the first stable release of the Samba 4.20 release series. Please read the release notes carefully before upgrading. NEW FEATURES/CHANGES ==================== New Minimum MIT Krb5 version for Samba AD Domain Controller ----------------------------------------------------------- Samba now requires MIT 1.21 when built against a system MIT Krb5
2024 Mar 27
0
[Announce] Samba 4.20.0 Available for Download
Release Announcements --------------------- This is the first stable release of the Samba 4.20 release series. Please read the release notes carefully before upgrading. NEW FEATURES/CHANGES ==================== New Minimum MIT Krb5 version for Samba AD Domain Controller ----------------------------------------------------------- Samba now requires MIT 1.21 when built against a system MIT Krb5
2018 Feb 27
2
tinc 1.1: missing PONG
Here's a diff to call WSAWaitForMultipleEvents() repeatedly to check for events other than the first one returned. I've also added a map of io_t to events[] index so avoid the need for splay_search(). The value of event_count will change if a callback adds an event so we need to handle that. I've added a generation number to the splay tree head that gets incremented by io_del().
2019 Dec 20
0
Wine release 5.0-rc2
The Wine development release 5.0-rc2 is now available. What's new in this release (see below for details): - Bug fixes only, we are in code freeze. The source is available from the following locations: https://dl.winehq.org/wine/source/5.0/wine-5.0-rc2.tar.xz http://mirrors.ibiblio.org/wine/source/5.0/wine-5.0-rc2.tar.xz Binary packages for various distributions will be available
2008 Oct 17
0
Wine release 1.0.1
The Wine maintenance release 1.0.1 is now available. This is a maintenance release from the 1.0 stable branch. It contains only translation updates and small bug fixes. The source is available from the following locations: http://ibiblio.org/pub/linux/system/emulators/wine/wine-1.0.1.tar.bz2 http://prdownloads.sourceforge.net/wine/wine-1.0.1.tar.bz2 Binary packages for various
2017 Dec 04
2
ggtern and bquote...
>>>>> peter dalgaard <pdalgd at gmail.com> >>>>> on Mon, 4 Dec 2017 14:55:19 +0100 writes: >> On 4 Dec 2017, at 11:58 , Levent TERLEMEZ via R-help >> <r-help at r-project.org> wrote: >> >> Dear Users, >> >> What is the proper way to write symbol, superscript, >> subscript in
2017 Dec 04
0
YNT: ggtern and bquote...
reading ?plotmath you might notice that "_" isn't the propper syntax for subscripts. This will work: ggtern(data=x11,aes(A,B,C,xend = c(0.7,.00,0.7),yend = c(.30,.50,.0),zend =c(.0,.50,0.3)))+ geom_point()+ theme_showarrows()+geom_segment(size=.5)+ geom_text_viewport(x=c(.45,.27,.37),y=c(.32,.29,.22),label=c("P[a]","P[b]","P[c]"), parse=TRUE)
2017 Dec 04
1
ggtern and bquote...
D'oh! Thanks for pointing this out. I blame caffeine depletion at the time... -pd > On 4 Dec 2017, at 15:48 , Eik Vettorazzi <E.Vettorazzi at uke.de> wrote: > > reading ?plotmath you might notice that "_" isn't the propper syntax for > subscripts. This will work: > > ggtern(data=x11,aes(A,B,C,xend = c(0.7,.00,0.7),yend = > c(.30,.50,.0),zend
2017 Dec 04
1
YNT: ggtern and bquote...
Hi, My example code is this; x11<-data.frame(A=c(.6,.6,.6),B=c(.20,.20,.20),C=c(0.20,.20,.20)) ggtern(data=x11,aes(A,B,C,xend = c(0.7,.00,0.7),yend = c(.30,.50,.0),zend =c(.0,.50,0.3)))+ geom_point()+ theme_showarrows()+geom_segment(size=.5)+ geom_text_viewport(x=c(.45,.27,.37),y=c(.32,.29,.22),label=as.expression("P_a","P_b","P_c"))
2020 Sep 25
0
Wine release 5.18
The Wine development release 5.18 is now available. What's new in this release (see below for details): - Vulkan shader compilation using the new vkd3d-shader library. - USER32 library converted to PE. - Console no longer requires the curses library. - Support for display modes with various orientations. - A number of syntax fixes in the WIDL compiler. - Non-recursive makefiles.
2017 Dec 04
0
ggtern and bquote...
> On 4 Dec 2017, at 11:58 , Levent TERLEMEZ via R-help <r-help at r-project.org> wrote: > > Dear Users, > > What is the proper way to write symbol, superscript, subscript in ggtern/ggplot? I tried every given example, every possible features of ggplot but couldn?t achived. I just want to write P_a, sigma^2, etc, would you please advise me about this problem. Did you try
2017 Nov 22
0
ccomp Composition and ggtern plot...
I have no clue what this package is for, but reading the help page for the ccomp function tells you that it returns a numeric vector or matrix. How do YOU want to display information from this numeric vector? That will determine how you would put it into a data frame. -- Sent from my phone. Please excuse my brevity. On November 22, 2017 3:13:01 AM PST, Levent TERLEMEZ via R-help <r-help at
2006 Mar 31
1
adding texts to plots and a problem....
Hello, I have a problem with adding texts to my plots: The code is /plot(dates(as.character(tam[,tkolon])),d[,i],ylab=names(d[i]),ylim=c(galt,gust),type="l") abline(orta,0,lty=3,col=3) text(//length(d[,i]//),0.025+(orta),expression(mu),col=3) abline(orta+l2,0,lty=4,col=2) text(length(d[,i]),0.025+(orta+l2),expression(+2*sigma),col=2) abline(orta-l2,0,lty=4,col=2)
2011 Oct 31
2
assignment operator <- does not work in a function...
Dear Users, I have a little problem with assignment operator. It's working from command prompt but does not work same as in the command prompt in the function. Am I missing or forgetting something? The function is (tried on both 2.13.1 and 2.13.2) as below using arules and arulseViz packages: >kuralfonk function() { require(arules) require(arulesViz)
2006 Mar 01
0
Agents and Chanspy
I would like to use chanspy and restrict it to Agent channels. Then setup it on an extension for the supervisor to monitor people taking calls from the queue and making outbound calls. Is there a way to use the agent channel with outbound calls? I don't want to record the calls(which AgentMonitorOutgoing seems to do), just kinda flag them so that they can be spyed upon. Any kind odd