search for: pep

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

Did you mean: ptep
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 = TC...
2002 Jul 15
1
Winbind problems when mapping shares
...s 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 user:/home/xtuser:/bin/bash PEP+XTUSER:x:11240:10255:E56157 | 062-0000:/home/xtuser/xtuser:/bin/false However I get the following error trying to map to Samba shares: [2002/07/15 17:51:04, 1] smbd/password.c:pass_check_smb(545) Couldn't find user 'pep+xtuser' in passdb. I have xtuser defined to Linux. I noticed t...
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 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 + AC_MSG_CHECKING([for Python extension suffix (PEP-3149)]) + if test -z "$PYTHON_EXT_SUFFIX"; then + python_ext_suffix=`$PYTHON -c "import sysconfig; \ + print (sysconfig.get_config_var('EXT_SUFFIX') or sysconfig.get_config_var('SO'))"` + PYTHON...
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 theref...
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 the efibootmgr know > about it. > > I already have a oneliner to do this manually, but it is...
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 netwo...
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: R...
2012 Mar 28
0
[LLVMdev] GSoC 2012 Proposal: Python bindings for LLVM
...I list above may not be complete. I will cover more changes during the project. *2. Python 3 support* When adding support for Python 3, we also should pay attention to the C API changes between Python 2.x and Python 3. Here I list some of them. 1. Extension module initialization and finalization (PEP 3121) [2] In Python 3, the module initialization routines should look like this: *PyObject *PyInit_<modulename>()* When creating a module, a struct PyModuleDef should be passed as a parameter. 2. Making PyObject_HEAD conform to standard C (PEP 3123) [3] Some macros are added, for instance, *P...
2023 Nov 06
2
New syntax for positional-only function parameters?
...ction (X, FUN, ...) In practice this pattern avoids many collisions, but it cannot guarantee that they won't happen. It would seem to me preferrable to avoid the root cause of the issue altogether by having the language feature of declaring function parameters as positional-only. Python's PEP 570 discusses the same issue in the context of Python [1]. Concretely, borrowing syntax from Python, the proposal would be to have something along the lines of: g <- function(x, f, /, ...) match.call() g(1, f, x = 2) == quote(g(1, f, x = 2)) Rather than the current situation of:...
2020 Oct 13
2
[RFC] Python 2 / Python 3 status, final step(s)
...UTABLE, and the main dependency (llvm-build) is currently being removed in D89142. The shebangs have already been harmonized in D83857: some mention /usr/bin/env python, some mention /usr/bin/env python3, and none mention python2 anymore. It would be great to have all script use the same shebang, PEP394 [1] makes it (relatively) clear that in our case, explicitly requiring python3 is the way to go. So basically, next step would be to update the documentation, remove the Python2 fallback in root CMakeLists.txt and update shebangs. Anyone seeing an issue with that approach? I'm still a bit...
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 rele...
2012 Jan 27
3
Grabbing Column and Row titles
...ple matrix with 1's or 0's depending > on how strong the correlation is. From here I would like to go into the > matrix and take all the 1's and match them with their row/column titles. > So for each 1 I have two stock symblos. For example: > MMM ACE ABT ANF HD PEP K GOOG BIDU JNJ > MMM 0 1 0 0 0 1 0 0 0 > 0 > ACE 1 0 0 0 0 0 0 0 > 0 1 > ABT 0 0 0 0 0 1 0 0 > 0 1 &g...
2024 Mar 26
1
core & cosine schema items in Samba AD DC user object?
...uld care to update samba-tool to do this ;-) > > Maybe these attributes can be supplemented with some Windows tool > (RSAT/ ADUC), I haven't tried it yet. > > What I just tried - add these attributes to AD with ldbmodify and a > pre- prepared LDIF file (as: > > dn: CN=Pep?k,OU=dob??,OU=kamar?di,DC=ad,DC=hanzlici,DC=cz > changetype: modify > add: l > l: Plze? > > ) - and it works well, thus problem is solved. > > And another finding - adding a non-existent attribute such as > Locality-Name ( > > dn: CN=Pep?k,OU=dob??,OU=kamar?di,DC=ad...
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()
...r(usr)) + par(usr = c(0, 1, 0, 1)) + r <- abs(cor(x, y)) + txt <- format(c(r, 0.123456789), digits=digits)[1] + txt <- paste(prefix, txt, sep="") + if(missing(cex.cor)) cex.cor <- 0.8/strwidth(txt) + text(0.5, 0.5, txt, cex = cex.cor * r) + } > pairs(pep[9:18],cex.labels = 0.6, pch = 21, bg = c("red", "blue", "green", > "yellow","brown")[unclass(pep$taxonomic.position)], lower.panel=panel.cor) thanks, Herwig -- View this message in context: http://www.nabble.com/Error-%3A-unused-arguments-in-...
2024 Mar 26
1
core & cosine schema items in Samba AD DC user object?
...script to add them, unless you > would care to update samba-tool to do this ;-) Maybe these attributes can be supplemented with some Windows tool (RSAT/ ADUC), I haven't tried it yet. What I just tried - add these attributes to AD with ldbmodify and a pre- prepared LDIF file (as: dn: CN=Pep?k,OU=dob??,OU=kamar?di,DC=ad,DC=hanzlici,DC=cz changetype: modify add: l l: Plze? ) - and it works well, thus problem is solved. And another finding - adding a non-existent attribute such as Locality-Name ( dn: CN=Pep?k,OU=dob??,OU=kamar?di,DC=ad,DC=hanzlici,DC=cz changetype: modify add: Localit...
2008 Oct 02
3
Problem with read.table()
.... Could it be the problem? If that is the case, I still don't understand why I have more columns that column names. Could anyone help me with that? Thank you very much! Joan-Josep Vallbé Institute of Law and Technology Political Science Department Autonomous University of Barcelona (UAB) pep.vallbe@uab.es [[alternative HTML version deleted]]