Displaying 20 results from an estimated 5000 matches similar to: "Can't Cange password"
2003 Dec 01
0
No subject
"This error can occur if the drive letter you are mapping with a net use
command is already mapped in the user's properties."
part of the JSI FAQ at http://www.jsifaq.com/reghack.htm
TO fix it, try disconnecting the drives before mapping new ones. This may
or may not be the best way to fix it, but in my scripts, I use this:
NET USE M: /delete /yes >nul
NET USE M:
2002 Sep 09
1
'system error 85 has occurred'
Hi,
When I am logging from the windows NT /2000/XP clients, I am getting
this error message while running the Login script.
the message which i am getting is 'system error 85 has occurred' .I am
generating the login script on the fly when user is loggin
in. How can I solve this error.
Pl any one help me.
with warm regards,
Rajesh
Rajesh Prakasan
Sr. Data Centre Executive
DIREM
Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal error has occurred. Please se
2013 Apr 23
3
Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal error has occurred. Please se
Hi guys
when i''m doing bundle install i got this type of error
whats this?
please help me.
rajesh@rajesh:~/workspace/Cybermedia_Test$ bundle install
Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal
error has occurred. Please see the Bundler
troubleshooting documentation at http://bit.ly/bundler-issues. Thanks!
2012 Nov 21
2
[LLVMdev] Extended Inline asm with double data type crashes clang
Thanks Rafael,
Hello All,
Could anyone please comment, which part in selectiondag need to be
understood/modified to fix this.
Regards,
Rajesh
On Wed, Nov 21, 2012 at 2:38 AM, Rafael EspĂndola <
rafael.espindola at gmail.com> wrote:
> I reported http://llvm.org/pr14393 to track it.
>
> On 20 November 2012 05:18, rajesh viswabramana
> <viswabramana.rajesh at
2012 Nov 20
0
[LLVMdev] Extended Inline asm with double data type crashes clang
I reported http://llvm.org/pr14393 to track it.
On 20 November 2012 05:18, rajesh viswabramana
<viswabramana.rajesh at gmail.com> wrote:
> Hi,
>
> Clang crashes when below snippet of code is compiled (used latest svn
> version)
>
> double func1()
> {
> double x ;
> asm ( "" : "=r"(x) : "0"(x) );
> return x;
> }
>
2012 Nov 22
0
[LLVMdev] Extended Inline asm with double data type crashes clang
Hi all,
I tried same code on gcc for arm(hard float),
double f2 ()
{
double x = 10.0;
asm ("" : "=r" (x) : "0" (x));
return x;
}
> arm-linux-gnueabi-gcc -S -mhard-float pr39058.c -O2
Generates proper code,
mov r3, #0
mov r2, #0
movt r3, 16420
fmdrr d0, r2, r3
bx lr
But llvm crashes, If data type is "double",
2002 Jan 28
4
commands to see Entire Configuration
Hi all,
This may sound strange, but i have a question..
is there any commands which we can use to see the entire TC configurations..
iam new to this TC ,
thanks,
Rajesh
Rajesh Revuru,
Res:105 smith lane,#33,
Syracuse-NY 13210.
Ph.315-422-8908(R)
Ph.315-443-9120(O)
---------------------------------
Do You Yahoo!?
Yahoo! Auctions Great stuff seeking new owners! Bid now!
2003 Aug 12
4
rsync problem
Hi all,
I've installed rsync-2.5.6 on a sun box (solaris 8). When I run rsync using the
command
rsync -a ssh /opt/local/pkgs/httpd/htdocs/ root@remotemachine:/mnt/
I get the error
rsync: connection unexpectedly closed (0 bytes read so far)
rsync error: error in rsync protocol data stream (code 12) at io.c(165)
What could be the reason? Any help would be appreciated.
Thanks,
Rajesh.
2019 Mar 12
2
Query about JIT
Hi Alexey,
Thank you very much for your detailed reply, will look into the resources
indicated. I'd like to avoid C++ if possible, let me see how it goes.
Regards,
Rajesh Jayaprakash
On Tue 12 Mar, 2019, 6:35 PM Sachkov, Alexey, <alexey.sachkov at intel.com>
wrote:
> Hi Rajesh,
>
> If I understand correctly, libclang is a C interface to Clang features,
> not LLVM. That
2013 Apr 30
1
wats this???
Hi all,
I DONT KNOW WHAT IS THIS WHEN I RUN SERVER OR CONSOLE
ITS COMMING. PLEASE ANYBODY TELME WHATS PROBLEM WHATS SOLLUTION
rajesh@rajesh:~/workspace/apl$ ruby script/console
Loading development environment (Rails 2.3.2)
NOTE: Gem.source_index is deprecated, use Specification. It will be removed
on or after 2011-11-01.
Gem.source_index called from
2001 Oct 15
2
kernel 2.4.12 and ext3 patch
Hi,
I have just joined this list. Sorry for this newbie question.
Is the patch for Linus's kernel 2.4.12 be expected to be released soon ?
Thanks in advance.
Peace
--
Rajesh
http://www.symonds.net/~rajesh/ ***** Powered By: Debian GNU/Linux
Kernel 2.4.10(ext3)
:
[Linux One Stanza Tip] From : <bish@nde.vsnl.net.in>
LOST #028 -**< Sub : Graphic file
2013 Jun 19
2
[LLVMdev] ARM struct byval size > 64 triggers failure
I missed that the testing case is returning a struct.
You are right in VARegSaveSize.
For callee:
sub sp, sp, #16
push {r11, lr}
mov r11, sp
sub sp, sp, #8
str r3, [r11, #20]
str r2, [r11, #16]
str r1, [r11, #12]
ldr r1, [r11, #76]
The beginning of the input struct @ sp_at_entry - 16 - 8 + 12 = sp_at_entry -12
# of leftover bytes 67-12 = 55
r11+76 is @ sp_at_entry - 24 + 76 = sp_at_entry
2019 Jul 10
2
Using bytecode version of std::sort for JIT generated data type
Do you have some pointers on how to do it? Take a file like sort.cc above
and generate a JIT module. Does llc
<https://llvm.org/docs/CommandGuide/llc.html> help with this?
What library function can we use to load an existing IR module file into my
JIT runtime module to compile them together?
On Tue, Jul 9, 2019 at 4:17 PM David Blaikie <dblaikie at gmail.com> wrote:
> Ah, no, sort
2013 Jun 20
1
[LLVMdev] ARM struct byval size > 64 triggers failure
> - "since ABI says the stack pointer needs to be 8 byte aligned at function entry point" (taken from Manman's reply)
> What will be considered as entry point here?
> Is it place of SP Adjustments "sub sp, sp, #16"
> (Or) Is it place of first user instruction(end of prologue) "ldr r2, .LCPI0_0"
Eight byte stack alignment is a
2002 Jul 25
3
Documentation / boolean fix for oplocks = command
In the documentation the "oplocks = yes" option is give in an example, as
the default for this parameter. However, I needed to turn oplocks off, and
so assumed that the command "oplocks = no" would work. It doesn't, instead I
found that "oplocks = false" does. There needs to be some boolean fixing
done, or at least documentation should reflect this strangeness.
2015 Sep 13
2
concerning dovecot settings for high volume server
thanks very much urban. this was very helpful.
i have around 12500 users spread over 3 independent servers each having around 4000+ users
i am using qmailtoaster, vpopmail, spamassassin and dovecot.
in future i am planning to consolidate all using a HA cluster.
if it is ok with you could you kindly share some information about your email server configuration. if you do not wish to put it on the
2014 Feb 24
0
Cange from Samba 3.0 to samba 3 3.6.6
Hi Folks, I'd like to change from Smaba 3.0.33 to 3.6.6.
Reason: WINDOWS 7 and PDC
Is something to consider when changing (config-Files or so on)?
Have I to uninstall Samba 3.0.33 before or just run an update?
Thx for hints.
Timothy
2019 Jul 09
2
Using bytecode version of std::sort for JIT generated data type
On Mon, Jul 8, 2019 at 4:39 PM David Blaikie <dblaikie at gmail.com> wrote:
> There isn't any magic command for this - you'd have to write some C++
> code/a custom LLVM optimization pass.
>
> Though, that said - perhaps it should just be a runtime parameter where
> you rely on LLVM to inline/optimize things away? You could do some
> relatively smaller code
2012 Nov 20
2
[LLVMdev] Extended Inline asm with double data type crashes clang
Hi,
Clang crashes when below snippet of code is compiled (used latest svn
version)
*double func1()
{
double x ;*
* asm ( "" : "=r"(x) : "0"(x) );
return x;
}*
> *clang -S test1.c*
> *Assertion failed: (PartVT.isInteger() || PartVT == MVT::x86mmx) &&
ValueVT.isInteger() && "Unknown mismatch!", file
2002 May 08
4
losing print driver associations on reboot
Hello all, I've got a strange problem with Samba 2.2.4. I'm able to
associate print drivers to printers (raw queue in cups). My clients are
able to see that the drivers belong to the printers, and they download
them, but as soon as the server reboots, I lose my driver associations
and I need to once again specify a driver on the windows end. The Print
server was an upgrade from Samba