search for: 37min

Displaying 4 results from an estimated 4 matches for "37min".

Did you mean: 7min
2024 Sep 11
1
Upgrade 4.19 to 4.20 defunct
...11 02:38:32 boa systemd[1]: Started LSB: Samba daemons for the AD DC. Whereas on 4.19 it looks like: ? samba-ad-dc.service - Samba AD Daemon Loaded: loaded (/lib/systemd/system/samba-ad-dc.service; enabled; vendor p> Active: active (running) since Wed 2024-09-11 01:31:50 UTC; 4h 37min ago Docs: man:samba(8) man:samba(7) man:smb.conf(5) Process: 629 ExecCondition=/usr/share/samba/is-configured samba (code=exite> Main PID: 770 (samba) Status: "samba: ready to serve connections..." Tasks: 58 (limit: 850) M...
2024 Sep 11
1
Upgrade 4.19 to 4.20 defunct
...ed LSB: Samba daemons for the AD DC. > > > > Whereas on 4.19 it looks like: > > ? samba-ad-dc.service - Samba AD Daemon > > Loaded: loaded (/lib/systemd/system/samba-ad-dc.service; enabled; vendor p> > > Active: active (running) since Wed 2024-09-11 01:31:50 UTC; 4h 37min ago > > Docs: man:samba(8) > > man:samba(7) > > man:smb.conf(5) > > Process: 629 ExecCondition=/usr/share/samba/is-configured samba (code=exite> > > Main PID: 770 (samba) > > Status: "samba: ready to serve connections..." > > Tasks: 58 (limit:...
2010 Jun 05
5
Controlling calls
Hello folks, I want to write an AGI script doing this: 1-user call a number. 2-asterisk call the agi script 3-the script dial the peer 4-if the call is answered, let the call up for 1min 5-then the script hangs up the channel. I tried either in php or in java but no success. In java i did this: ////////////// exec("Dial", "IAX2/400"); boolean t=true; while(t){
2010 Oct 15
5
[LLVMdev] How do I find all memory allocations in an llvm ir code file?
I tried to compile this snippet of C++ code: void FuncTest() {     int* a = new int;     int* b = new int[2]; } using: clang test.cpp -S -emit-llvm -o - > test.llvm and obtained this: define void @_Z8FuncTestv() { entry:   %a = alloca i32*, align 4   %b = alloca i32*, align 4   %call = call noalias i8* @_Znwj(i32 4)   %0 = bitcast i8* %call to i32*   store i32* %0, i32** %a, align 4