Displaying 7 results from an estimated 7 matches for "szh".
Did you mean:
sz
2013 Feb 03
0
[LLVMdev] [Polly]
Dear all,
Yesterday, from the customer's code I observed relatively simple case,
where Polly is unable to detect parallelizable outer loop. Consider two
versions of Fortran routine:
1)
subroutine filter(H, szh, X, szx, Y, szy)
implicit none
integer(kind=IKIND), intent(in) :: szh, szx, szy
real(kind=RKIND), intent(in) :: H(szh), X(szx)
real(kind=RKIND), intent(out) :: Y(szy)
integer(kind=IKIND) :: i, j, i1, i2
integer, parameter :: rkind = RKIND
do i = 1, szy
Y(i) = 0.0_rkind
do j...
2002 Jun 06
4
Linux and Printing via smbprint
...we know/tried:
wagner:~ # smbclient -L //PS652D8F -N
added interface ip=10.0.0.10 bcast=10.0.0.255 nmask=255.255.255.0
Got a positive name query response from 10.0.0.40 ( 10.0.0.40 )
Sharename Type Comment
--------- ---- -------
Printer1 Printer SZH-Chopin
Printer2 Printer SZH-Chopin 3
IPC$ IPC
wagner:~ # echo -en "\rHallo\r\f" | smbclient "//PS652D8F/Printer1" "" -c
'print -' -N
added interface ip=10.0.0.10 bcast=10.0.0.255 nmask=255.255.255.0
Got a positive name query r...
2013 Feb 03
2
[LLVMdev] [Polly] Parallelizing outer loop containing inner reduction loop
...ry Mikushin <dmitry at kernelgen.org>
> Dear all,
>
> Yesterday, from the customer's code I observed relatively simple case,
> where Polly is unable to detect parallelizable outer loop. Consider two
> versions of Fortran routine:
>
> 1)
>
> subroutine filter(H, szh, X, szx, Y, szy)
>
> implicit none
> integer(kind=IKIND), intent(in) :: szh, szx, szy
> real(kind=RKIND), intent(in) :: H(szh), X(szx)
> real(kind=RKIND), intent(out) :: Y(szy)
> integer(kind=IKIND) :: i, j, i1, i2
> integer, parameter :: rkind = RKIND
>
> d...
2001 Apr 15
0
lacking user@host feature in sshd
Hi
There is a feature ssh-1.2.xx posess , but openssh still doesn't have, namely
in sshd_config in the option AllowUsers and DenyUsers :
in ssh-1.2.xx it is possible to specify user at host.net , so specifying what users from what hosts
are allowed to login , openssh (it seems) treats the whole "user at host.net" as username,
so it is impossible to Allow/Deny specific users
2003 Mar 03
1
POSIX to NT ACL bug
Hello
recently I set up XFS share under samba , and played from Win2K
with ACL entries of shared files,
and noticed that
Win2K never DENY ACL entries ,
so for example for a XFS file with acl:
# owner: a
user::r--
group::rwx
other::rwx
Win2K security tab shows for user "a":
Read & exec = <nothing here>
Read = Allowed
Write = <nothing
2003 Mar 06
1
POSIX ACL to NT ACL bugs in get_nt_acl()
Hello , the described bellow happens both in samba 2.2.7a and 3.0-alfa22.
First bug:
As it is easy to check smbd , when asked about ACL entry of a file
never sends to the client OS DENY Access Control Entries , only ALLOW.
so for example for a XFS file with acl:
# owner: a
user::r--
group::rwx
other::rwx
Win2K security tab shows for user "a":
Read & exec =
2003 Mar 06
1
ACL bug FIXes for get_nt_acl()
Two attached patches for samba 2.2.7a and 3.0-alfa22,
that I've made today, fix 3 bugs mentioned in my previous e-mail.
1) For each file in addition to ALLOW ACE
proper DENY ACE is created.
2) "Take ownership" is shown DENIED for all except root ACEs
3) Read Permissions and read attributes are always shown as allowed,
as they are actually allowed.
--
Zhitomirsky