similar to: [Announce] Samba 4.5.9 Available for Download

Displaying 20 results from an estimated 200 matches similar to: "[Announce] Samba 4.5.9 Available for Download"

2017 Jun 06
1
[Announce] Samba 4.6.5 Available for Download
====================================================== "Stay positive and happy. Work hard and don't give up hope. Be open to criticism and keep learning. Surround yourself with happy, warm and genuine people." Tena Desae ====================================================== Release Announcements --------------------- This is the latest stable release
2017 Jun 06
1
[Announce] Samba 4.6.5 Available for Download
====================================================== "Stay positive and happy. Work hard and don't give up hope. Be open to criticism and keep learning. Surround yourself with happy, warm and genuine people." Tena Desae ====================================================== Release Announcements --------------------- This is the latest stable release
2006 Aug 15
1
rails and MSSQL transactions
Hello, I have rails using a MSSQL db. The set up works fine with low volume, but with 2+ requests/second I keep on getting the following error: DBI::DatabaseError: Execute OLE error code:80004005 in Microsoft OLE DB Provider for SQL Server Cannot create new connection because in manual or distributed transaction mode. HRESULT error code:0x80020009 Exception occurred.: SELECT
2010 Nov 24
1
NameError in Devise/sessionsController#new
I created a sample application. Added devise in it, it works fine. Then added cancan gem into it. Created an ability class. define some permissions. Then added line load_and_authorize_resource to the Application Controller, after that when i go to the page http://0.0.0.0:3000/users/sign_in it gave the following error, NameError in Devise/sessionsController#new uninitialized constant Session
2003 Nov 26
3
Backup with rsync until one month
Hello, I use rsync in the company to make a backup every 4 hours. but I would like to do in a way like this, that the rsync make a backup of the changed files until one month long. EX:- file.bak.001 file.bak.002 ..... This file will be to get always, and so i can get the all files untill an one month old version of the file. Is it possible? Regardes Dipl.-Ing. Nazar Hassan
2002 Mar 01
0
trouble with password authentication fron Windows to Linux
I've seen many posts on this subject and several days researching but have not understood much of what I'm reading. In over my head. Any help appreciated. Here are facts.... 1. I set up the samba on linux box. 2. connected two windows 98SE machines 3. All machines connect to router 198.168.0.1, and use DHCP 4. I set up a public directory on Linux box 5. I can browse with
2006 May 17
0
script S-plus -> R
Dear List, I'm trying to transfer a script that uses S-plus functions for the kernel and integration calculations to R. This it what it looks like in S-plus: qrm(cpt,don,ect,h,intctk,nbcol,nbl1,nbl2,nbl3,nlc,nlgn,overlap,Results,tdon,tdon1,tdon11,tdon2,tdon21) don<-guiDisplayFileDialog() import.data (DataFrame="tdon",FileName=don,FileType="EXCEL")
2017 Apr 25
0
[Announce] Samba 4.6.3 Available for Download
Hai, I reviewed the code and Bug 12685 - REGRESSION: net ads keytab handling is broken is applied, but its not listed in the changes log. Greetz, Louis > -----Oorspronkelijk bericht----- > Van: samba [mailto:samba-bounces at lists.samba.org] Namens > Achim Gottinger via samba > Verzonden: dinsdag 25 april 2017 15:31 > Aan: samba at lists.samba.org > Onderwerp: Re:
2017 Apr 25
4
[Announce] Samba 4.6.3 Available for Download
====================================================== "I think about food literally all day every day. It's a thing." Taylor Swift ====================================================== Release Announcements --------------------- This is the latest stable release of the Samba 4.6 release series. Changes since 4.6.2: -------------------- o Michael Adam
2017 Apr 25
4
[Announce] Samba 4.6.3 Available for Download
====================================================== "I think about food literally all day every day. It's a thing." Taylor Swift ====================================================== Release Announcements --------------------- This is the latest stable release of the Samba 4.6 release series. Changes since 4.6.2: -------------------- o Michael Adam
2011 Jan 02
7
Rails, .swf, .flv
I have the following HAML code ul{ ''id'' => tutorials_ul } %li %a{''href'' => ''/videos/create-command-001.swf''} ''Edition swf'' %li %a{''href'' => ''/videos/create-command-001.flv''} ''Edition flv'' When the user clicks on
2010 Feb 22
1
Raster table: how separate lines with the same value (count > 1)
Dear all, I intend to do some statistics with my raster table, like correlations or regression analysis. For that, I need that each pixel be in one line, that is, there is no count > 1. So, all columns should have the same number of lines, when I compare (combine) rasters. I'd like to know if there is a way to create lines and copy the values of the lines, when count is > 1. So, even
2013 Jun 08
2
Compile error with gfortran-4.6
Dears, I am writing a code in Fortran using OpenMP directives. When compiling the code in gfortran 4.4 does not occur any problem. When compiling the code in gfortran 4.6, an error message appears. In other compilers the error does not occur. A small example. ## Code in Fortran        subroutine hello()        implicit none        integer :: nthreads, tid        integer ::
2013 Nov 13
0
[LLVMdev] dominator, post-dominator and memory leak
Bill, Just in case this is relevant for you: If you're working with C++ code, or otherwise have any functions that might throw exceptions, you might also need to catch those exceptions in order to free the allocated memory. This will involve looking for calls to functions that mayThrow(), changing their calls to invokes, and freeing the memory before resuming the unwinding. -Hal -----
2013 Nov 04
2
[LLVMdev] conditional flow resulting in "Instruction does not dominate all uses!"
On 4 November 2013 08:19, Henrique Santos <henrique.nazare.santos at gmail.com> wrote: > Well, what I had in mind was actually something like the following: > > entry: > result0 = invoke func0 to defer_block unwind landing0 > > landing0: > landingpad > result1 = invoke func1 to defer_block unwind landing1 > > landing1: > landingpad > br
2013 Nov 13
2
[LLVMdev] dominator, post-dominator and memory leak
Thanks! I will try that and see whether it works. On Wed, Nov 13, 2013 at 5:01 AM, Henrique Santos < henrique.nazare.santos at gmail.com> wrote: > It seems that placing the calls to free at the predecessors of dominance >> frontier is inadequate. It is possible that there are exit blocks that are >> dominated by BB12 (calls to malloc). I guess we can also insert calls to
2013 Nov 04
2
[LLVMdev] conditional flow resulting in "Instruction does not dominate all uses!"
On 4 November 2013 02:31, Henrique Santos <henrique.nazare.santos at gmail.com> wrote: > But the incoming value from the landing pad will always be null, won't it? > If so, just iterate through the predecessors and add the terminator as the > incoming value if it's an invoke instruction and add the null value it's > not. > Won't that work? > Note that the
2013 Nov 15
0
[LLVMdev] dominator, post-dominator and memory leak
Try breaking the critical edges (-break-crit-edges). This way, a new block will be created between BB13 and BB11 (call this BB11.break) and BB15 and BB12 (call this BB12.break). The predecessors of the dominance frontier will, thus, be BB11.break, BB12.break, and BB14. When we enter through a block with a call to malloc(), we will end up in one of the blocks in the dominance frontier (kind of).
2013 Nov 04
0
[LLVMdev] conditional flow resulting in "Instruction does not dominate all uses!"
Well, what I had in mind was actually something like the following: entry: result0 = invoke func0 to defer_block unwind landing0 landing0: landingpad result1 = invoke func1 to defer_block unwind landing1 landing1: landingpad br defer_block defer_block: result = phi [ result0, entry ], [ result1, landing0 ], [ null, landing1 ] ... This doesn't have landing pads with multiple
2013 Nov 04
0
[LLVMdev] conditional flow resulting in "Instruction does not dominate all uses!"
If you're talking about the IR, then I don't think so. It seems like perfectly valid. H. On Mon, Nov 4, 2013 at 2:25 PM, Rafael Espíndola <rafael.espindola at gmail.com > wrote: > On 4 November 2013 08:19, Henrique Santos > <henrique.nazare.santos at gmail.com> wrote: > > Well, what I had in mind was actually something like the following: > > > >