Displaying 20 results from an estimated 9000 matches similar to: "Samba Shares not Refreshing contents"
2004 Oct 04
1
Update: Samba Shares not Refreshing contents
Actually it looks like this problem only affects some workstations.
Could it be my domain policy? (I guess so 'cause only computers logged on to the domain exhibit this behavior)
Anyone ever experienced this?
Omar
-----Original Message-----
From: samba-bounces+omar=idea.com.mx@lists.samba.org [mailto:samba-bounces+omar=idea.com.mx@lists.samba.org] On Behalf Of Omar Casta?eda Acosta
Sent:
2002 Aug 03
0
DFS
Hello List:
I'm currently implementing a 1TB NAS server using linux + samba.
Currently most of the data is hosted in Windows 2000 Servers (which
can't be replaced 'cause some important applications on the company rely
on it), my main concern would be to replicate (maybe load-balancing,
too) all this data to the new server, is there a way for samba to
replicate data? Is somehow
2013 Aug 15
0
[LLVMdev] BranchInst comparison
How could BranchInst be used to insert new branch between two basic blocks
to get result like this example:
br label %if.else
br label %if.then
br i1 %cmp1, label %if.then, label %if.else
Thanks for your help
On 14 August 2013 21:36, Eli Friedman <eli.friedman at gmail.com> wrote:
> Your question isn't clear; please restate what specifically isn't working.
>
> -Eli
2012 Jul 02
1
'init.win' error when installing from source
Dear R People:
I'm installing R 2-.15.1 on a Windows 32 bit machine from source.
I'm getting a strange error about init.win (please see below)
Does this look familiar to anyone, please?
Thanks,
Erin
Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
c:\R\R-2.15.1\src\gnuwin32>make all recommended
make all recommended
make[1]:
2014 Mar 12
1
Shares
Hai,
As I know i could open my shares via domain eg: \\domainc.com\share
I have 2 samba 4.1.5 server and one win2003 DC.
Succesfully made a clustered filesystem so now both servers (except
win2003) can open the shares.
My problem is: i succesfully opened the share yesterday, it worked well one
time but since that i couldnt open it via \\domain.com\share only via
\\dc01\share or \\dc02\share.
2013 Aug 14
0
[LLVMdev] BranchInst comparison
or like this
%cmp4 = icmp eq i32 %rem, 0
br i1 %cmp4, label %if.then5, label %if.else7
On 14 August 2013 20:08, Rasha Omar <rasha.sala7 at gmail.com> wrote:
> Hi All,
>
> How could I use BranchInst to implement for example
> br label %if.else7
> br label %if.then5
> br i1 %cmp4, label %if.then5, label %if.else7
>
> I can use BranchInst for only one
2013 Aug 14
3
[LLVMdev] BranchInst comparison
Your question isn't clear; please restate what specifically isn't working.
-Eli
On Wed, Aug 14, 2013 at 11:57 AM, Rasha Omar <rasha.sala7 at gmail.com> wrote:
> or like this
>
> %cmp4 = icmp eq i32 %rem, 0
>
> br i1 %cmp4, label %if.then5, label %if.else7
>
>
> On 14 August 2013 20:08, Rasha Omar <rasha.sala7 at gmail.com> wrote:
>
>> Hi
2013 Jun 10
0
[LLVMdev] CFG of a function
Hi Rasha,
First, you should not erase that cloned function XD the idea is that your
pass should create that new function, add it to a module (that could be the
same one where the original function is, or another one that you could be
creating if that is the case), and then just let it be: the pass manager
should identify this new function (after your pass returned) and all the
other analysis and
2013 Jun 07
1
[LLVMdev] CFG of a function
But I don't want to map only basic blocks, I need too to map the edges "the
whole CFG of the function"
Save the CFG of the function in another memory address and call it for
example orgCFG and change the CFG by referencing to the orgCFG
Thank you for help and patience
On 6 June 2013 10:59, Alexandru Ionut Diaconescu <
alexandruionutdiaconescu at gmail.com> wrote:
> I
2013 Jun 06
0
[LLVMdev] CFG of a function
I don't use a function for do the mapping, it may be MapValue(). If it does
not work, alias an int identifier for each basic block. Be aware because
basic block cannot have the same name (getName) in the same function, but
they might have the same name being in different functions. Therefore, take
into account the function name as well.
Good luck
On Thu, Jun 6, 2013 at 10:55 AM, Rasha Omar
2013 Jul 31
1
[LLVMdev] Instruction insertion By Module Pass
Thank you for your help
I tried
Instruction* p=&( Bb->front());
Type * Int32Type = IntegerType::getInt32Ty(getGlobalContext());
AllocaInst* newInst = new AllocaInst(Int32Type,"flag", p);
that works well
but I need to store the value of the variable too.
What's the method that could be used to store specific value??
On 30 July 2013 16:01, John Criswell
2012 Mar 31
1
trouble compiling on Windows
Dear R People:
I'm trying to compile R-2.15.0 on a 64 bit Windows machine.
However, I'm getting the following error:
c:\R64\R-2.15.0\src\gnuwin32>set TMPDIR=c:\temp
set TMPDIR=c:\temp
c:\R64\R-2.15.0\src\gnuwin32>make all recommended
make all recommended
make[1]: `MkRules' is up to date.
make[4]: Nothing to be done for `svnonly'.
installing C headers
make[2]: Nothing to
2012 Aug 12
1
trouble compiling R-patched from source on Windows 64 bit
Hello!
I'm trying to install R-patched from source on a Windows 64 bit laptop.
I have installed R-tools 2.16 and set up the jpeg, tiff, and libpng files
Here is the output:
c:\R64\R-patched\src\gnuwin32>make all recommended
make all recommended
make[1]: `MkRules' is up to date.
make[4]: Nothing to be done for `svnonly'.
installing C headers
make[2]: Nothing to be done for
2013 Jun 06
0
[LLVMdev] CFG of a function
Map every basic block from the CFG to a set of integers. The successors
from the CFG can be used to make the edges in your simplified graph. The
pair (Callee,Caller) can link the CFG-s between them in a larger CFG-like.
On Wed, Jun 5, 2013 at 11:03 PM, Rasha Omar <rasha.sala7 at gmail.com> wrote:
> What do you mean by mapping to integers?
>
>
> On 5 June 2013 22:32, Alexandru
2016 May 18
0
Latest R-devel build failing on OS X
Yes, the nightly build is broken in a similar, but different way. See below.
Both seem to be readline related, so Frederick Eaton's patches, which Martin committed yesterday are the likely culprit. I had actually tested them and things seemed to work, but it was on a different machine and not a completely clean build.
-pd
.....
ranlib: file: libR.a(printf.o) has no symbols
gcc
2013 Jul 30
0
[LLVMdev] Instruction insertion By Module Pass
On 7/30/13 7:44 AM, Rasha Omar wrote:
> Hi,
> I need to insert new instruction into every basic block like x=1
> or while loop
> I tried this code, but it doesn't work
>
> Type * Int32Type = IntegerType::getInt32Ty(getGlobalContext());
> AllocaInst* newInst = new AllocaInst(Int32Type,"flag", Bb);
> Bb->getInstList().push_back(newInst);
The problem is
2014 Jan 09
0
Building R on Windows: mkdir of Rtools creates directories with read-only permissions [WEIRD]
This is is an issue that bugged me for a while. I encountered a year
ago (April 2012) when I first tried to build R from source on Windows.
I never figured out what the solution is or if I'm doing something
wrong myself (but I have found a tedious workaround). I'm still on
the same Windows 7 Ultimate machine with NTFS, but I now made sure I
started from scratch so I have a completely
2011 Sep 11
2
[LLVMdev] LLVM 2.9 Fails to Compile some CPU2006 Benchmarks on X86
Hi,
We are using LLVM 2.9 (with the llvm-gcc front end) to compile and run the SPEC CPU2006 benchmarks on x86.
We are compiling and running the benchmarks on a an Intel Xeon E5540 processor running Ubuntu 10.10 (64-bit version).
For the native x86-64 target, we are using the following command-line arguments:
-O3 -march=core2 -mtune=core2
and are getting compile-time errors on the gamess and
2005 Oct 25
0
Shares/connection disappears (bug?!)
Hi
Im running Samba3 fileserver on Debian Sarge as a menber of a Ms win2003
AD. The samba-server gets it users/groups from the win2003 and hos the
users homefolder, a groupshare and a common share. But sometimes when the
users logs in they cant see any shares on the samba, exept the default
home (which the cant enter). I even tried sittinng with two workstations,
where one could see and use the
2004 Apr 27
0
Can't access shares from Windows Clients (Win2003 AD & Samba3 as Member Server)
This is my first venture into the world of Samba 3. I have a Win2003 AD
domain in native mode (no Win2000, NT4 domain controllers.)
My samba server successfully joined the domain. The problem I'm having is
when I try to access shares on the samba server from a windows client, I get
a Username/Password prompt. Giving my AD username/password doesn't work.
Tried all variations of my