Displaying 20 results from an estimated 413 matches for "1322".
Did you mean:
1,22
2007 Jun 17
19
[Bug 1322] New: pam_end() is not called if authentication fails, which breaks pam-abl
http://bugzilla.mindrot.org/show_bug.cgi?id=1322
Summary: pam_end() is not called if authentication fails, which
breaks pam-abl
Product: Portable OpenSSH
Version: 4.6p1
Platform: Other
URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=405041
OS/Version: Lin...
2009 Jan 28
1
Scope of variable
I have this extension:
exten => 1322,1,Answer()
exten => 1322,n,Set(CfMC_AMDValue="NotChecked")
exten => 1322,n,GotoIf($["${CfMC_DoAMD}" != "Yes"]?NOAMD)
exten => 1322,n,AMD()
exten => 1322,n,Set(CfMC_AMDValue = ${AMDSTATUS})
exten => 1322,n(NOAMD),Wait(1)
exten => 1322,n,UserEvent(E1322...
2019 Feb 13
1
[Bug 1322] New: Accepting in an nfqueue breaks multi-chain processing
https://bugzilla.netfilter.org/show_bug.cgi?id=1322
Bug ID: 1322
Summary: Accepting in an nfqueue breaks multi-chain processing
Product: nftables
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Co...
2012 Jul 14
1
changing the x axis labels in a time series plot
...e series graph, from its
default numbering (which starts at 1 and increments by 1), to values I have
in another vector, "Year". It has to be a time series graph, I don't want
to have to use a scatter plot because there are many lines to draw.
Example:
z = cbind(1:100,100:1); Year = 1322:1421
windows()
plot.ts(z[,1:2],,"single", xaxt="n", xlab="")
axis(1,at=Year)
This doesn't work, not any of the permutations I've tried with the various
arguments to plot.ts and axis.
Thanks for any help.
[[alternative HTML version deleted]]
2017 Oct 09
8
Regular expression help
...re may be multiple words on a line (separated by spaces).? The
a, b, and c strings can contain non-space, non-slash characters. I'd
like to use gsub() to extract the c strings (which should be empty if
there are none).
A real example is
"f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587"
which I'd like to transform to
" 587 587 587 587"
Another real example is
"f 1067 28680 24462"
which should transform to "?? ".
I've tried a few different regexprs, but am unable to find a way to say
"transform words by deleting everything...
2002 Feb 23
1
wish: postscript-device - LaTeX ec-fonts (PR#1322)
Full_Name: Christof Boeckler
Version: 1.4.1
OS: linux 2.4, x86
Submission from: (NULL) (217.233.100.207)
Hello R-gurus,
I have a little contribution to the wishlist:
Since (?) I am using the more recent ec-font-family with LaTeX instead of the
original cm-family, I did not manage to use this new feature about using (TeX's)
cm-fonts for PS-output. I got the following errors when trying to
2004 Dec 07
4
Problems with samba password file
Hi,
On a Fedora box we installed Samba 3.0.8pre1-0.pre1.3
Accidently we've removed the samba password file. Now, we can't get access
to Samba anymore. Is there a way to re-create it ? Or do we have to
reinstall Samba ?
BTW: We have no backup ....
cheers,
Andy
2017 Oct 09
0
Regular expression help
> x <- "f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587"
> gsub("(^| *)([^/ ]*/?){0,2}", "\\1", x)
[1] " 587 587 587 587"
> y <- "aa aa/ aa/bb aa/bb/ aa/bb/cc aa/bb/cc/ aa/bb/cc/dd aa/bb/cc/dd/"
> gsub("(^| *)([^/ ]*/?){0,2}", "\\1", y)
[1] " cc cc/ cc/dd cc/dd/&quo...
2017 Oct 09
1
Regular expression help
...]*/?){0,2}", with the first "*" replaced by "+" would be a bit
better.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Mon, Oct 9, 2017 at 8:50 AM, William Dunlap <wdunlap at tibco.com> wrote:
> > x <- "f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587"
> > gsub("(^| *)([^/ ]*/?){0,2}", "\\1", x)
> [1] " 587 587 587 587"
> > y <- "aa aa/ aa/bb aa/bb/ aa/bb/cc aa/bb/cc/ aa/bb/cc/dd aa/bb/cc/dd/"
> > gsub("(^| *)([^/ ]*/?){0,2}", "\\1", y)
> [1] "...
2017 Oct 10
0
Regular expression help
How about this (I'm showing it as a pipe because it's easier to read
that way):
library(magrittr)
"f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587" %>%
? strsplit(' ') %>%
? unlist %>%
? sub('^[^/]*/*','',.) %>%
? sub('^[^/]*/*','',.) %>%
? paste(collapse = ' ')
Georges Monette
--
Georges Monette, PhD P.Stat.(SSC) | Associate Professor. Faculty of Science, Departm...
2011 May 27
2
[PATCH 1/1] ocfs2: Bugfix for hard readonly mount
This patch fixes few bugs when do hard readonly mount.
see detail: http://oss.oracle.com/bugzilla/show_bug.cgi?id=1322
Signed-off-by: Tiger Yang <tiger.yang at oracle.com>
---
fs/ocfs2/dlmglue.c | 21 +++++++++++++++------
fs/ocfs2/super.c | 3 ++-
2 files changed, 17 insertions(+), 7 deletions(-)
diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c
index 7642d7c..da103f5 100644
--- a/fs/ocfs2/dlmgl...
2007 Aug 15
0
[Bug 1308] pam handling change breaks pam_abl module
...CC| |dtucker at zip.com.au
--- Comment #8 from Darren Tucker <dtucker at zip.com.au> 2007-08-15 23:29:08 ---
Patch id #1314 runs the risk of reintroducing the signal handler
vulnerability fixed in 4.4 (CVE-2006-5051). There's a better patch in
bug #1322 so I'm closing this one in favour of #1322. Please add any
additional comments there.
*** This bug has been marked as a duplicate of bug 1322 ***
--
Configure bugmail: http://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching...
2008 Apr 03
0
[Bug 1305] Bugs intended to be fixed in 4.6p2
...ller <djm at mindrot.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
Bug 1305 depends on bug 1322, which changed state.
Bug 1322 Summary: pam_end() is not called if authentication fails, which breaks pam-abl
http://bugzilla.mindrot.org/show_bug.cgi?id=1322
What |Old Value |New Value
------------------------------------------------------------...
2004 Nov 17
2
Profile inaccessable
...mandatory profile, and this particular
user has been set to not roaming back to a local profile via the User
Profiles screen in the computer -> properties page.
--
--
Paul Gienger Office: 701-281-1884
Applied Engineering Inc.
Systems Architect Fax: 701-281-1322
URL: www.ae-solutions.com mailto: pgienger@ae-solutions.com
2017 Oct 09
0
Regular expression help
...line (separated by spaces). The
> a, b, and c strings can contain non-space, non-slash characters. I'd
> like to use gsub() to extract the c strings (which should be empty if
> there are none).
>
> A real example is
>
> "f 147/1315/587 2820/1320/587 3624/1321/587 1852/1322/587"
>
> which I'd like to transform to
>
> " 587 587 587 587"
>
> Another real example is
>
> "f 1067 28680 24462"
>
> which should transform to " ".
>
> I've tried a few different regexprs, but am unable to find a wa...
2023 Dec 08
0
[centos/centos.org] branch main updated: Add post about Connect 2024, remove old posts
...elow
commit 22e55e6b8d076aac3150d67243db046469503bbd
Author: Shaun McCance <shaunm at redhat.com>
AuthorDate: Fri Dec 8 10:09:55 2023 -0500
Add post about Connect 2024, remove old posts
---
...2-02-1321-reminder-centos-linux-is-eol-on-december-31st.md | 10 ----------
_posts/2021-12-02-1322-october-centos-dojo-videos.md | 8 --------
_posts/2022-02-09-convert-to-stream-8.md | 11 -----------
_posts/2022-02-09-fosdem-centos-dojo-videos.md | 8 --------
_posts/2022-06-10-devconf-dojo.md | 7 -------
_posts/2022-...
2005 Mar 04
9
strange behaviour with rulesets
...i,
i have a strange situtation. i try to connect to my machine with ssh and
the packets are dropped but i have at the top of my rules an accept.
the configuration looks like:
rules-file:
-----------
ACCEPT net fw tcp 22 -
TCPDUMP-log:
------------
12:16:08.153934 84.153.98.30.1322 > [my-destination-machine].ssh: S
3717288415:3717288415(0) win 64240 <mss 1412,nop,nop,sackOK> (DF) [tos
0x10]
SYSLOG-log:
-----------
Mar 4 12:16:08 [kernel] Shorewall:logdrop:DROP:IN=ppp0 OUT= MAC=
SRC=84.153.98.30 DST=[my-destination-machine] LEN=48 TOS=0x10 PREC=0x00
TTL=125 ID=59988...
2004 Oct 10
3
Disable roaming profiles per user
...hat these
people can use as many machines as they want and/or rebuild as often as
they need and not have to remember to reset to 'local' each time.
--
Paul Gienger Office: 701-281-1884
Applied Engineering Inc.
Information Systems Consultant Fax: 701-281-1322
URL: www.ae-solutions.com mailto: pgienger@ae-solutions.com
2018 Dec 01
2
Restrict global constructors to base ISA
...-pipe -c
cryptlib.cpp
Here's the source file. I don't believe it has global data provided by
us: https://github.com/weidai11/cryptopp/blob/master/chacha_avx.cpp
==========
(lldb) r v
...
* thread #1: tid = 0x19f83aa, 0x000000010016ec49
cryptest.exe`_GLOBAL__sub_I_chacha_avx.cpp at string:1322, queue =
'com.apple.main-thread', stop reason = EXC_BAD_INSTRUCTION
(code=EXC_I386_INVOP, subcode=0x0)
frame #0: 0x000000010016ec49
cryptest.exe`_GLOBAL__sub_I_chacha_avx.cpp at string:1322
1319 {
1320 size_type (&__a)[__n_words] = __r_.first().__r.__words;...
2006 Aug 03
2
Connectiion to UPS via SNMP
...t following output in /var/log/syslog:
...
Aug 3 08:40:44 localhost upsd[1321]: Connected to UPS [snmp]: snmp-ups-136.8.4.14
Aug 3 08:40:44 localhost snmp-ups[1320]: Startup successful
Aug 3 08:40:44 localhost upsd[1321]: Data for UPS [snmp] is stale - check driver
Aug 3 08:40:44 localhost upsd[1322]: Startup successful
Aug 3 08:40:44 localhost upsmon[1324]: Startup successful
Aug 3 08:40:44 localhost upsmon[1325]: UPS [snmp@136.8.4.14]: connect failed: Connection failure: Connection refused
Aug 3 08:40:44 localhost upsmon[1325]: Communications with UPS snmp@136.8.4.14 lost
Aug 3 08:40:49...