search for: event

Displaying 20 results from an estimated 22105 matches for "event".

2006 Dec 19
1
Sloooooow pop3 downloads
it's verry slow i saw in the archives something about strace and will include it below please help: my dovecot is crawling when downloading through pop here is my last trace file contents :18:04.657706 poll([{fd=10, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=15, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=13, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=17, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=23, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=22, events=POLLIN|POLLPR...
2010 Feb 11
0
Asterisk ignores BYE messages
Hi all, I have a lot of call in wich I found that my Asterisk doesn't answer the BYE message, then the BYEs are retransmitted, but the call ends, when the Asterisk sends a BYE. Time AS.TE.RI.SK CA.RR.IE.R1 0 INVITE SDP ( g729 g711A g711U telephone-event) SIP From: sip:1265666072 at 81.209.186.14 <sip%3A1265666072 at 81.209.186.14>To:sip:1234567890 at CA.RR.IE.R1 (5060) ------------------>71(5060)1U telephone-event) 0.09 (5060) 100 Trying-------->71(5060)1U telephone-event) (5060) <------------------71(5060)1U telephone-event)...
2012 Apr 22
1
Cannot access share tevent_req_timedout
...192.168.1.1 Opening cache file at /var/run/samba/gencache.tdb tdb(/var/run/samba/gencache.tdb): tdb_open_ex: could not open file /var/run/samba/gencache.tdb: No such file or directory Attempt to open gencache.tdb has failed. internal_resolve_name: returning 1 addresses: 192.168.1.1:0 Running timed event "tevent_req_timedout" 0x7f21efd4a230 Connecting to 192.168.1.1 at port 445 Running timed event "tevent_req_timedout" 0x7f21efd4a720 Connecting to 192.168.1.1 at port 139 Running timed event "tevent_req_timedout" 0x7f21efd4ae50 Running timed event "tevent_req_timed...
2006 Jun 15
3
RE: Yahoo!-like Eventobjectemulation/abstractioninPrototype?
This is obviously rough draft and not thoroughly tested, but it seems to work. If you''d like, give it a try (load it after you load prototype.js): Function.prototype.bindAsEventListener = function(object) { var __method = this; return function(event) { return __method.call(object, new SuperEvent(event || window.event)); } } var SuperEvent = Class.create(); Object.extend(SuperEvent.prototype, { initialize: function (event) { for (attr in event) { this...
2007 Jan 12
0
Followup to previous E-mail..
Using the "hidups" driver produces better results, however, I'm not sure if these "unhandled events" errors are good or bad.. I would suspect bad... Any direction would be appreciated.. Thanks, Richard. root@excalibur:/usr/src/nut-2.0.5-pre2# ./drivers/hidups -u root -DDDD -a apc /dev/usb/hiddev0 Network UPS Tools: HID UPS driver 0.13 (2.0.5-pre2) Warning: This is an experimental drive...
2006 Dec 01
1
hidups unhandled events on Linux/amd64
...cted over USB to an AMD64 machine running Debian. While apcupsd works fine with that device, whenever I start upsd I get the following messages in syslog: hidups[23159]: Startup successful upsd[23160]: Connected to UPS [apc1]: hidups-hiddev0 upsd[23161]: Startup successful hidups[23159]: Unhandled event: 0x8500d1 (1) hidups[23159]: Unhandled event: 0x840068 (0) hidups[23159]: Unhandled event: 0x850043 (0) hidups[23159]: Unhandled event: 0x840073 (0) hidups[23159]: Unhandled event: 0x85004b (0) hidups[23159]: Unhandled event: 0x840065 (0) hidups[23159]: Unhandled event: 0x8500db (0) hidups[23159]:...
2007 Apr 12
2
auth-login crash with cram-md5 (plain works) on unknown user
...access, and CourierMailAccount on users with imap/pop logins. the passwords in openldap are plain (b64) i have included the strace output... 13:49:54.112641 gettimeofday({1176385794, 112728}, {0, 0}) = 0 13:49:54.112757 gettimeofday({1176385794, 112771}, NULL) = 0 13:49:54.112792 poll([{fd=5, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=0, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=15, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=8, events=POLLIN|POLLP...
2013 Aug 12
2
[PATCH] drm/nouveau: fix vblank deadlock
This fixes a deadlock inversion when vblank is enabled/disabled by drm. &dev->vblank_time_lock is always taken when the vblank state is toggled, which caused a deadlock when &event->lock was also taken during event_get/put. Solve the race by requiring that lock to change enable/disable state, and always keeping vblank on the event list. Core drm ignores unwanted vblanks, so extra calls to drm_handle_vblank are harmless. Signed-off-by: Maarten Lankhorst <maarten.lankho...
2011 Aug 14
5
Puzzled with form on multiple table rows
I''ve got a table of events, and each event has a boolean attribute is_ten_event. On each row of the table is a chekbox to edit the value of is_ten_event, so that multiple rows can be edited with one submit. In order to allow boxes to be un-checked as well, the logic in the controller works like this get array of events f...
2006 Aug 07
2
Dynamically created queries
...y dynamically building a query. I want to ensure that I''m using Active Record protection against SQL injection attacks. In PHP land, I would have built up the query in my logic & attempted to clean every variable - a bit tedious really. I want to be able to achieve something like: events = Event.find(:all, :conditions => [**DynamicallyBuiltQuery** , **DynamicllyBuiltListOfVariables**], :order => event_datetime_start) It would be great if someone could please enlighten me on the rails way, or if there is a better way to do this. rgds, - matt. ----------------------------...
2013 Mar 07
1
Samba 4 classicupgrade: Error converting string to value for line:"CurrentVersion"
...ind ldb Setting up secrets.ldb lpcfg_servicenumber: couldn't find ldb lpcfg_servicenumber: couldn't find ldb Setting up the registry ldb: ldb_trace_request: SEARCH dn: @MODULES scope: base expr: (@LIST=*) attr: @LIST control: <NONE> ldb: ldb_trace_request: (tdb)->search tevent: Added timed event "ltdb_callback": 0x1d0ccb0 tevent: Added timed event "ltdb_timeout": 0x1d0cd60 tevent: Destroying timer event 0x1d0cd60 "ltdb_timeout" tevent: Ending timer event 0x1d0ccb0 "ltdb_callback" ldb: no modules required by the db ldb: No modules s...
2020 Aug 03
3
How to access mailbox metadata in Lua push driver
Some answers to my questions, a first version of my script and more questions ;) Am 03.08.20 um 18:15 schrieb Ralf Becker: > Currently looking into the following questions: > > - can I get the rfc 5423 type of event somehow (obviously I can set it > on the event myself depending of the function called) event.name > - looking at the example code, it looks like it can be called for > multiple messages, when does that happen (LMTP send more then one) still no idea, maybe Ake? I noticed that some events...
2013 Aug 27
11
[PATCH 0/9] drm/nouveau: Cleanup event/handler design
This series was originally motivated by a deadlock, introduced in commit 1d7c71a3e2f77336df536855b0efd2dc5bdeb41b 'drm/nouveau/disp: port vblank handling to event interface', due to inverted lock order between nouveau_drm_vblank_enable() and nouveau_drm_vblank_handler() (the complete lockdep report is included in the patch 4/5 changelog). Because this series fixes the vblank event deadlock, it is a competing solution to Maarten Lankhorst's 'drm/...
2017 Aug 24
3
duplicated notifications for suspend and resume
Hello, I am using domain event notifications from libvirt-event API in my application and it seems to work fine, except for 'suspend' and 'resume' events where I keep receiving duplicated notifications. Similarly, the example provided with libvirt (in examples/object-events/event-test) also produces twice as muc...
2013 Aug 19
0
[PATCH] drm/nouveau: fix vblank deadlock
On 08/12/2013 07:50 AM, Maarten Lankhorst wrote: > This fixes a deadlock inversion when vblank is enabled/disabled by drm. > &dev->vblank_time_lock is always taken when the vblank state is toggled, > which caused a deadlock when &event->lock was also taken during > event_get/put. > > Solve the race by requiring that lock to change enable/disable state, > and always keeping vblank on the event list. Core drm ignores unwanted > vblanks, so extra calls to drm_handle_vblank are harmless. I don't feel this is th...
2010 Aug 19
4
implementing project management and event types
I am implemented a simple project management application. Each project has various events, and each event can be a different type. Some event information is common, such as name, start date, close date, and comments. I have a projects table which has_many events. My plan is to have several sub-event tables, like event_get_access which will contain an event_id field to link it to table...
2007 May 01
0
BlueZ
...: Input/output error I got no PIN requester on either phone and PC. On the same time on another console I have: [root at miho ~]# hcidump HCI sniffer - Bluetooth packet analyzer ver 1.32 device: hci0 snap_len: 1028 filter: 0xffffffff (scan) < HCI Command: Inquiry (0x01|0x0001) plen 5 > HCI Event: Command Status (0x0f) plen 4 > HCI Event: Inquiry Result with RSSI (0x22) plen 15 > HCI Event: Inquiry Result with RSSI (0x22) plen 15 > HCI Event: Inquiry Result with RSSI (0x22) plen 15 > HCI Event: Inquiry Result with RSSI (0x22) plen 15 > HCI Event: Inquiry Result with RSSI (0x2...
2006 Jan 11
1
handling AR object in multistage forms
in a multi-stage form, what is the proper way for handling the passing of the object thru each step ? If i have a database called events, and my controller looks like step = @params[:step] || 1 if step == 1 @event = Event.new @event = @session[:event] if @session[:event] elsif step == 2 @event = Event.new @event = @params[:event] elsif step == 3 @event = Event.new @event = @params[:event] @session[:event] = @event...
2013 Aug 27
0
[PATCH 5/9] drm/nouveau: Add install/remove semantics for event handlers
Complete migration of nouveau_event_get/_put from add/remove semantics to enable/disable semantics. Introduce nouveau_event_handler_install/_remove interface to add/remove non-local-scope event handlers (ie., those stored in parent containers). This change in semantics makes explicit the handler lifetime, and distinguishes "one...
2005 Aug 31
0
Unicall X reload
...: br Thanks, Leonardo Aug 31 15:00:55 WARNING[28411]: Already have a handler for type 'UniCall' Aug 31 15:00:55 ERROR[28411]: Unable to register channel class UniCall Aug 31 15:00:55 WARNING[28411]: Reload of chan_unicall.so is unsuccessful! Aug 31 15:00:55 WARNING[30875]: Unicall/1 event Far end unblocked Aug 31 15:00:55 WARNING[30875]: Unicall/1 event Local end unblocked Aug 31 15:00:55 WARNING[30875]: Unicall/2 event Far end unblocked Aug 31 15:00:55 WARNING[30875]: Unicall/2 event Local end unblocked Aug 31 15:00:55 WARNING[30875]: Unicall/3 event Far end unblocked Aug 31 15:00:...