search for: peps

Displaying 20 results from an estimated 167 matches for "peps".

Did you mean: deps
2010 Jan 21
0
Samba/Winbind 3.4.4 on AIX 5.3 TL 10 does not retrieve ANY User's Secondary Groups
...53.readline.rte 6.1.0.0 COMMITTED GNU readline 6.1 pware53.samba.rte 3.4.4.0 COMMITTED Samba 3.4.4 pware53.sudo.rte 1.7.2.1 COMMITTED sudo 1.7.2p1 pware53.zlib.rte 1.2.3.0 COMMITTED zlib 1.2.3 Here is the smb.conf : [global] workgroup = PEPS realm = PEPS.LOCAL server string = PEPS Security IAM security = ads ; use kerberos keytab = true load printers = no log file = /var/log/samba/%m.log client use spnego = yes max log size = 50 log level = 5 socket options = TCP...
2002 Jul 15
1
Winbind problems when mapping shares
I have just installed Samba 2.2.5. I am using Winbind and have changed the following in /etc/nsswitch.conf. passwd: files winbind group: files winbind I successfully joined a PDC domain. When I list files, I see that groups are being resolved from winbind. I have userid xtuser defined to Linux. I see the following: ibm9672:/home # getent passwd | grep xtuser xtuser:x:11240:11763:test
2009 Aug 28
6
Google's R Style Guide
Perhaps most of you have already seen this? http://google-styleguide.googlecode.com/svn/trunk/google-r-style.html Comments/Critiques? Thanks, Esmail ps: Reminds me of PEP 8 for Python http://www.python.org/dev/peps/pep-0008/ Maybe not that surprising since Python is also one of the main languages used by Google.
2013 Jun 03
0
[PATCH] python: Build extension with PEP-3149 compliant suffix if defined.
--- configure.ac | 9 +++++++++ python/Makefile.am | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ea403c3..00ef507 100644 --- a/configure.ac +++ b/configure.ac @@ -1163,6 +1163,14 @@ AS_IF([test "x$enable_python" != "xno"],[ AC_MSG_RESULT([$PYTHON_INSTALLDIR]) fi +
2014 Sep 07
1
Bug#703586: Bug#703586: Xen fails to boot Linux dom0 under UEFI
I?ll explain what?s happening first, and list the steps after that. First: pep is short for the Xen target x86_64-pep. It?s a target you can enable when configuring Xen to create an EFI binary. What is happening with Xen on UEFI via Grub is that it doesn?t give the kernel any info on the ACPI root pointer. Basically, this means that Linux won?t be able to do ACPI, and therefore a ton of hardware
2014 Sep 07
0
Bug#703586: Bug#703586: Xen fails to boot Linux dom0 under UEFI
On Sun, 2014-09-07 at 00:02 +0200, John Keates wrote: > How do I assist with getting this in for Jessie? > > I have this working in a fairly easy setup, it basically only requires > the pep target to be on for debian?s Xen package, What is "pep"? > and a tiny bit of infrastructure to get xen.efi, vmlinuz, an initrd > and a xen.cfg on to the ESP partition and letting
2005 Jun 28
0
Need current interface queue length for network interfaces
I have developed a TCP accelerator (TCP PEP) to improve the performance of TCP based applications over satellite, RF, and other challlanged environments. Among other things, the TCP PEP assumes a known quantity of bandwidth has been dedicated to the PEP. Thus the TCP PEP can essentially emit data at line rate and not self congest the network. I am trying to port this application to use PPP (and
2018 Mar 14
2
samba-tool error just after samba 4.8.0 install
Ok, for what i understand, this is a compatibility issue with python 2.6. This seems to be in relation with Dict Comprehensions (https://www.python.org/dev/peps/pep-0274/). So yet, samba 4.8 cannot run on any rhel 6 like distribution. Was it intended ? Christophe Borivant ----- Mail original ----- De: "samba" <samba at lists.samba.org> À: "samba" <samba at lists.samba.org> Envoyé: Mercredi 14 Mars 2018 15:31:26 Objet: Re...
2012 Mar 28
0
[LLVMdev] GSoC 2012 Proposal: Python bindings for LLVM
...o improve compatibility with SWIG, which has been applied on the trunk. *Biography* Name: Baozeng Ding University: Institute of Software, Chinese Academy of Science Email: sploving1 at gmail.com IRC name: sploving *References* [1]. http://code.google.com/p/llvm-py/ [2]. http://www.python.org/dev/peps/pep-3121/ [3]. http://www.python.org/dev/peps/pep-3123/ [4]. http://www.python.org/dev/peps/pep-0332/ [5]. http://code.google.com/p/google-summer-of-code-2009-swig/downloads/list [6]. http://forge.scilab.org/index.php/p/epfs/ *Appendix* *llvm-py Implementation * Here I give a small example to sh...
2023 Nov 06
2
New syntax for positional-only function parameters?
...x = 2) == quote(g(1, f, x = 2)) Rather than the current situation of: g <- function(x, f, ...) match.call() g(1, f, x = 2) == quote(g(x = 2, f = 1, f)) Given the prevalence of the issue, is this something that you would see as worth pursuing for R? Best regards, Mikko [1]: https://peps.python.org/pep-0570/
2020 Oct 13
2
[RFC] Python 2 / Python 3 status, final step(s)
...tion, remove the Python2 fallback in root CMakeLists.txt and update shebangs. Anyone seeing an issue with that approach? I'm still a bit worried about buildbots still running on py2 (?) Serge [0] http://lists.llvm.org/pipermail/llvm-dev/2020-January/138730.html [1] https://www.python.org/dev/peps/pep-0394/
2011 Aug 19
0
[LLVMdev] git Status
The Python language recently migrated from SVN to Mercurial as their version control system. As part of this effort, a detailed migration plan was written: http://www.python.org/dev/peps/pep-0385/ Now, I'm not proposing that we favor using Mercurial over Git*. But I would suggest that perhaps you could use the Python migration plan as a template for LLVM's migration. (*I use both Mercurial and Git on a regular basis. Although I think Git's branching and history model...
2011 Aug 19
1
[LLVMdev] git Status
On Aug 19, 2011, at 2:36 PM, Talin wrote: > The Python language recently migrated from SVN to Mercurial as their version control system. As part of this effort, a detailed migration plan was written: > > http://www.python.org/dev/peps/pep-0385/ Hi guys, Just to be absolutely clear here, Mercurial is not being considered. -Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110819/448902f2/attachment.html>
2018 Mar 15
1
samba-tool error just after samba 4.8.0 install
...Re: [Samba] samba-tool error just after samba 4.8.0 install On Wed, 2018-03-14 at 16:21 +0100, Christophe Borivant via samba wrote: > Ok, for what i understand, this is a compatibility issue with python 2.6. > This seems to be in relation with Dict Comprehensions (https://www.python.org/dev/peps/pep-0274/). > > So yet, samba 4.8 cannot run on any rhel 6 like distribution. > > Was it intended ? > > Christophe Borivant I don't think it was intentional, but it is showing the increasing cost of maintaining Samba's compatibility with a version of python first relea...
2012 Jan 27
3
Grabbing Column and Row titles
Please use dput() to post your example matrix. Rambler1 wrote > > I have run into a problem in my code. What I want to accomplish is this: > I have a user input stock symbols into a list and from there I run the > quantmod package to get historical data. I compute the correlation matrix > and then turn that matrix into a simple matrix with 1's or 0's depending > on
2024 Mar 26
1
core & cosine schema items in Samba AD DC user object?
On Tue, 26 Mar 2024 14:50:41 +0100 Franta Hanzl?k <franta at hanzlici.cz> wrote: > On Tue, 26 Mar 2024 08:01:27 +0000 > Rowland Penny via samba <samba at lists.samba.org> wrote: > > > On Tue, 26 Mar 2024 02:57:51 +0100 > > Franta Hanzl?k via samba <samba at lists.samba.org> wrote: > > > > > Please, it is possible (perhaps with some Samba
2010 Aug 22
1
Difficulty compiling 4.0.0alpha11 on RHEL 5, "Py_ssize_t" undeclared in net.c
...8.000000000 -0500 +++ samba-4.0.0alpha11/source4/utils/net/net.c 2010-08-22 11:44:59.000000000 -0400 @@ -52,6 +52,15 @@ #include <Python.h> #include "scripting/python/modules.h" +/* Py_ssize_t for old Pythons */ +/* This code is as recommended by: */ +/* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */ +#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) +typedef int Py_ssize_t; +# define PY_SSIZE_T_MAX INT_MAX +# define PY_SSIZE_T_MIN INT_MIN +#endif + static PyObject *py_tuple_from_argv(int argc, const char *argv[]) { PyObject *l;
2009 Jan 05
1
Error : unused arguments in pairs()
Hi there, I am just starting in R and this might be a very basic question. I applied one on the examples of pairs() to my own data. The examples shows scatter plots on one side of the matrix and the correlation coefficients on the other which works well. I then modified it slightly because I want different colors in the plots. Now i am getting the error of unused arguments, because the color
2024 Mar 26
1
core & cosine schema items in Samba AD DC user object?
On Tue, 26 Mar 2024 08:01:27 +0000 Rowland Penny via samba <samba at lists.samba.org> wrote: > On Tue, 26 Mar 2024 02:57:51 +0100 > Franta Hanzl?k via samba <samba at lists.samba.org> wrote: > > > Please, it is possible (perhaps with some Samba schema extension?) to > > have items as 'c' (countryName), 'l' (localityName), 'l' > >
2008 Oct 02
3
Problem with read.table()
Hello everybody, I'm a new user and I'm trying to use read.table with a tab delimited file but the system tells me (i) that there are more columns than column names, and (ii) that headers and col.names are of different lengths. I have already checked my variable names and there's no blank spaces. However, some variables have quite long names such as