similar to: Share problem !

Displaying 20 results from an estimated 8000 matches similar to: "Share problem !"

2001 Mar 08
1
Sambady help me Samba !!
Hi guys , samba newbie here ! I have worked hard at trying to get samba run .. but heck!.. it doesn't ! I can see the linux server in my network neighbourhood .. on clicking on it .. I get the user/password box. I entered the user(xyz) password(abc) , and it says ... "account is not authorised to login from this station" I have added user 'xyz' using the smbadduser
2020 May 27
2
By default clang does not emit trap insn
looks like experimental/work in progress support: https://reviews.llvm.org/D62731 On Tue, May 26, 2020 at 10:39 PM kamlesh kumar via llvm-dev < llvm-dev at lists.llvm.org> wrote: > > > On Wed, May 27, 2020 at 11:06 AM kamlesh kumar <kamleshbhalui at gmail.com> > wrote: > >> Hi Devs, >> going by this link https://llvm.org/docs/LangRef.html#floatenv >>
2018 Mar 11
1
Implement a single updater class for Dominators
Hi Devs, I am Kamlesh Kumar,CS undergraduate at NIT Manipur,India. I have been programming in C/C++ for more than 3 year. I have gone through various LLVM Core libraries and it's tool as well implemented it in my project .I am well aware of core concepts related to LLVM and it's code base, I have read three books available at Safari Online Books 1. LLVM - Essentials 2. LLVM - Cookbook 3.
2008 Dec 08
1
About adf.test
Dear sir, I am a new user of R statistical package. I want to perform adf.test(augmented dickey fuller test), which packages I need to install in order to perform it. I am getting following message on my monitor. *x<-rnorm(1000) > adf.test(x) Error: could not find function "adf.test" *I am waiting for your response. Kamlesh Kumar. -- Kamlesh Kumar Appt. No. - QQ420,
2019 Dec 10
2
aarch64 do not generate debug info for tls var
GCC's behavior matches LLVM. so should we leave it? On Tue, Dec 10, 2019 at 12:54 PM David Blaikie <dblaikie at gmail.com> wrote: > What does GCC do? > > On Mon, Dec 9, 2019 at 10:25 PM kamlesh kumar via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Hi Devs, >> >> consider below testcase >> $cat test.c >> __thread int mtls=1;
2020 Mar 25
2
__builtin_thread_pointer for RISC-V
Hi Devs, since risc-v has a register $tp which is thread pointer. is it possible to have __builtin_thread_pointer for RISC-V? I am not sure what could be corresponding instructions? ./kamlesh
2017 Nov 06
0
Multiple CSV files in different sheets of an Excel file
> On Nov 6, 2017, at 3:23 AM, Kamlesh Khollam <khollam.kamlesh33 at gmail.com> wrote: > > Hi Team, > I am tried "WriteXLS" package for merging 2 csv files. R script runs > successfully but does not create CSVmerge file. > > Appreciate our help. > > ?Best Regards, > Kamlesh Khollam? Hi, You appear to be replying to a thread from January of 2016, or
2015 Apr 17
4
Sudden printer errors
I'm using Samba 4.2.0 and cups 2.0.2. I have had the same print server and config since the early 3.x days and have never had an issue. Now suddenly, any new printers added to cups can no longer be installed in Windows. XP clients give a generic "Windows cannot connect to the printer. Either the printer name was typed incorrectly, or the specified priner has lost its connection to the
2008 May 21
1
R help needed
Dear Sir/Madam, I have tried to upload data in R but it showing some error in command window. It's should be noted that I am using Mac version of R. I am using Mac-text for writing my data. I am getting following message on the command window. > source("/Users/kamleshkumar/Desktop/DS1.txt") Error in source("/Users/kamleshkumar/Desktop/DS1.txt") :
2020 Jan 21
4
aarch64 does not emit DW_AT_Location
Hi Devs, debug info emitted by llvm does not contain DW_AT_Location for Formal parameter if it is an aggregate like below case 1) aggregate contain more than 4 homogeneous and size more than 128 bits i.e. typedef struct{ int a,b,c,d,e; }mystruct; void foo(mystruct ms){ } 2) aggregate contain hetrogeneous type and size more than 128 bits. i.e. typedef struct{ int a,b; float c,d,e; }mystruct; void
2013 Feb 26
1
set time zone in sip debug logs
Hello, Please suggest the way to change the time zone in below sip debug logs. INVITE sip:xxxxxxxxxx at xxx.xxx.xxx.xxx:5060 SIP/2.0Via: SIP/2.0/UDP xxx.xxx.xxx.xxx:5060;branch=z9hG4bK7bbd9;rportMax-Forwards: 70From: "xxxxxxxxxx" <sip:xxxxxxxxxx at xxx.xxx.xxx.xxx>;tag=as23a29r59To: <sip:xxxxxxxxxx at xxx.xxx.xxx.xxx:5060>Contact: <sip:xxxxxxxxxx at
2017 Nov 06
3
Multiple CSV files in different sheets of an Excel file
Hi Team, I am tried "WriteXLS" package for merging 2 csv files. R script runs successfully but does not create CSVmerge file. Appreciate our help. ?Best Regards, Kamlesh Khollam? [[alternative HTML version deleted]]
2019 Dec 10
2
aarch64 do not generate debug info for tls var
Hi Devs, consider below testcase $cat test.c __thread int mtls=1; void foo(){ mtls++; } it emits this debug info for mtls 0x0000002a: DW_TAG_variable DW_AT_name ("mtls") DW_AT_type (0x00000035 "int") DW_AT_external (true) DW_AT_decl_file ("test.c") DW_AT_decl_line (1)
2011 Dec 23
1
execute command just after Dial()
Hello, I'm using AGI scripting with asterisk and need to execute certain commands just after Dial(). But once dial command is executed, further commands/instructions are ignored. $agi->exec("Dial","SIP/100"); $dialstatus = $agi -> get_variable("DIALSTATUS"); if($dialstatus[data]=="ANSWER") { do something.......
2013 Jul 25
2
limitation on number of contexts in extensions.conf
Hello Asterisk version 1.6.2.9. I want to know is there any limitation on number of contexts or including external file (#include <filename>) which can be defined in extensions.conf. When I try to include around 40 external files, my dialplan doen't get reloaded. Regards, Kamlesh -------------- next part -------------- An HTML attachment was scrubbed... URL:
2019 Oct 31
3
llvm emits unoptimized code
Hi Devs, Consider testcase here https://godbolt.org/z/qHZzqw When optimization is O1 or above it produces unoptimized code because it calls __tls_get_address in loops. While with optimization disabled It produce single call to __tls_get_address outside of loop. is this a missed optimization by llvm? ./Kamlesh
2020 May 27
4
default behavior or
Hi Devs, going by this link https://llvm.org/docs/LangRef.html#floatenv it says that floating point operation does not have side effects by defaults. but when compile a test case i.e. cat a.c float foo(float a, float b) { return a+b; } $clang a.c -O2 -S -emit-llvm emit ir like: $cat a.ll --------------------------------------- ; ModuleID = 'a.c' source_filename = "a.c" target
2013 May 27
1
G.729 codec in pass-thru mode
Hello, Trying to use g729 in pass-thru mode. Call flow: SIP IP Phone (G.729)-->Asterisk(1.6.2.9)--->SIP Trunk to ITSP(G.729) When using G.729, call is not getting connected. Below is the extract from CLI. == Using SIP RTP CoS mark 5 -- Executing [12127773456 at default:1] AGI("SIP/100-00000000", "call.php") in new stack -- Launched AGI Script
2003 May 21
3
Problems accessing shares on Samba from Win2000
Hi, I?ve got the following problem: When accessing a share on a Samba server from Win2000 or Windows XP this fails. The access is denied. All the shares are visible within ...\Network Neighbourhood\Workgroup\Chs-server.chs.\share1 ...\Network Neighbourhood\Workgroup\Chs-server.chs.\share2 ... ...\Network Neighbourhood\Workgroup\Chs-server.chs.\Drucker und Faxdienste Besides this I see the
2011 Dec 14
1
get start-time of all active calls
Hello, asterisk version 1.6.2.7 I want to get the start time of all active calls from console, could you please let me know the best way to get it. thanks, Kamlesh -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20111214/b462516a/attachment.htm>