Displaying 7 results from an estimated 7 matches for "wpass".
Did you mean:
pass
2003 Apr 02
1
smbclient 2.2.8 gives NT_STATUS_LOGON_FAILURE
...In this case - according to what I learned from our
Win-Admin - the logon name must have the form:
domain\user
I wrote a small shell script - and it succeeds.
The sample-code (6.6.6.6 is a win2k-server):
#!/bin/ksh
WSHARE="//6.6.6.6/myshare"
WUSER=MYDOMAIN\\domuser
WPASS=mepass
$WRDIR=me2dir
/usr/local/samba/bin/smbclient $WSHARE $WPASS -U $WUSER -d 2 -c "cd
$WRDIR; dir"
And now the really strange part: when I issue the SAME command
(parameters) from a PERL script, from the plain command line or
even from within the same script with a slightly d...
2019 Oct 02
2
vectorize.enable
...aviour is slightly changed and we could get a diagnostic we didn't get before:
warning: loop not vectorized: the optimizer was unable to
perform the requested transformation; the transformation might be disabled or
specified as part of an unsupported transformation ordering
[-Wpass-failed=transform-warning]
For the example given in revert 858a1ae, in both cases before and after my commit, the loop vectoriser was bailing because "Not vectorizing: The exiting block is not the loop latch". But the difference is that vectorize_width() now implies vectorize(enable), and...
2011 Nov 30
1
openldap authentication
...the ldap schema
as depicted below
# fxmulder at nsab.us, gwis
dn: cn=fxmulder at nsab.us,dc=gwis
objectClass: top
objectClass: person
objectClass: posixAccount
accountid: 65534
uidNumber: 65534
gidNumber: 65534
active: 1
cn: fxmulder at nsab.us
loginShell: /usr/sbin/nologin
sn: nsab.us
wenable: 1
wpass: testpass
whome: /www/nsab.us/nsab.us/fx/fxmulder
I don't suppose there is a similar way to map attributes with samba?
Thanks,
James Devine
2019 Oct 02
2
vectorize.enable
...ed and we could get a diagnostic we didn't get before:
>
> warning: loop not vectorized: the optimizer was unable to
> perform the requested transformation; the transformation might be disabled or
> specified as part of an unsupported transformation ordering
> [-Wpass-failed=transform-warning]
>
> For the example given in revert 858a1ae, in both cases before and after my commit, the loop vectoriser was bailing because "Not vectorizing: The exiting block is not the loop latch".
The source looks like a straightforward canonical loop. What pass
tra...
2016 Mar 02
4
Proposal for function vectorization and loop vectorization with function calls
...^
loopvec.c:13:3: remark: loop not vectorized: use -Rpass-analysis=loop-vectorize
for more info (Force=true) [-Rpass-missed=loop-vectorize]
for (k = 0; k < 4096; k++) {
^
loopvec.c:13:3: warning: loop not vectorized: failed explicitly specified
loop vectorization [-Wpass-failed]
1 warning generated.
New functionality of Vectorization
==================================
New functionalities and enhancements are proposed to address the issues
stated above which include: a) Vectorize a function annotated by the
programmer using OpenMP* SIMD extensions; b) Enhance LLVM...
2016 Mar 02
2
Proposal for function vectorization and loop vectorization with function calls
...13:3: remark: loop not vectorized: use -Rpass-analysis=loop-vectorize
> for more info (Force=true) [-Rpass-missed=loop-vectorize] for (k
> = 0; k < 4096; k++) { ^
> loopvec.c:13:3: warning: loop not vectorized: failed explicitly specified
> loop vectorization [-Wpass-failed]
> 1 warning generated.
>
>
> New functionality of Vectorization
> ==================================
> New functionalities and enhancements are proposed to address the
> issues stated above which include: a) Vectorize a function annotated
> by the programmer usin...
2016 Mar 02
5
RFC: Implementing the Swift calling convention in LLVM and Clang
> On Mar 2, 2016, at 1:33 AM, Renato Golin <renato.golin at linaro.org> wrote:
>
> On 2 March 2016 at 01:14, John McCall via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
>> Hi, all.
>> - We sometimes want to return more values in registers than the convention normally does, and we want to be able to use both integer and floating-point registers. For