Duration field

Using a storm, I noticed that the fields for the duration of the appointment and the time of an alarm have a field that we will you specify options on a go.

I'm looking to set up an identical to the duration of the appointment with the selection field "X hour X Min.

I spent time searching, but I can't find examples of this. It is possible that I don't know what search terms to use, but someone have an idea on how these work?

I'm developing on the Simulator for storm 4.7.

Any help is appreciated.

"However I am curious to know what you don't like in the duration field.

I'm sorry that I said the wrong thing here.  I don't like the application of the field length as used in appointments on the storm.  It's OK on other devices because the numeric keypad is activated, so you can easily type in 30 for 30 minutes.  Try to do it on the storm.

"What is your opinion on how to do something explicit to a user?"

Good question.  You've seen the formatting that you can do with SimpleDateFormat.  Maybe something like this where the formatted string is actually included in the label, the label can so say something like

Duration (hh: mm)

If you want to do the 2 entries in fields like the date, you can do this by putting several fields in a horizontal region Manager too

Other than that, I'm not sure.  What thoughts do you have?

Tags: BlackBerry Developers

Similar Questions

  • ?? Still image default duration - can't change it?

    In the first 13 items:


    If I open a new project I can go to preferences and change the default duration of still images and when new is added to the timeline that they correspond to the value that I set.


    But I have an existing project, when I go to preferences and change the default fixed images for her, remains in about 6 seconds, ignores any changes I've made.


    Thoughts?


    James

    James

    The preference of Edit Menu/preferences/general for still Image default duration applies only to images imported once the adjustment has been made.

    To change still Image duration once again on the timeline, click with the right button on the timeline again, select Time Stretch and always set the time again for that in the duration field in the Time Stretch dialog box. You can do this for a single file or several files at once. For more than one at a time, select (all at the same time) stills involved, click anywhere in the selection, select Time Stretch and set the time yet in the Time Stretch dialog box which will apply to the entire selection.

    To select several files at once

    a. you hold down the SHIFT key, click each clip in the group selection

    or

    b. with the mouse cursor, draw a rectangle autour clips to participate in order to select the

    Please let us know if it works for you above.

    RTA

  • Label - field - Board labels

    Hi all

    JDev 11.1.1.5.0 & 11.1.1.6.0

    We want to build a set in page where we once again a label, the field, and then on a label.
    Ex: Max duration < field > years
    Must see this in formatting, where we have different areas. Some of them have this second label, others not.
    The farm I can uses a panellabelandmessage tag to include the second label.
              <af:panelLabelAndMessage label="Max Duration" id="plam1" showRequired="true">
                <af:inputText id="it5" required="true" showRequired="false"/>
                <f:facet name="end">
                  <af:outputLabel value="years" id="ol1"/>
                </f:facet>
              </af:panelLabelAndMessage>
            </af:panelFormLayout>
    The problem arises with the required fields. We can define the attribute showRequired of the panellabelandmessage to true, and that of the inputText to false.
    But whenever the required of the inputText property is set to true, the required icon is always shown, even if the showRequired is set to false.
    This makes the required icon is displayed twice.
    How can hide us the required icon of the inputText field?

    What are the possible solutions for this situation?

    Thank you in advance.

    Filip Huysmans.

    Filip,

    the following custom skin entry removes the icon required all input text labels so that they are defined on the component panelLabelMessage only

    AF | inputText::label. AFRequiredIconStyle {display: none}

    If you need to have more control, you can add a property styleClass as shown below

     
                
                
                  
                
              
    

    In this case, the following skin only removes this

    .noRequiredIcon af | inputText::label. AFRequiredIconStyle {display: none}

    If you need more dynamic event, use EL to set the styleClass value.

    Frank

    PS. : Is the question you may ask: why should I add the af | inputText::label to the skin if the style class determines the instance? The advantage you get from this is that it is the longets match, which means that if there are other components (no text input) that have similar requirements, you can manage them individually

  • Calculations between two time fields

    Hello

    I have a form with a time for the start time field and a text field for the user to enter a duration (for example, 00:30:00).

    There is another field for the end of time (which has a calculation script using the date and starting time fields).

    The script that was placed in the end time field works except the script gives a negative result.

    For example the start time field is 16:03:33 and 00:30:00 duration field calculation end is showing time field-

    Please can someone advise how I can change the script of the time field end to show the correct result of 16:33 (without the negative)?


    create string for the current date
    var oToday = new Date();
    sToday var = util.printd ("yyyy/mm/dd", oToday);

    get the value of the start time field

    var sStart = this.getField("Action_Start_Time").value;

    create the JavaScript date object time for start time
    var start = util.scand ("yyyy/mm/dd hh: mm:", sToday + sStart);


    get the duration value

    Send var = this.getField("Action_Time").value;

    create a JavaScript date object time to end time
    oEnd var = util.scand ("yyyy/mm/dd hh: mm", sToday + shipment);

    calculate the difference in hours, the difference in hours
    var DiffHours = (oEnd.valueOf () - oStart.valueOf (()) / 1000 / 60 / 60;
    Event.Value = Math.floor (DiffHours) + ': ' + util.printf ("%,302.0f", (((DiffHours % 1) * 60) .toFixed (()));

    Any help will be greatly appreciated.

    You cannot change the '-' operator operator '+' being Modulo calculation date and time calculations. You must calculate the different parts of the date and time of the start time and elapsed time and then convert these values into a date object time and format of this new date time object.

    Clear the field
    Event.Value = "";
    getting the activity start time
    var sEventStart = this.getField("Activity_Start_Time").value;
    calculate only if there is a start time
    If (sEventStart! = "") {}
    operations of the console are for debugging and illustration
    /*
    Console.Show ();
    Console.clear();
    */
    convert a date object change if necessary format
    var oEventStart = util.scand ("YYYY, mm, DD, HH", nNowYear + "," + (nNowMonth + 1) + ',' + nNowDate + ', ' + sEventStart);
    Console.println ("oEventStart:" + oEventStart);

    get the date current time
    var oNow = new Date();
    Console.println ("oNow:" + oNow);
    get the date parts
    var nNowYear = oNow.getFullYear ();
    var nNowMonth = oNow.getMonth ();
    var nNowDate = oNow.getDate ();
    /*
    Console.println ("nNowYear:" + nNowYear);
    Console.println ("nNowMonth:" + nNowMonth);
    Console.println ("nNowDate:" + nNowDate);
    */
    get the duration of activity
    var sEventDuration = this.getField('Event_Duration').value;
    If no entry in force at time zero
    if(sEventDuration == '') sEventDuration = "00:00:00 ';
    convert the time in hours and minutes
    var aEventDuration = sEventDuration.split(":");
    /*
    Console.println (' hours - aEventDuration [0]: "+ aEventDuration [0]");
    Console.println ('Minutes - aEventDuration [1]: "+ aEventDuration [1]");
    Console.println (' hours start: "+ oEventStart.getHours ());
    Console.println ("minutes:" + oEventStart.getMinutes ());
    Console.println ("second Start:" + oEventStart.getSeconds ());
    */
    calculate the minutes and the end times
    var nEndHour = Number (oEventStart.getHours ()) + Number(aEventDuration[0]);
    var nEndMinute = Number (oEventStart.getMinutes ()) + Number(aEventDuration[1]);
    if(aEventDuration.Length == 3)
    var nEndSecond = Number (oEventStart.getSeconds ()) + Number(aEventDuration[2]);
    on the other
    var nEndSecond = Number (oEventStart.getSeconds () + 0;
    /*
    Console.println ("nEndHour:" + nEndHour);
    Console.println ("nEndMinute:" + nEndMinute);
    Console.println ("nEndSecond:" + nEndSecond);
    Console.println ("nNowYear:" + nNowYear);
    Console.println ("nNowMonth:" + nNowMonth);
    Console.println ("nNowDate:" + nNowDate);
    */
    do the date for the end of the event object - calculate the hours and minutes
    oEnd var = new Date (nNowYear, nNowMonth, nNowDate, nEndHour, nEndMinute, nEndSecond);
    Console.println ('oEnd: ' + oEnd);
    change the format if necessary
    Event.Value = util.printd ("HH", oEnd);
    } / / end of event time

  • I7 iMac 5 k 27 "without sleep

    My mac doesn't go to sleep. What is the problem?

    Here is the log

    Source: Journal of the/usr/bin/pmset g

    Size: 67 k (66,703 bytes)

    Last modified: 08/03/16 12:27

    "These latest materials: center.sleeping - note ' 00:00:00 id: 0x0xe00000494 [system: PrevIdle DispWake]

    2016-08-03 03:18:46 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 03:18:46 + 0200 display Notification is enabled

    2016-08-03 03:18:56 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:09 id: 0x0xe00000494 [system: PrevIdle]

    2016-08-03 03:18:56 + 0200 notification display is off

    2016-08-03 03:18:56 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.service.ACSServer" 03:20:38 id: 0x0x10000013e [system: PrevIdle]

    2016-08-03 03:18:56 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.sdd" 03:20:38 id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 03:18:56 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.quicklook" 03:20:38 id: 0x0x10000013c [system: PrevIdle]

    2016-08-03 03:18:56 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.server.filesharing" 03:20:38 id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 03:18:56 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ppp.l2tp" 03:20:38 id: 0 x 0 x 100000139 [system: PrevIdle]

    2016-08-03 03:18:56 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ftpserver" 03:20:38 id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 03:18:56 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.AssetCache" 03:20:38 id: 0 x 0 x 100000130 [system: PrevIdle]

    2016-08-03 03:18:56 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" 03:20:37 id: 0 x 0 x 800000140 [system: PrevIdle]

    2016-08-03 03:18:56 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 03:19:19 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe00000498 [system: PrevIdle DispWake]

    2016-08-03 03:19:19 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 03:19:19 + 0200 display Notification is enabled

    2016-08-03 03:19:19 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe00000499 [system: PrevIdle DispWake]

    2016-08-03 03:19:19 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:00 id: 0x0xe00000498 [system: PrevIdle DispWake]

    2016-08-03 03:19:29 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:10 id: 0x0xe00000499 [system: PrevIdle]

    2016-08-03 03:19:29 + 0200 notification display is off

    2016-08-03 03:19:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.service.ACSServer' 03:21:12 id: 0x0x10000013e [system: PrevIdle]

    2016-08-03 03:19:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.serverdocs.sdd' 03:21:12 id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 03:19:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.serverdocs.quicklook' 03:21:12 id: 0x0x10000013c [system: PrevIdle]

    2016-08-03 03:19:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.server.filesharing' 03:21:12 id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 03:19:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.ppp.l2tp' 03:21:12 id: 0 x 0 x 100000139 [system: PrevIdle]

    2016-08-03 03:19:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.ftpserver' 03:21:12 id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 03:19:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.AssetCache' 03:21:12 id: 0 x 0 x 100000130 [system: PrevIdle]

    2016-08-03 03:19:29 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" 03:21:11 id: 0 x 0 x 800000140 [system: PrevIdle]

    2016-08-03 03:19:29 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 04:04:28 00:00:29 + 0200 assertions PID 3053 (diskmanagementd) published "com.apple.diskmanagementd" id PreventUserIdleSystemSleep: 0x0x1000004df [system: PrevIdle]

    2016-08-03 04:04:41 + 0200 assertions PID 3039 (backupd) released BackgroundTask 'Backup Time Machine' 00:00:57 id: 0x0xb000004dc [system: PrevIdle]

    2016-08-03 04:04:41 + 0200 assertions PID 3039 (backupd) released PreventUserIdleSystemSleep 'Backup Time Machine' 00:00:57 id: 0x0x1000004dd [system: PrevIdle]

    2016-08-03 04:04:41 + 0200 assertions PID 55 (UserEventAgent) published BackgroundTask "com.apple.backupd - auto" 00:01:27 id: 0x0xb000004d8 [system: PrevIdle]

    2016-08-03 04:04:47 + 0200 assertions PID 3140 (diskmanagementd) published "com.apple.diskmanagementd" 00:00:15 id PreventUserIdleSystemSleep: 0x0x1000004e9 [system: PrevIdle]

    2016-08-03 04:04:53 00:00:23 + 0200 assertions PID 55 (UserEventAgent) published "com.apple.metadata.mds_stores.power" id BackgroundTask: 0x0xb000004e8 [system: PrevIdle]

    2016-08-03 04:23:01 + 0200 assertions PID 93 (apsd) published ApplePushServiceTask ' com.apple.apsd - recreatecourierstate - push.apple.com ' 00:00:10 id: 0x0xb0000050c [system: PrevIdle]

    2016-08-03 05:05:56 + 0200 assertions PID 3628 (diskmanagementd) published "com.apple.diskmanagementd" 00:00:30 id PreventUserIdleSystemSleep: 0 x 0 x 100000550 [system: PrevIdle]

    2016-08-03 05:06:11 + 0200 assertions PID 3614 (backupd) released BackgroundTask 'Backup Time Machine' 00:00:59 id: 0x0xb0000054e [system: PrevIdle]

    2016-08-03 05:06:11 + 0200 assertions PID 3614 (backupd) released PreventUserIdleSystemSleep 'Backup Time Machine' 00:00:59 id: 0x0x10000054f [system: PrevIdle]

    2016-08-03 05:06:11 + 0200 assertions PID 55 (UserEventAgent) published BackgroundTask "com.apple.backupd - auto" 00:01:30 id: 0x0xb0000054c [system: PrevIdle]

    2016-08-03 05:06:13 00:00:16 + 0200 assertions PID 55 (UserEventAgent) published "com.apple.metadata.mds_stores.power" id BackgroundTask: 0x0xb00000557 [system: PrevIdle]

    2016-08-03 05:06:14 + 0200 assertions PID 3712 (diskmanagementd) published "com.apple.diskmanagementd" 00:00:15 id PreventUserIdleSystemSleep: 0 x 0 x 100000558 [system: PrevIdle]

    2016-08-03 05:09:59 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe00000572 [system: PrevIdle DispWake IPushSrvc kCPU]

    2016-08-03 05:09:59 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 05:09:59 + 0200 display Notification is enabled

    2016-08-03 05:10:09 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:10 id: 0x0xe00000572 [system: PrevIdle]

    2016-08-03 05:10:09 + 0200 notification display is off

    2016-08-03 05:10:09 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.service.ACSServer' 05:11:51 id: 0x0x10000013e [system: PrevIdle]

    2016-08-03 05:10:09 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.sdd' 05:11:51 id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 05:10:09 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.quicklook' 05:11:51 id: 0x0x10000013c [system: PrevIdle]

    2016-08-03 05:10:09 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.server.filesharing' 05:11:51 id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 05:10:09 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ppp.l2tp' 05:11:51 id: 0 x 0 x 100000139 [system: PrevIdle]

    2016-08-03 05:10:09 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ftpserver' 05:11:51 id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 05:10:09 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.AssetCache' 05:11:51 id: 0 x 0 x 100000130 [system: PrevIdle]

    2016-08-03 05:10:09 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted' 05:11:50 id: 0 x 0 x 800000140 [system: PrevIdle]

    2016-08-03 05:10:09 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 05:10:42 + 0200 assertions PID 3762 (AddressBookSourceSync) released PreventUserIdleSystemSleep 'Address book Source Sync' 00:00:30 id: 0 x 0 x 100000575 [system: PrevIdle]

    2016-08-03 05:20:53 + 0200 assertions PID 93 (apsd) published ApplePushServiceTask ' com.apple.apsd - recreatecourierstate - push.apple.com ' 00:00:10 id: 0x0xb00000585 [system: PrevIdle]

    2016-08-03 06:07:26 00:00:29 + 0200 assertions PID 4152 (diskmanagementd) published "com.apple.diskmanagementd" id PreventUserIdleSystemSleep: 0x0x1000005c7 [system: PrevIdle]

    2016-08-03 06:07:38 + 0200 assertions PID 4137 (backupd) released BackgroundTask 'Backup Time Machine' 00:00:56 id: 0x0xb000005c5 [system: PrevIdle]

    2016-08-03 06:07:38 + 0200 assertions PID 4137 (backupd) released PreventUserIdleSystemSleep 'Backup Time Machine' 00:00:56 id: 0x0x1000005c6 [system: PrevIdle]

    2016-08-03 06:07:38 + 0200 assertions PID 55 (UserEventAgent) published BackgroundTask "com.apple.backupd - auto" 00:01:27 id: 0x0xb000005c4 [system: PrevIdle]

    2016-08-03 06:07:44 + 0200 assertions PID 55 (UserEventAgent) published "com.apple.metadata.mds_stores.power" 00:00:15 id BackgroundTask: 0x0xb000005cc [system: PrevIdle]

    2016-08-03 06:07:46 + 0200 assertions PID 4237 (diskmanagementd) published "com.apple.diskmanagementd" 00:00:15 id PreventUserIdleSystemSleep: 0x0x1000005cd [system: PrevIdle]

    2016-08-03 06:23:07 + 0200 assertions PID 93 (apsd) published ApplePushServiceTask "com.apple.apsd - datareceived - push.apple.com ' 00:00:26 id: 0x0xb000005fb [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:15 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe0000065d [system: PrevIdle DispWake]

    2016-08-03 06:34:15 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 06:34:15 + 0200 display Notification is enabled

    2016-08-03 06:34:18 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:03 id: 0x0xe0000065d [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 notification display is off

    2016-08-03 06:34:18 00:00:03 + 0200 assertions PID 176 (coreaudiod) summary PreventUserIdleSystemSleep ' com.apple.audio.AppleHDAEngineOutput:1F, 3, 0, 1, 2:0.context.preventuseridlesleep "id: 0 x 0 x 100000492 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.service.ACSServer' 06:36:01 id: 0x0x10000013e [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.serverdocs.sdd' 06:36:01 id: 0x0x10000013d [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.serverdocs.quicklook' 06:36:01 id: 0x0x10000013c [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.server.filesharing' 06:36:01 id: 0x0x10000013b [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.ppp.l2tp' 06:36:01 id: 0 x 0 x 100000139 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.ftpserver' 06:36:01 id: 0 x 0 x 100000138 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.AssetCache' 06:36:01 id: 0 x 0 x 100000130 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 491 (image) summary PreventUserIdleSystemSleep "IncomingMessageProcessing" 00:00:02 id: 0x0x10000065f [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 68 (powerd) summary ExternalMedia 06:36 "com.apple.powermanagement.externalmediamounted" id: 0 x 0 x 800000140 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 93 (apsd) summary InteractivePushServiceTask ' com.apple.apsd - lastpowerassertionlinger ' 00:00:00 id: 0 x 0 x 1200000666 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions PID 93 (apsd) summary InteractivePushServiceTask "com.apple.apsd - datareceived - push.apple.com ' 00:00:00 id: 0 x 0 x 1200000667 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:18 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 06:34:30 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe00000678 [system: PrevIdle DispWake IPushSrvc kCPU]

    2016-08-03 06:34:30 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 06:34:30 + 0200 display Notification is enabled

    2016-08-03 06:34:36 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:05 id: 0x0xe00000678 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 notification display is off

    2016-08-03 06:34:36 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.service.ACSServer' 06:36:18 id: 0x0x10000013e [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.serverdocs.sdd' 06:36:18 id: 0x0x10000013d [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.serverdocs.quicklook' 06:36:18 id: 0x0x10000013c [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.server.filesharing' 06:36:18 id: 0x0x10000013b [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.ppp.l2tp' 06:36:18 id: 0 x 0 x 100000139 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.ftpserver' 06:36:18 id: 0 x 0 x 100000138 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.AssetCache' 06:36:18 id: 0 x 0 x 100000130 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" 06:36:17 id: 0 x 0 x 800000140 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 assertions PID 93 (apsd) summary InteractivePushServiceTask ' com.apple.apsd - recreatecourierstate - push.apple.com ' 00:00:06 id: 0 x 0 x 1200000675 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 assertions PID 93 (apsd) summary InteractivePushServiceTask "com.apple.apsd - datareceived - push.apple.com ' 00:00:03 id: 0 x 0 x 1200000679 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:34:36 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 06:34:39 + 0200 assertions PID 93 (apsd) published InteractivePushServiceTask ' com.apple.apsd - recreatecourierstate - push.apple.com ' 00:00:10 id: 0 x 0 x 1200000675 [system: PrevIdle IPushSrvc kCPU]

    2016-08-03 06:48:04 + 0200 assertions PID 4536 (AddressBookSourceSync) released PreventUserIdleSystemSleep 'Address book Source Sync' 00:00:30 id: 0x0x1000006b2 [system: PrevIdle]

    2016-08-03 06:48:19 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe000006bc [system: PrevIdle DispWake]

    2016-08-03 06:48:19 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 06:48:19 + 0200 display Notification is enabled

    2016-08-03 06:48:29 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:10 id: 0x0xe000006bc [system: PrevIdle]

    2016-08-03 06:48:29 + 0200 notification display is off

    "2016-08-03 06:48:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.service.ACSServer "06:50:12 id: 0x0x10000013e [system: PrevIdle]

    "2016-08-03 06:48:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.serverdocs.sdd "06:50:12 id: 0x0x10000013d [system: PrevIdle]

    "2016-08-03 06:48:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.serverdocs.quicklook "06:50:12 id: 0x0x10000013c [system: PrevIdle]

    "2016-08-03 06:48:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.server.filesharing "06:50:12 id: 0x0x10000013b [system: PrevIdle]

    "2016-08-03 06:48:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.ppp.l2tp "06:50:12 id: 0 x 0 x 100000139 [system: PrevIdle]

    "2016-08-03 06:48:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.ftpserver "06:50:12 id: 0 x 0 x 100000138 [system: PrevIdle]

    "2016-08-03 06:48:29 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.AssetCache "06:50:12 id: 0 x 0 x 100000130 [system: PrevIdle]

    "2016-08-03 06:48:29 + 0200 assertions PID 68 (powerd) summary ExternalMedia" com.apple.powermanagement.externalmediamounted "06:50:11 id: 0 x 0 x 800000140 [system: PrevIdle]

    2016-08-03 06:48:29 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 06:48:33 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe000006c8 [system: PrevIdle DispWake]

    2016-08-03 06:48:33 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 06:48:33 + 0200 display Notification is enabled

    2016-08-03 06:48:39 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe000006d2 [system: PrevIdle DispWake]

    2016-08-03 06:48:39 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:05 id: 0x0xe000006c8 [system: PrevIdle DispWake]

    2016-08-03 06:48:43 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe000006dc [system: PrevIdle DispWake IPushSrvc kCPU]

    2016-08-03 06:48:43 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:04 id: 0x0xe000006d2 [system: PrevIdle DispWake IPushSrvc kCPU]

    2016-08-03 06:48:53 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:10 id: 0x0xe000006dc [system: PrevIdle]

    2016-08-03 06:48:53 + 0200 notification display is off

    "2016-08-03 06:48:53 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.service.ACSServer "06:50:36 id: 0x0x10000013e [system: PrevIdle]

    "2016-08-03 06:48:53 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.serverdocs.sdd "06:50:36 id: 0x0x10000013d [system: PrevIdle]

    "2016-08-03 06:48:53 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.serverdocs.quicklook "06:50:36 id: 0x0x10000013c [system: PrevIdle]

    "2016-08-03 06:48:53 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.server.filesharing "06:50:36 id: 0x0x10000013b [system: PrevIdle]

    "2016-08-03 06:48:53 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.ppp.l2tp "06:50:36 id: 0 x 0 x 100000139 [system: PrevIdle]

    "2016-08-03 06:48:53 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.ftpserver "06:50:36 id: 0 x 0 x 100000138 [system: PrevIdle]

    "2016-08-03 06:48:53 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep" com.apple.AssetCache "06:50:36 id: 0 x 0 x 100000130 [system: PrevIdle]

    "2016-08-03 06:48:53 + 0200 assertions PID 68 (powerd) summary ExternalMedia" com.apple.powermanagement.externalmediamounted "06:50:35 id: 0 x 0 x 800000140 [system: PrevIdle]

    2016-08-03 06:48:53 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 06:57:34 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe00000737 [system: PrevIdle DispWake]

    2016-08-03 06:57:34 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 06:57:34 + 0200 display Notification is enabled

    2016-08-03 06:57:39 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:04 id: 0x0xe00000737 [system: PrevIdle]

    2016-08-03 06:57:39 + 0200 notification display is off

    2016-08-03 06:57:39 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.service.ACSServer' 06:59:22 id: 0x0x10000013e [system: PrevIdle]

    2016-08-03 06:57:39 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.serverdocs.sdd' 06:59:22 id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 06:57:39 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.serverdocs.quicklook' 06:59:22 id: 0x0x10000013c [system: PrevIdle]

    2016-08-03 06:57:39 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.server.filesharing' 06:59:22 id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 06:57:39 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.ppp.l2tp' 06:59:22 id: 0 x 0 x 100000139 [system: PrevIdle]

    2016-08-03 06:57:39 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.ftpserver' 06:59:22 id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 06:57:39 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep 'com.apple.AssetCache' 06:59:22 id: 0 x 0 x 100000130 [system: PrevIdle]

    2016-08-03 06:57:39 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" 06:59:21 id: 0 x 0 x 800000140 [system: PrevIdle]

    2016-08-03 06:57:39 + 0200 assertions PID 93 (apsd) summary ApplePushServiceTask "com.apple.apsd - datareceived - push.apple.com ' 00:00:05 id: 0x0xb00000731 [system: PrevIdle]

    2016-08-03 06:57:39 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 06:58:35 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe0000076b [system: PrevIdle DispWake]

    2016-08-03 06:58:35 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 06:58:35 + 0200 display Notification is enabled

    2016-08-03 06:58:45 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:10 id: 0x0xe0000076b [system: PrevIdle]

    2016-08-03 06:58:45 + 0200 notification display is off

    2016-08-03 06:58:45 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.service.ACSServer" 07:00:28 id: 0x0x10000013e [system: PrevIdle]

    2016-08-03 06:58:45 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.sdd" 07:00:28 id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 06:58:45 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.quicklook" 07:00:28 id: 0x0x10000013c [system: PrevIdle]

    2016-08-03 06:58:45 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.server.filesharing" 07:00:28 id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 06:58:45 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ppp.l2tp" 07:00:28 id: 0 x 0 x 100000139 [system: PrevIdle]

    2016-08-03 06:58:45 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ftpserver" 07:00:28 id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 06:58:45 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.AssetCache" 07:00:28 id: 0 x 0 x 100000130 [system: PrevIdle]

    2016-08-03 06:58:45 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" 07:00:27 id: 0 x 0 x 800000140 [system: PrevIdle]

    2016-08-03 06:58:45 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 07:00:21 00:00:19 + 0200 assertions PID 4637 (diskmanagementd) published "com.apple.diskmanagementd" id PreventUserIdleSystemSleep: 0x0x10000077c [system: PrevIdle]

    2016-08-03 07:08:52 + 0200 assertions PID 4712 (diskmanagementd) published PreventUserIdleSystemSleep "com.apple.diskmanagementd" 00:00:29 id: 0 x 0 x 100000785 [system: PrevIdle]

    2016-08-03 07:09:14 + 0200 assertions PID 4699 (backupd) released BackgroundTask "Backup Time Machine" 00:01:06 id: 0x0xb00000782 [system: PrevIdle]

    2016-08-03 07:09:14 + 0200 assertions PID 4699 (backupd) released PreventUserIdleSystemSleep "Backup Time Machine" 00:01:06 id: 0 x 0 x 100000783 [system: PrevIdle]

    2016-08-03 07:09:14 + 0200 assertions PID 55 (UserEventAgent) published BackgroundTask "com.apple.backupd - auto" 00:01:36 id: 0x0xb00000780 [system: PrevIdle]

    2016-08-03 07:09:21 + 0200 assertions PID 4799 (diskmanagementd) published "com.apple.diskmanagementd" 00:00:15 id PreventUserIdleSystemSleep: 0x0x10000078b [system: PrevIdle]

    2016-08-03 07:09:27 00:00:23 + 0200 assertions PID 55 (UserEventAgent) published "com.apple.metadata.mds_stores.power" id BackgroundTask: 0x0xb0000078a [system: PrevIdle]

    2016-08-03 07:10:10 + 0200 assertions PID 93 (apsd) published ApplePushServiceTask ' com.apple.apsd - recreatecourierstate - push.apple.com ' 00:00:10 id: 0x0xb0000078d [system: PrevIdle]

    2016-08-03 07:23:50 + 0200 assertions PID 478 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe000007af [system: PrevIdle DispWake]

    2016-08-03 07:23:50 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 07:23:50 + 0200 display Notification is enabled

    2016-08-03 07:24 + 0200 assertions PID 478 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:10 id: 0x0xe000007af [system: PrevIdle]

    2016-08-03 07:24 + 0200 notification display is off

    2016-08-03 07:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.service.ACSServer' 07:25:43 id: 0x0x10000013e [system: PrevIdle]

    2016-08-03 07:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.sdd' 07:25:43 id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 07:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.quicklook' 07:25:43 id: 0x0x10000013c [system: PrevIdle]

    2016-08-03 07:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.server.filesharing' 07:25:43 id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 07:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ppp.l2tp' 07:25:43 id: 0 x 0 x 100000139 [system: PrevIdle]

    2016-08-03 07:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ftpserver' 07:25:43 id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 07:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.AssetCache' 07:25:43 id: 0 x 0 x 100000130 [system: PrevIdle]

    2016-08-03 07:24 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" 07:25:42 id: 0 x 0 x 800000140 [system: PrevIdle]

    Shutters of sleep Assertions Kernel Idle from 2016-08-03 07:24 + 0200: - none -.

    2016-08-03 07:33:40 + 0200 assertions PID 93 (apsd) published ApplePushServiceTask ' com.apple.apsd - recreatecourierstate - push.apple.com ' 00:00:10 id: 0x0xb000007b7 [system: PrevIdle]

    2016-08-03 07:47:29 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 07:47:29 + 0200 display Notification is enabled

    2016-08-03 07:47:29 + 0200 assertions PID 114 (hidd) created UserIsActive "com.apple.iohideventsystem.queue.tickle" 00:00:00 id: 0x0x9000007c7 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:48 + 0200 assertions PID 5172 (screensharingd) created PreventSystemSleep 'remote user is connected' 00:00:00 id: 0x0x7000007cf [system: PrevIdle PrevSleep DeclUser kDisp kCPU]

    2016-08-03 07:48 + 0200 assertions PID 5172 (screensharingd) published PreventSystemSleep 'remote user is connected' 00:00:00 id: 0x0x7000007cf [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context101.preventuseridledisplaysleep' 04:32:59 id: 0 x 0 x 500000489 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context101.preventuseridlesleep' 04:32:59 id: 0 x 0 x 100000488 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context102.preventuseridledisplaysleep' 04:32:59 id: 0x0x50000048b [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context102.preventuseridlesleep' 04:32:59 id: 0x0x10000048a [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context103.preventuseridledisplaysleep' 04:32:59 id: 0x0x50000048d [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context103.preventuseridlesleep' 04:32:59 id: 0x0x10000048c [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context104.preventuseridledisplaysleep' 04:32:59 id: 0x0x50000048f [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context104.preventuseridlesleep' 04:32:59 id: 0x0x10000048e [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context86.preventuseridledisplaysleep' 07:53:22 id: 0 x 0 x 500000176 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context86.preventuseridlesleep' 07:53:22 id: 0 x 0 x 100000175 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context87.preventuseridledisplaysleep' 07:53:22 id: 0 x 0 x 500000178 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context87.preventuseridlesleep' 07:53:22 id: 0 x 0 x 100000177 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context88.preventuseridledisplaysleep' 07:53:22 id: 0x0x50000017a [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context88.preventuseridlesleep' 07:53:22 id: 0 x 0 x 100000179 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context89.preventuseridledisplaysleep' 07:53:22 id: 0x0x50000017c [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context89.preventuseridlesleep' 07:53:22 id: 0x0x10000017b [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context91.preventuseridledisplaysleep' 07:53:21 id: 0 x 0 x 500000189 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context91.preventuseridlesleep' 07:53:21 id: 0 x 0 x 100000188 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context92.preventuseridledisplaysleep' 07:53:21 id: 0x0x50000018b [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context92.preventuseridlesleep' 07:53:21 id: 0x0x10000018a [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context93.preventuseridledisplaysleep' 07:53:21 id: 0x0x50000018d [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context93.preventuseridlesleep' 07:53:21 id: 0x0x10000018c [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context94.preventuseridledisplaysleep' 07:53:21 id: 0x0x50000018f [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:51:45 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context94.preventuseridlesleep' 07:53:21 id: 0x0x10000018e [system: PrevIdle DeclUser kDisp]

    Sleep / wakes up from boot to 2016-08-02 23:58:17 + 0200 Wake Dark Count in this sleep cycle: 0

    Timestamp delay Message duration field

    ==========                ======                  =======                                                                        ========      =====

    UUID: (null)

    2016-08-03 07:52:15 + 0200 start powerd process is started

    2016-08-03 07:52:15 + 0200 summary - [system: no Assertions] using AC

    2016-08-03 07:52:15 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 07:52:42 + 0200 assertions PID 114 (hidd) created UserIsActive "com.apple.iohideventsystem.queue.tickle" 00:00:00 id: 0x0x9000001df [system: PrevIdle DeclUser IPushSrvc kDisp kCPU]

    2016-08-03 07:53:23 + 0200 assertions PID 55 (UserEventAgent) TimedOut PreventUserIdleSystemSleep ' CDSystemMonitor: delay notifications on the switch to an electrical outlet "00:01:04 id: 0x0x10000014b [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:53:23 + 0200 summary - [system: PrevIdle DeclUser kDisp] using AC

    2016-08-03 07:54:16 + 0200 assertions PID 114 (hidd) TimedOut UserIsActive "com.apple.iohideventsystem.queue.tickle" 00:01:34 id: 0x0x9000001df [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:54:16 + 0200 summary - [system: PrevIdle] using AC

    2016-08-03 07:54:17 + 0200 notification display is off

    2016-08-03 07:54:17 00:02:02 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.service.ACSServer" id: 0x0x10000013e [system: PrevIdle]

    2016-08-03 07:54:17 00:02:02 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.sdd" id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 07:54:17 00:02:02 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.quicklook" id: 0x0x10000013c [system: PrevIdle]

    2016-08-03 07:54:17 00:02:02 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.server.filesharing" id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 07:54:17 00:02:02 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ppp.l2tp" id: 0x0x10000013a [system: PrevIdle]

    2016-08-03 07:54:17 00:02:02 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ftpserver" id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 07:54:17 00:02:02 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.AssetCache" id: 0 x 0 x 100000137 [system: PrevIdle]

    2016-08-03 07:54:17 00:02:01 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" id: 0x0x80000013f [system: PrevIdle]

    2016-08-03 07:54:31 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 07:56:29 + 0200 assertions PID 727 (diskmanagementd) published "com.apple.diskmanagementd" 00:00:15 id PreventUserIdleSystemSleep: 0 x 0 x 100000201 [system: PrevIdle]

    2016-08-03 07:58:38 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 07:58:38 + 0200 display Notification is enabled

    2016-08-03 07:58:44 + 0200 assertions PID 114 (hidd) created UserIsActive "com.apple.iohideventsystem.queue.tickle" 00:00:00 id: 0 x 0 x 900000206 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published "com.apple.audio.context91.preventuseridledisplaysleep" id PreventUserIdleDisplaySleep: 0x0x50000017f [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published "com.apple.audio.context91.preventuseridlesleep" id PreventUserIdleSystemSleep: 0x0x10000017e [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context92.preventuseridledisplaysleep" id: 0 x 0 x 500000181 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context92.preventuseridlesleep" id: 0 x 0 x 100000180 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context93.preventuseridledisplaysleep" id: 0 x 0 x 500000183 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context93.preventuseridlesleep" id: 0 x 0 x 100000182 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context94.preventuseridledisplaysleep" id: 0 x 0 x 500000185 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context94.preventuseridlesleep" id: 0 x 0 x 100000184 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context86.preventuseridledisplaysleep" id: 0 x 0 x 500000176 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context86.preventuseridlesleep" id: 0 x 0 x 100000175 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context87.preventuseridledisplaysleep" id: 0 x 0 x 500000178 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context87.preventuseridlesleep" id: 0 x 0 x 100000177 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published "com.apple.audio.context88.preventuseridledisplaysleep" id PreventUserIdleDisplaySleep: 0x0x50000017a [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context88.preventuseridlesleep" id: 0 x 0 x 100000179 [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published "com.apple.audio.context89.preventuseridledisplaysleep" id PreventUserIdleDisplaySleep: 0x0x50000017c [system: PrevIdle DeclUser kDisp]

    2016-08-03 07:58:55 00:06:33 + 0200 assertions PID 177 (coreaudiod) published "com.apple.audio.context89.preventuseridlesleep" id PreventUserIdleSystemSleep: 0x0x10000017b [system: PrevIdle DeclUser kDisp]

    Sleep / wakes up from boot to 2016-08-03 07:52:15 + 0200 Wake Dark Count in this sleep cycle: 0

    Timestamp delay Message duration field

    ==========                ======                  =======                                                                        ========      =====

    UUID: (null)

    2016-08-03 11:57:23 + 0200 start powerd process is started

    2016-08-03 11:57:23 + 0200 summary - [system: no Assertions] using AC

    2016-08-03 11:57:23 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 11:57:55 + 0200 assertions PID 114 (hidd) created UserIsActive "com.apple.iohideventsystem.queue.tickle" 00:00:00 id: 0x0x9000001e0 [system: PrevIdle DeclUser kDisp]

    2016-08-03 11:58:30 + 0200 assertions PID 55 (UserEventAgent) TimedOut PreventUserIdleSystemSleep ' CDSystemMonitor: delay notifications on the switch to an electrical outlet "00:01:04 id: 0 x 0 x 100000144 [system: PrevIdle DeclUser kDisp]

    2016-08-03 11:58:30 + 0200 summary - [system: PrevIdle DeclUser kDisp] using AC

    2016-08-03 11:58:55 + 0200 assertions PID 114 (hidd) TimedOut UserIsActive "com.apple.iohideventsystem.queue.tickle" 00:01:00 id: 0x0x9000001e0 [system: PrevIdle DeclUser kDisp]

    2016-08-03 11:58:55 + 0200 summary - [system: PrevIdle] using AC

    2016-08-03 11:58:56 + 0200 notification display is off

    2016-08-03 11:58:56 + 0200 assertions PID 221 (backupd) PreventUserIdleSystemSleep summary "Time Machine backup" 00:00:00 id: 0x0x1000001ff [system: PrevIdle]

    2016-08-03 11:58:56 00:01:32 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.service.ACSServer" id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 11:58:56 00:01:32 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.sdd" id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 11:58:56 00:01:32 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.quicklook" id: 0x0x10000013a [system: PrevIdle]

    2016-08-03 11:58:56 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.server.filesharing" 00:01:32 id: 0 x 0 x 100000139 [system: PrevIdle]

    2016-08-03 11:58:56 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ppp.l2tp" 00:01:32 id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 11:58:56 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ftpserver" 00:01:32 id: 0 x 0 x 100000131 [system: PrevIdle]

    2016-08-03 11:58:56 00:01:32 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.AssetCache" id: 0x0x10000012f [system: PrevIdle]

    2016-08-03 11:58:56 00:01:32 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" id: 0x0x80000013f [system: PrevIdle]

    2016-08-03 11:58:56 + 0200 assertions PID 221 (backupd) BackgroundTask summary "Time Machine backup" 00:00:00 id: 0x0xb000001fe [system: PrevIdle]

    2016-08-03 11:58:56 + 0200 assertions PID 55 (UserEventAgent) summary BackgroundTask "com.apple.backupd - auto ' 00:00:30 id: 0x0xb000001ea [system: PrevIdle]

    2016-08-03 11:59:10 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 11:59:40 + 0200 assertions PID 682 (diskmanagementd) published PreventUserIdleSystemSleep "com.apple.diskmanagementd" 00:00:29 id: 0 x 0 x 100000200 [system: PrevIdle]

    2016-08-03 12:01:39 + 0200 assertions PID 866 (diskmanagementd) published "com.apple.diskmanagementd" 00:00:15 id PreventUserIdleSystemSleep: 0x0x10000020c [system: PrevIdle]

    2016-08-03 12:01:43 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 12:01:43 + 0200 display Notification is enabled

    2016-08-03 12:02:47 + 0200 notification display is off

    2016-08-03 12:02:47 + 0200 assertions PID 221 (backupd) PreventUserIdleSystemSleep summary "Time Machine backup" 00:03:52 id: 0x0x1000001ff [system: PrevIdle]

    2016-08-03 12:02:47 00:05:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.service.ACSServer" id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 12:02:47 00:05:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.sdd" id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 12:02:47 00:05:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.quicklook" id: 0x0x10000013a [system: PrevIdle]

    2016-08-03 12:02:47 00:05:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.server.filesharing" id: 0 x 0 x 100000139 [system: PrevIdle]

    2016-08-03 12:02:47 00:05:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ppp.l2tp" id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 12:02:47 00:05:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ftpserver" id: 0 x 0 x 100000131 [system: PrevIdle]

    2016-08-03 12:02:47 00:05:24 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.AssetCache" id: 0x0x10000012f [system: PrevIdle]

    2016-08-03 12:02:47 00:05:23 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" id: 0x0x80000013f [system: PrevIdle]

    2016-08-03 12:02:47 + 0200 assertions PID 221 (backupd) BackgroundTask summary "Time Machine backup" 00:03:52 id: 0x0xb000001fe [system: PrevIdle]

    2016-08-03 12:02:47 + 0200 assertions PID 55 (UserEventAgent) summary BackgroundTask "com.apple.backupd - auto ' 00:04:22 id: 0x0xb000001ea [system: PrevIdle]

    2016-08-03 12:03:01 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 12:06:09 + 0200 assertions PID 948 (diskmanagementd) published "com.apple.diskmanagementd" 00:00:15 id PreventUserIdleSystemSleep: 0 x 0 x 100000218 [system: PrevIdle]

    2016-08-03 12:06:37 + 0200 assertions PID 221 (backupd) released BackgroundTask 'Backup Time Machine' 00:07:41 id: 0x0xb000001fe [system: PrevIdle]

    2016-08-03 12:06:37 + 0200 assertions PID 221 (backupd) released PreventUserIdleSystemSleep 'Backup Time Machine' 00:07:41 id: 0x0x1000001ff [system: PrevIdle]

    2016-08-03 12:06:37 + 0200 assertions PID 55 (UserEventAgent) published BackgroundTask "com.apple.backupd - auto ' 00:08:12 id: 0x0xb000001ea [system: PrevIdle]

    2016-08-03 12:06:52 + 0200 assertions PID 55 (UserEventAgent) published BackgroundTask "com.apple.metadata.mds_stores.power" 00:01:00 id: 0x0xb00000217 [system: PrevIdle]

    2016-08-03 12:08:25 + 0200 assertions PID 93 (apsd) published ApplePushServiceTask ' com.apple.apsd - recreatecourierstate - push.apple.com ' 00:00:10 id: 0x0xb0000021b [system: PrevIdle]

    2016-08-03 12:19:34 + 0200 assertions PID 465 (NotificationCenter) created DisplayWake "com.apple.notificationcenter.sleeping - note" 00:00:00 id: 0x0xe00000241 [system: PrevIdle DispWake]

    2016-08-03 12:19:34 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 12:19:34 + 0200 display Notification is enabled

    2016-08-03 12:19:44 + 0200 assertions PID 465 (NotificationCenter) published "Com.apple.notificationcenter.sleeping - note" DisplayWake 00:00:10 id: 0x0xe00000241 [system: PrevIdle]

    2016-08-03 12:19:44 + 0200 notification display is off

    2016-08-03 12:19:44 00:22:21 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.service.ACSServer" id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 12:19:44 00:22:21 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.sdd" id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 12:19:44 00:22:21 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.quicklook" id: 0x0x10000013a [system: PrevIdle]

    2016-08-03 12:19:44 00:22:21 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.server.filesharing" id: 0 x 0 x 100000139 [system: PrevIdle]

    2016-08-03 12:19:44 00:22:21 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ppp.l2tp" id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 12:19:44 00:22:21 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ftpserver" id: 0 x 0 x 100000131 [system: PrevIdle]

    2016-08-03 12:19:44 00:22:21 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.AssetCache" id: 0x0x10000012f [system: PrevIdle]

    2016-08-03 12:19:44 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" 00:22:20 id: 0x0x80000013f [system: PrevIdle]

    2016-08-03 12:19:44 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 12:20:37 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 12:20:37 + 0200 display Notification is enabled

    2016-08-03 12:21:05 + 0200 assertions PID 114 (hidd) created UserIsActive "com.apple.iohideventsystem.queue.tickle" 00:00:00 id: 0 x 0 x 900000255 [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:22:05 + 0200 assertions PID 114 (hidd) TimedOut UserIsActive "com.apple.iohideventsystem.queue.tickle" 00:00:59 id: 0 x 0 x 900000255 [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:22:05 + 0200 notification display is off

    2016-08-03 12:22:05 00:24:42 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.service.ACSServer" id: 0x0x10000013d [system: PrevIdle]

    2016-08-03 12:22:05 00:24:42 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.sdd" id: 0x0x10000013b [system: PrevIdle]

    2016-08-03 12:22:05 00:24:42 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.serverdocs.quicklook" id: 0x0x10000013a [system: PrevIdle]

    2016-08-03 12:22:05 00:24:42 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.server.filesharing" id: 0 x 0 x 100000139 [system: PrevIdle]

    2016-08-03 12:22:05 00:24:42 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ppp.l2tp" id: 0 x 0 x 100000138 [system: PrevIdle]

    2016-08-03 12:22:05 00:24:42 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.ftpserver" id: 0 x 0 x 100000131 [system: PrevIdle]

    2016-08-03 12:22:05 00:24:42 + 0200 assertions PID 69 (com.apple.serverd) summary PreventUserIdleSystemSleep "com.apple.AssetCache" id: 0x0x10000012f [system: PrevIdle]

    2016-08-03 12:22:05 00:24:41 + 0200 assertions PID 68 (powerd) summary ExternalMedia "com.apple.powermanagement.externalmediamounted" id: 0x0x80000013f [system: PrevIdle]

    2016-08-03 12:22:19 + 0200 assertions Kernel Idle sleeping antireflux: - none -.

    2016-08-03 12:22:42 + 0200 assertions PID 93 (apsd) published ApplePushServiceTask "com.apple.apsd - datareceived - push.apple.com ' 00:00:14 id: 0x0xb00000269 [system: PrevIdle]

    2016-08-03 12:25:22 + 0200 assertions PID 55 (UserEventAgent) TimedOut PreventUserIdleSystemSleep ' CDSystemMonitor: delay notifications on the switch to an electrical outlet "00:01:05 id: 0x0x10000026f [system: PrevIdle]

    2016-08-03 12:25:25 + 0200 assertions Kernel Idle sleeping antireflux: IODisplayWrangler

    2016-08-03 12:25:25 + 0200 display Notification is enabled

    2016-08-03 12:25:25 + 0200 assertions PID 114 (hidd) created UserIsActive "com.apple.iohideventsystem.queue.tickle" 00:00:00 id: 0 x 0 x 900000271 [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:25:29 00:04:24 + 0200 assertions PID 176 (coreaudiod) published "com.apple.audio.context109.preventuseridledisplaysleep" id PreventUserIdleDisplaySleep: 0x0x50000024e [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:25:29 00:04:24 + 0200 assertions PID 176 (coreaudiod) published "com.apple.audio.context109.preventuseridlesleep" id PreventUserIdleSystemSleep: 0x0x10000024d [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:25:29 00:04:24 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context110.preventuseridledisplaysleep" id: 0 x 0 x 500000250 [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:25:29 00:04:24 + 0200 assertions PID 176 (coreaudiod) published "com.apple.audio.context110.preventuseridlesleep" id PreventUserIdleSystemSleep: 0x0x10000024f [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:25:29 00:04:24 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context111.preventuseridledisplaysleep" id: 0 x 0 x 500000252 [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:25:29 00:04:24 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context111.preventuseridlesleep" id: 0 x 0 x 100000251 [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:25:29 00:04:24 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleDisplaySleep "com.apple.audio.context112.preventuseridledisplaysleep" id: 0 x 0 x 500000254 [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:25:29 00:04:24 + 0200 assertions PID 176 (coreaudiod) published PreventUserIdleSystemSleep "com.apple.audio.context112.preventuseridlesleep" id: 0 x 0 x 100000253 [system: PrevIdle DeclUser kDisp]

    2016-08-03 12:27:58 + 0200: showing all currently detained IOKit assertions of power

    Systemic assertion status:

    BackgroundTask 0

    ApplePushServiceTask 0

    UserIsActive 1

    PreventUserIdleDisplaySleep 0

    PreventSystemSleep 0

    ExternalMedia 1

    PreventUserIdleSystemSleep 1

    NetworkClientActive 0

    Classified by process of owning:

    The NEST 69 (com.apple.serverd): 00:30:35 [0x000000020001013d] PreventUserIdleSystemSleep named: 'com.apple.service.ACSServer '.

    The NEST 69 (com.apple.serverd): 00:30:35 [0x000000020001013b] PreventUserIdleSystemSleep named: 'com.apple.serverdocs.sdd '.

    The NEST 69 (com.apple.serverd): 00:30:35 [0x000000020001013a] PreventUserIdleSystemSleep named: 'com.apple.serverdocs.quicklook '.

    The NEST 69 (com.apple.serverd): 00:30:35 [0 x 0000000200010139] PreventUserIdleSystemSleep named: 'com.apple.server.filesharing '.

    The NEST 69 (com.apple.serverd): 00:30:35 [0 x 0000000200010138] PreventUserIdleSystemSleep named: 'com.apple.ppp.l2tp '.

    The NEST 69 (com.apple.serverd): 00:30:35 [0 x 0000000200010131] PreventUserIdleSystemSleep named: 'com.apple.ftpserver '.

    The NEST 69 (com.apple.serverd): 00:30:35 [0x000000020001012f] PreventUserIdleSystemSleep named: 'com.apple.AssetCache '.

    114 (hidd) PID: [0 x 0000069300090271] 00:02:32 UserIsActive named: 'com.apple.iohideventsystem.queue.tickle '.

    Time-out triggers in 577 dry Action = TimeoutActionRelease

    68 (powerd) PID: [0x000000030008013f] 00:30:34 ExternalMedia named: 'com.apple.powermanagement.externalmediamounted '.

    The Assertions of the kernel: 0x10c = USB, BT - HID, MAGICWAKE

    ID = 501 level = 0 x 255 4 = mod USB = 01/01/70 01:00 description = com.apple.usb.externaldevice.14300000 = USB 2.0 Hub owner

    ID = 502 level = 0 x 255 4 = mod USB = 01/01/70 01:00 description = com.apple.usb.externaldevice.14700000 owner = Hub USB3.0

    ID = 503 level = 0 x 255 4 = mod USB = 01/01/70 01:00 description = com.apple.usb.externaldevice.14340000 = USB 2.0 Hub owner

    ID = 504 level = 0 x 255 4 = mod USB = 01/01/70 01:00 description = com.apple.usb.externaldevice.14710000 owner = ACASIS

    ID = 506 level = 0 x 255 4 = mod USB = 01/01/70 01:00 description = com.apple.usb.externaldevice.14730000 owner = AVerMedia U3

    ID = 507 level = 0 x 255 4 = mod USB = 01/01/70 01:00 description = com.apple.usb.externaldevice.14740000 owner = Hub USB3.0

    ID = 508 level = 0 x 255 4 = mod USB = 01/01/70 01:00 description = com.apple.usb.externaldevice.14344000 = USB 2.0 Hub owner

    ID = 509 level = 0 x 255 4 = mod USB = 01/01/70 01:00 description = com.apple.usb.externaldevice.14744000 owner = Hub USB3.0

    ID = 510 level = 0 x 255 8 = BT - HID mod = 01/01/70 01:00 description = com.apple.driver.IOBluetoothHIDDriver owner = AppleHSBluetoothDevice

    ID = 511 level = 0 x 255 8 = BT - HID mod = 01/01/70 01:00 description = com.apple.driver.IOBluetoothHIDDriver owner = AppleHSBluetoothDevice

    ID = 512 level 255 = 0 x 100 = MAGICWAKE mod = 01/01/70 01:00 description = en1 owner = en1

    ID = 514 level = 0 x 255 4 = mod USB = 01/01/70 01:00 description = com.apple.usb.externaldevice.14341000 owner = CP1300EPFCLCD

    Idle sleep antireflux: IODisplayWrangler

    Please post a report of EtreCheckof your system. We then look for obvious problems. Please click on the link, download the application and run the report. Once you have the report, please copy and paste into your response to this post.

    If you would like more information on what is EtreCheck, just click on the link and you will find a description of the application.

  • How to print the file to a folder of music details

    I would like to print the Duratón or the length of the music files I have in my repertoire of music.
    How to do this. I tried commands like
    dir * / has: duration

    As far as I KNOW, you will need to write a script to retrieve and print this information.  You can see the duration field in Windows Explorer by clicking View > choose details and selecting 'period' in the list, click View > Details.

    However, even once as far as I know, not all the music files have these extended attributes (at least as much to see their Windows is concerned).  After setting my opinion of 'Details' of Windows Explorer to include a period, files mp3 revealed information, but downloaded on iTunes M4A or M4P files do not have.

    An example of Visual Basic (to be recorded as *.vbs) Script that displays all extended attributes of a file is here: http://technet.microsoft.com/en-us/library/ee176615.aspx

    To see how it works, copy the script and paste it into a Notepad window and save as test.vbs.  Then double click on it.  You need to change the name of the file to the third line of C:\Scripts in a folder containing mp3 files.  For your first test, choose a folder with a few files only, because as it is, this script opens a dialog box (which you will need to click OK) for each attribute of each file.

    Here is a list of all the attributes (this script is written in KiXtart, a different scripting language): http://www.kixtart.org/forums/ubbthreads.php?ubb=showflat&Number=160880&page=1

    From this link, you can determine that 'Name' is attribute 0 and 'Time' attribute 21

    You could then modify the example file from the first link of substitute following FOR - NEXT statement

    For i = 0 to 34 Wscript.Echo I & vbtab & arrHeaders (i) ____
    & ":"& objFolder.GetDetailsOf (strFileName, i).
    Next

    with two orders only get attributes 0 (name) and 21 (duration) for each file

    Wscript.Echo 0 & vbtab & arrHeaders (0) _
    & ":" & objFolder.GetDetailsOf (strFileName, 0) ".
    Wscript.Echo 21 & vbtab & arrHeaders (21) _
    & ":" & objFolder.GetDetailsOf (strFileName, 21) ".

    Also, be sure to replace 'C:\Scripts' in the third line of the script with the full filename of your music collection.

    I leave as an exercise for you how to add the loop necessary to deal with the situation of your music folder with subfolders.

    Save the file as GetAttribs.vbs (or any other file you want, ending with .vbs name)

    Open a command prompt window (start > run > cmd > OK)
    Dough (click the icon in the upper left corner to get the menu, and then select Edition > paste) the following

    cscript //nologo "C:\Documents and Settings\YOURUSERNAME\Desktop\test.vbs" > "C:\Documents and Settings\YOURUSERNAME\Desktop\output.txt".

    Press enter

    You can work on that actually look nice if you wish.

    As always, there are several ways to achieve this.  I am far from a VBS or expert script, and I'm sure there are more elegant ways of doing things.

  • Installation of Oracle Fusion Middleware, forms and reports 11g Release 2 (11.1.2.2.0)

    Hi all

    RHEL 6.5

    I want to install forms/States 11 g (after installing weblogic)

    I'm on step 15 of 16 when I encountered error

    Help, please. Thank you.

    Capture.JPG

    The error log is shown below:

    getDomainRuntimeMBeanServerConnection...

    Connecting to the DURATION field...

    try to connect to tmsdevapps 7001

    Successfully connected to execution of the field...

    try to connect to tmsdevapps 7001

    Successful

    Connection to the server MBean is: javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection@4e752dc9

    Run from server: WLS_FORMS

    In the start menu public

    ASWLServer.start...

    getDomainRuntimeMBeanServerConnection...

    Connecting to the DURATION field...

    try to connect to tmsdevapps 7001

    Successfully connected to execution of the field...

    getDomainRuntimeMBeanServerConnection...

    Connecting to the DURATION field...

    try to connect to tmsdevapps 7001

    Successfully connected to execution of the field...

    oracle.as.provisioning.exception.ASProvisioningException

    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:872)

    at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)

    at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)

    at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)

    at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)

    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:375)

    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)

    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)

    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)

    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:96)

    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:186)

    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)

    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)

    at java.lang.Thread.run(Thread.java:662)

    Caused by: oracle.as.provisioning.exception.ASProvWorkflowException

    at oracle.as.provisioning.weblogic.ASWLServer._start(ASWLServer.java:1196)

    at oracle.as.provisioning.weblogic.ASWLServer.start(ASWLServer.java:999)

    at oracle.as.provisioning.engine.WorkFlowExecutor._startStopServersAndApps(WorkFlowExecutor.java:814)

    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:483)

    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)

    ... 13 more

    Here are the details and screenshots.

    http://docs.Oracle.com/CD/E24269_01/doc.11120/e23960/deinstall_screens.htm#FRINS145

  • Timelapse in first Elements

    Should what settings I do in elements first to replay a series of still images as a timelapse.

    I loaded the stills, but when I click play it takes 5 minutes to play 60 still images. I expect to take about 2 seconds at 30 frames per second

    geoffhodgson

    I think that your question is on the default image that you have in the preferences (Edit Menu/preferences/general). The default value of the program is of 150 executives (or 5 seconds) @ 30 frames per seconds, put in place.

    So if it takes 5 minutes to reading your 60 images, which tells me that your still Image default duration is 150 frame and which must be lowered so that your reading of 60 photos in 2 seconds.

    If the 60 stills @ 5 seconds each are already on the timeline, then select all, right-click anywhere in the selection in the menu drop-down select Time Stretch and in the defined Time Stretch dialog box the duration field in the Time Stretch dialog box for 1 frame - should read 00; 00; 00; 01 (representing hours, minutes, seconds; images).

    Alternatively, you could go to the Edit Menu/preferences/general and set the still Image default duration 1 framework. Then after you brought this together, all imported still images and dragged to the timeline will have a duration of 1 image (0.033 seconds). The setting in the preferences is a project. So, remember to change this setting to be appropriate for other projects.

    Please read and review, and so let me know if you're OK with the above information.

    Thank you.

    RTA

  • Filter records

    Hello

    I have a page that is connected to a database using php. Its a simple lists page. You can see the page here http://www.animalhealthadvisor.co.uk/animal-health-jobs-recruitment-vacancies.php. Everything works fine, but I'd really like to add a filter/search option on the left side of the page.

    The database in phpMyAdmin is called 'jobs', and one of the fields in the database I want to add a filter on is called 'Région' is the name of the field in the database I want to be able to hide the other lists based on their choice in a menu drop-down. You can see what I'm trying to do here http://www.animalhealthadvisor.co.uk/animal-health-jobs-recruitment-vacanciesSEARCH.php. In the menu dropdown I have filled dynamically its values from the database and added a button to start the search

    I'm really stuck here and don't know how I can fix it. Any help would be greatly appreciated.

    I realized Traoré the drop-down menu on the second link I provided for example ("London") returns more than once and think I need to create a relational database for this. But I was hoping to try to break the problem of research first.

    If you would like more information, please let me know if this was not clear enough, or if it is easier I could provide some zip files to take a look at...

    Thanks again in advance.

    The way you filter by region is by adding a WHERE clause of your SQL query.

    You must define the method on the form to GET. Here you can enter the value of $_GET ['region'] and use it in the SQL query. Because the value is a URL, you must make sure that the value is disinfected before being used in the SQL query. If you use Dreamweaver server behaviors, Dreamweaver generates the code for you.

    In the advanced Recordset dialog box, add 'WHERE table_name.region = var1' (without the quotes) at the end of the SQL query, by replacing 'table_name' with the actual name of the table.

    Click on the button "+" next to Variables to open the edit the Variables dialog box.

    In the name field, type var1.

    The value of Type text.

    By default,-1 or the name of the default region to display

    In the duration field, type $_GET ['region']

  • Need help to calculate the start and end time and place the result in a term like text box

    I did a search on the forum for calculating start and end time and found the code depending on which I am using as a formcalc on the duration field.
    ==============================================================
    Form1. Page1.duration::calculate - (FormCalc, client)

    If (HasValue (StartTime) and HasValue (EndTime)) then
    industrial var = Time2Num (StartTime.formattedValue, "h: mm A")
    var = Time2Num out_ (EndTime.formattedValue, "h: mm A")
    If (IN2 > = out_) then
    xfa.host.messageBox ("start time cannot be greater than or equal to the end time.")
    $.rawValue = null
    on the other
    var out_ - IN2 = diff
    $.rawValue = diff/3600000
    endif
    on the other
    $.rawValue = null
    endif
    =============================================================

    Then, when I enter for example from 15:30, an hour of beginning and end of 04:00

    The duration field will say 0.5

    How can I get my form to say 30 minutes instead of placing a decimal?

    Secondly, how can I use field models LC where the employee can just type 330 or 03:30 and it automatically based on the computer's clock on time to start 15:30?

    Any help will be greatly appreciated.  Thank you.

    Attached is the form for display:

    https://Acrobat.com/#d=f1kxh5qjuow5ujyZduF8OQ

    To view the results in a regular time format, you can use:

    $.rawValue = Num2Time (diff/3600000, "HH: mm")

    For a flexible time entry check this example.

    http://thelivecycle.blogspot.com/2011/05/flexible-Eingabe-von-Daten-und-Zeiten.html

  • Encrypted resource problem

    Hi there, I am trying to assign a work resource to a known activity with a unit price and number of units plan; However the cost gives me the Primavera is 8 times the number I want (I guess due to the number of hours per day).

    Example:
    The activity is long, I have want to assign a resource to work with 26 units at a price of £500 / unit of 26 weeks. The budgeted cost primavera shows on this £104 000 £13 000 is not
    I can't do it through resource type material it screws the calculation of earned value.

    What default values should I adjust to get it to do what I need? Is it possible to change the unit of resources money daily rate rather than price/time?

    Thanks in advance

    If price / day is $ 8, you can simply define resource price / h $ 1, assuming that 1 d = 8 h according to admin pref used for conversion.

    Notes:

    -If you use units of time P6 v7 conversion inbetween can be defined at the level of activity and not only admin prefs still not clear which attitude prevails :)

    -in all the versions, I recommend that you always set the checkbox not to allow individual users fix the conversion rate between the units of time.

    ((- user prefs parameters delay units (mn, h, d, etc.) that you regularly use a) work at the entrance of the units and not salary and duration values b). Depending on these settings, if you enter 8 in a field of units, the system assumes 8 h for example, and even in a duration field 10 means 10 d, BUT

    -You can always enter the value with the abbreviation. This way means 2d 2 days. If you do that in a field of units (for example the budgeted) with a 'hour' pref Setup to display the resource units (e.g. hours of work), the system will convert 2d 16 h according to the configuration of the admin of 1 d = 8 h.
    If necessary, check the setting of pref admin for abbreviations.

    -calendar of activities / resources calendar definitions are used to plan the duration of activity of Task / resource dependent on type of activities, respectively.

    -default project or the overall schedule can be used to group bands

    -If the units of budgeted resources are not important and cost is all you need (I doubt it) you can assume a budgeted units / time of 1 h/d. you can do it for the assignment (resource R in the activity) in the resource or resources screen tab OR if it is common for resources R set default units / hour to 1 h/d in the dictionary.

    I hope this helps.

    Published by: Tibi on Jan 8, 2010 16:34

  • Question about the use of dates

    Hello

    I have a few SQL used for a calendar in the APEX and have a duration field to set the end date.

    What I need is an additional field that would be a date, but I need a registration for all dates in the date from beginning to end date, including all the dates between the two.
    select ID
             ,VISIT_DATE
             ,duration
             ,VISIT_DATE + round(DURATION)-1 END_DATE
    from FIELD_VISITS_CALENDAR
    
    Results
    
    ID     |VISIT_DATE|DURATION     |END_DATE
    -------------------|------------|---------
    241     |22-JAN-09 |     .5     |22-JAN-09
    239     |16-JAN-09 |     .5     |16-JAN-09
    242     |23-JAN-09 |     2     |24-JAN-09
    237     |08-JAN-09 |     1.5     |09-JAN-09
    221     |12-DEC-08 |     2     |13-DEC-08
    233     |23-DEC-08 |     1     |23-DEC-08
    238     |15-JAN-09 |     1     |15-JAN-09
    240     |09-JAN-09 |     1     |09-JAN-09
    
    Wanted results
    
    ID |VISIT_DATE|DURATION       |END_DATE  |CAL_DATE
    ---|----------|---------------|----------|---------
    241|22-JAN-09 |     .5     |22-JAN-09|22-JAN-09
    239|16-JAN-09 |     .5     |16-JAN-09|16-JAN-09
    242|23-JAN-09 |     2     |24-JAN-09|23-JAN-09
    242|23-JAN-09 |     2     |24-JAN-09|24-JAN-09
    237|08-JAN-09 |     1.5     |09-JAN-09|08-JAN-09
    237|08-JAN-09 |     1.5     |09-JAN-09|09-JAN-09
    221|12-DEC-08 |     2     |13-DEC-08|12-DEC-08
    221|12-DEC-08 |     2     |13-DEC-08|13-DEC-08
    233|23-DEC-08 |     1     |23-DEC-08|23-DEC-08
    238|15-JAN-09 |     1     |15-JAN-09|15-JAN-09
    240|09-JAN-09 |     1     |09-JAN-09|09-JAN-09
    
    
    {code}
    
    Thanks
    Adam                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    Like this?

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select 241 as id, to_date('22-jan-2009','dd-mon-yyyy') as visit_date, 0.5 as duration from dual union all
      2             select 239, to_date('16-jan-2009','dd-mon-yyyy'), 0.5 from dual union all
      3             select 242, to_date('23-jan-2009','dd-mon-yyyy'), 2 from dual union all
      4             select 237, to_date('08-jan-2009','dd-mon-yyyy'), 1.5 from dual union all
      5             select 221, to_date('12-jan-2009','dd-mon-yyyy'), 2 from dual union all
      6             select 233, to_date('23-jan-2009','dd-mon-yyyy'), 1 from dual union all
      7             select 238, to_date('15-jan-2009','dd-mon-yyyy'), 1 from dual union all
      8             select 240, to_date('09-jan-2009','dd-mon-yyyy'), 1 from dual)
      9  --
     10  select distinct
     11         id
     12        ,visit_date
     13        ,duration
     14        ,visit_date+(case when rn < round(duration) then rn else 0 end) as end_date
     15  from t, (select rownum-1 rn from dual connect by rownum <= (select max(duration) from t)) x
     16* order by t.id
    SQL> /
    
            ID VISIT_DATE   DURATION END_DATE
    ---------- ---------- ---------- ----------
           221 12/01/2009          2 12/01/2009
           221 12/01/2009          2 13/01/2009
           233 23/01/2009          1 23/01/2009
           237 08/01/2009        1.5 08/01/2009
           237 08/01/2009        1.5 09/01/2009
           238 15/01/2009          1 15/01/2009
           239 16/01/2009         .5 16/01/2009
           240 09/01/2009          1 09/01/2009
           241 22/01/2009         .5 22/01/2009
           242 23/01/2009          2 23/01/2009
           242 23/01/2009          2 24/01/2009
    
    11 rows selected.
    
    SQL>
    
  • Definitions of fields related to the duration of use of tracking data

    Hi all

    After reading the related documentation on the monitoring of the use, I am still confused the true meaning of the following fields:

    COMPILE_TIME_SEC The time in seconds required to compile the query.
    C UM_DB_TIME_SEC The total amount of time in seconds during which the Oracle BI server expected physical databases on behalf of a front-end application logic.
    TOTAL_TIME_SEC The time in seconds that the Oracle BI server worked on the request while the customer waited answers to his query requests.
    START_TS The date and time that the logical request has been submitted.
    END_TS The date and time of the logical request ends. The start and end timestamps also reflect that the application spent waiting for resources are available at any time.

    My questions are:
    1 is TOTAL_TIME_SEC = C U M_DB_TIME_SEC + COMPILE_TIME_SEC? Why are there cases where C U M_DB_TIME_SEC > TOTAL_TIME_SEC?
    2. I have connected the case where (END_TS - START_TS) > TOTAL_TIME_SEC. Why would this happen?


    Could someone clarify the meaning of these fields for me please? Thank you very much!!


    =================

    I recorded the following data with usage tracking, announced here as examples:

    1.
    compile_time_sec = 0
    um_db_time_sec c = 23
    total_time_sec = 12
    start_ts = 18 August 09 (14:15:47)
    end_ts = 18 August 09 (14:16:00)
    end_ts - start_ts (in sec) = 13
    cache_ind_flg = N
    num_cache_hits = 0
    num_cache_inserted = 1

    2.
    compile_time_sec = 0
    um_db_time_sec c = 125
    total_time_sec = 110
    start_ts = 21 August 09 (15: 45:37)
    end_ts = 21 August 09 (16: 47:35)
    end_ts - start_ts (in sec) = 3718
    cache_ind_flg = N
    num_cache_hits = 0
    num_cache_inserted = 0

    3.
    compile_time_sec = 0
    um_db_time_sec c = 1252
    total_time_sec = 932
    start_ts = 24 August 09 (17:23:40)
    end_ts = 24 August 09 (17: 49:27)
    end_ts - start_ts (in sec) = 1547
    cache_ind_flg = N
    num_cache_hits = 0
    num_cache_inserted = 0

    See DOC ID 973090.1 in metalink.

  • Duration numbers

    I'm doing the calculation to divide miles by mph to give the necessary time and then add them together and add to a start time, to give the time of arrival.

    What functions can I use and which units should value fields?

    Thank you very much

    Derek

    You can do something like this:

    C2 = A2÷B2

    It's abbreviation dethrone select cell C2, then type (or copy and paste it here) the formula:

    A2÷B2

    Select cell C2, copy

    Select cell C3, dough

    C4 = DURATION (0,0, SUM (C2:C3))

    C6 = SUM (C4:C5)

    C8 = C6 + C7

    beside you to type a time complete in cell C7.  The correct format must include a valid date and time.

    If you omit the date digits will add the date on which you enter the time automatically and the format of the cell to display only the time

    by doing this you can cross Middle night limits correctly.

  • 2.6.5 lightning Thunderbird 24.5.0, add-on. Default calendar, 60 min. length 'event '. Cannot increase the duration manually in the box dialog "Edit event" or "options".

    My computer is an ACER Aspire with Windows 7, 64-bit, processor i3 - 370 M. I used Thunderbird and the add-on Lightning for years and love it! The above problem (event time cannot be set either shorter or longer than the 60 minutes.) has started happening recently (I guess after a recent automatic update of one or two programs).
    To solve the problem, I tried:
    1. to change the time of 'end' in the dialog "edit event". When I changed the "end time" 09:00 the "beginning" at 12:00, climbed from 08:00 to 11:00, that is to say. keeping the default of 60 minutes.

    2. I then tried to change the duration of the default event of 60 minutes to 240 minutes in 'Options '. the dialog box has accepted the change, I saved; restarted; options checked to make sure that he had maintained change duration (he had), but the "edit event" dialog box always always at 60 minutes and could not manually increased or decreased.

    Can you help me?

    At the right end of the field time is a small icon. When the tips of the two links are in contact with the time of the event is locked to the default duration. Click on this icon and will separate the ends of the links and then you can change the duration.

Maybe you are looking for

  • Disable all addons on particular websites

    This may seem like a stupid question but is it possible to disable all addons on a site-by-site basis? I am aware that some addons have parameters that allow you to add fields that will be ignored by the addon, but if I wanted to disable all addons f

  • A few questions on T2130CT

    Hello I recently bought a s/h T2130CT for my grandson. Windows 95 is responsible, but I can not install because I don't have the Charter contract, is there a way to get around this? As there is just no cd drive not installed floopy only. There are di

  • Where are stored presets InDesign CC PDF 2015?

    Where are stored the preset PDF InDesign CC 2105?

  • Adobe products reinstalling

    My Mac had a problem starting, so I had to initialize the hard disk. All my programs has been deleted, and I'm coming back on all of my adobe products. I am currently out of the country and it seems that the products I bought do not appear in my acco

  • Characters più grandi solo su Iphone

    Salve a tutti, ho fatto a piccolo sito con e dreamweaver not being molto pratico di CSS ho solo injected table by strutturare pages con quali mi trovo molto bene a parte he fatto che in some table Dove tutti i characters sound the same default savour