Displaying 20 results from an estimated 400 matches similar to: "request"
2023 Feb 15
2
[libnbd PATCH v3 02/29] generator/C.ml: use space consistently in func. and func.-like macro calls
Apply the ideas in the previous patch to the C-language bindings
generator.
Signed-off-by: Laszlo Ersek <lersek at redhat.com>
---
generator/C.ml | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/generator/C.ml b/generator/C.ml
index f9171996dde0..07c924c48ccf 100644
--- a/generator/C.ml
+++ b/generator/C.ml
@@ -250,15 +250,15 @@ let
*)
2006 Jan 17
0
samba 3.0.21 PDC with LDAP problems
Dear all
I have a system with samba PDC with LDAP, samba version being 3.0.21 and
openLDAP version 2.2.13
i have another linux system with samba version being 3.0.10 which is a
member server to samba pdc.
i have configured nss_ldap, and ldap.conf configured on the member server
pointing to my ldap server on samba pdc
The samba PDC LDAP is configured for simple bind .
1 )i have been getting the
2006 Jan 20
0
samba wbinfo -U "error Looking up domain users"
Dear all
I have a system with samba PDC with LDAP, samba version being 3.0.21 and
openLDAP version 2.2.13
i have another linux system with samba version being 3.0.10 which is a
member server to samba pdc.
i have configured nss_ldap, and ldap.conf configured on the member server
pointing to my ldap server on samba pdc
The samba PDC LDAP is configured for simple bind .
1 )i have been getting
2011 Sep 17
1
How to install 64bit softwares in Wine
Hi, I am using Wine1.3.28 in linux 11.04 (64bit OS)
I installed Wine along with all the 32bit libraries and I read that using 64bit windows apps are still experimental in Wine.
I found this page which might help http://wiki.winehq.org/Wine64
But, since I am new to linux and all, I am sort of confused about what I'm actually supposed to do..
First of all how do I know if I am using an
2004 Mar 29
1
Interpreting knn Results
Maybe you should show your colleague how to access help pages in R? Right
in ?knn, it says:
prob: If this is true, the proportion of the votes for the winning
class are returned as attribute 'prob'.
so 1.0 mean all three NNs are of the `winning'; i.e., predicted, class, and
0.66667 means 2 out of the 3 NNs are of the winning class, etc.
Andy
> From: Ko-Kang
2015 Sep 17
1
[PATCH v2 1/1] extlinux: fix memory leak
On Fri, Sep 11, 2015 at 10:12 AM, Paulo Alcantara via Syslinux
<syslinux at zytor.com> wrote:
> On Thu, 10 Sep 2015 10:55:04 +0300
> Imran Zaman via Syslinux <syslinux at zytor.com> wrote:
>
>> devname is put on heap for all cases to avoid memory
>> leak, and ease of use in future as well
>>
>> Signed-off-by: Imran Zaman <imran.zaman at intel.com>
2006 Mar 09
1
HCLUST subroutine question -- FORTRAN DO loops
Shown below is most of the FORTRAN subroutine named HCLUST.
My question concerns the DO loop labeled as '10'. What happened to its
CONTINUE statement? I will assume that after FLAG(I)=.TRUE. is executed that
control returns to DO 10 I=1,N. Am I correct?
Dave
----------------------------
C Initializations
C
DO 10 I=1,N
C We do not initialize MEMBR in order to be able to
2016 Apr 16
1
A Neural Network question
People,
I thought I needed to have some familiarity with NNs for some of my
current (non-profit, brain-related) projects so I started looking at
various programming environments including R and I got this working:
http://gekkoquant.com/2012/05/26/neural-networks-with-r-simple-example
however I needed pictures to help understand what was going on and then
I found this:
2007 Jan 25
1
LDAP Timeout
Hi all
I have a running samba 3.0.21c with OpenLDAP 2.3 configured as PDC, and also
one BDC with same version of samba and openldap.
It was working fine far the past few months. There are about 400 users on
the domain and 600 groups.
There 2 file servers [Domain Member server]( linux system RHEL 4.0 update3
with samba version 3.0.21c joined to the domain) which provides shares. All
the users get
2012 Jul 31
2
Remove a complete row as per the Range in a Matrix
Hi,
Here i have a Matrix
MyMatrix <-
Name Age
--------- -------
ANTONY 27
IMRAN 30
RAJ 22
NAHAS 32
GEO 42
and here i have an array with Minimum and Maximum values.
MinMaxArray <- data.frame(MIN = 25,MAX=35)
MIN MAX
------ --------
25 35
2015 Sep 11
0
[PATCH v2 1/1] extlinux: fix memory leak
On Thu, 10 Sep 2015 10:55:04 +0300
Imran Zaman via Syslinux <syslinux at zytor.com> wrote:
> devname is put on heap for all cases to avoid memory
> leak, and ease of use in future as well
>
> Signed-off-by: Imran Zaman <imran.zaman at intel.com>
Reviewed-by: Paulo Alcantara <pcacjr at zytor.com>
Thanks,
Paulo
> ---
> extlinux/main.c | 44
2015 Sep 09
1
[PATCH v1 1/1] extlinux: fix file descriptors leak
file descriptors are closed when not in use
Signed-off-by: Imran Zaman <imran.zaman at intel.com>
---
extlinux/main.c | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/extlinux/main.c b/extlinux/main.c
index 09740bd..55a1495 100644
--- a/extlinux/main.c
+++ b/extlinux/main.c
@@ -580,6 +580,7 @@ int ext2_fat_install_file(const char *path, int devfd, struct
2015 Sep 10
2
[PATCH v2 1/1] extlinux: fix memory leak
devname is put on heap for all cases to avoid memory
leak, and ease of use in future as well
Signed-off-by: Imran Zaman <imran.zaman at intel.com>
---
extlinux/main.c | 44 ++++++++++++++++++++++++++++++--------------
1 file changed, 30 insertions(+), 14 deletions(-)
diff --git a/extlinux/main.c b/extlinux/main.c
index 55a1495..b7cdf92 100644
--- a/extlinux/main.c
+++ b/extlinux/main.c
@@
2015 Sep 09
0
[PATCH v1 1/1] extlinux: fix file descriptors leak
file descriptors are closed when not in use
Signed-off-by: Imran Zaman <imran.zaman at intel.com>
---
extlinux/main.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/extlinux/main.c b/extlinux/main.c
index 09740bd..bc7ded3 100644
--- a/extlinux/main.c
+++ b/extlinux/main.c
@@ -580,6 +580,7 @@ int ext2_fat_install_file(const char *path, int devfd, struct stat *rst)
goto
2004 Sep 02
3
digitnetworks card issues?
Hi,
I've purchased two x100p clones, and when I try accessing a line
from asterisk with something like this:
exten => _1NXXNXXXXXX,1,Dial(Zap/2/{$EXTEN})
(is that only supposed to put you on channel 2 or actually dial the #
for you?)
but I first hear noise, then a dial tone, but as soon as I start dialing
numbers I get feedback and noise, and the call doesn't go through.
Any
2004 Aug 20
1
x100p won't answer
Hi,
I just got two digium x100p clones and installed asterisk on fedora
core 2 which took some tweaking. After getting asterisk up I installed
the zaptel stuff - then modprobed zaptel, wcfxs (for the fxo cards),
which worked fine. ztcfg is showing two channels configured, but when I
start asterisk and do show channels, i see no active channels.
zapata.conf has:
signalling = fxs_ks
2004 Aug 22
3
zap show channels - no such command
Hi,
in response to a previous posting regarding getting the x100p to
work, I was told to run "zap show channels," but when i do i get "no
such command 'zap'"
There was a previous posting on this, but the guy never posted the solution.
thanks,
Imran
2009 Jul 26
1
DeltaCopy puts unwanted TAB character into rsync command
Imran Hussain writes Tue Dec 6 19:54:06 GMT 2005
> I have written an rsync wrapper for Windows called DeltaCopy.
> (http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp). It is
> written in Borland C++ Builder and source is also available on the
> net. Let me know if someone has any suggestions/comments.
Hello Imran, I have a Windows PC running Vista Family Premium
Edition SP2. I
2015 Sep 09
1
[PATCH v1 1/1] extlinux: fix memory leak
devname is put on heap for all cases to avoid memory
leak, and ease of use in future as well
Signed-off-by: Imran Zaman <imran.zaman at intel.com>
---
extlinux/main.c | 48 ++++++++++++++++++++++++++++++++----------------
1 file changed, 32 insertions(+), 16 deletions(-)
diff --git a/extlinux/main.c b/extlinux/main.c
index 55a1495..7bb7443 100644
--- a/extlinux/main.c
+++
2004 Aug 29
2
zaptel configuration
Hi,
I've been trying to get my zaptel x100p cards working for the past
week now. this is what I've done:
installed asterisk:
make clean
make linux 26 (for fedora core 2)
make install
installed zaptel:
make clean
make
make install
did a modprobe zaptel, and wcfxo
got this in /var/log/messages:
PCI: found IRQ 11 for device 0000:00:0f.0
wcfxo: daa mode is 'FCC'
found a