Displaying 2 results from an estimated 2 matches for "wasno".
Did you mean:
wasn
2003 Jun 12
1
smbpasswd not attempting to use LDAP
...ng to find an passdb backend to match guest (guest)
Found pdb backend guest
pdb backend guest has a valid init
getsampwnam (smbpasswd): search by name: testuser
startsmbfilepwent_internal: opening file /etc/samba/smbpasswd
startsmbfilepwent_internal: unable to open file /etc/samba/smbpasswd.
Error wasNo such file or directory
unable to open passdb database.
Finding user testuser
Trying _Get_Pwnam(), username as lowercase is testuser
Get_Pwnam_internals did find user [testuser]!
pdb_set_username: setting username testuser, was
element 11 -> now SET
pdb_set_full_name: setting full name Dereks Tes...
2019 Jan 24
3
[RFC] Adding thread group semantics to LangRef (motivated by GPUs)
I don't see how this would fix the continue vs. nested loop problem I
explained earlier. That is, how would this prevent turning:
for (...) {
ballot();
if (... /* non-uniform */) continue;
}
into
for (...) {
do {
ballot();
} while (... /* non-uniform */);
}
and vice versa? Note that there's no duplication going on here, and
the single-threaded flow of control is