JUnit Help with PriceTest fixture

Consider a grocery market where items have prices per unit but also volume prices. For example, doughnuts may be $1.00 each or 4 for $3 dollars.
public class PriceTest extends TestCase {
     public void testUnitPrice() throws Exception {
          Price price = new Price(7.0);
          assertEquals(14.0, price.calc(2));
     public void testMultiUnitPrice() throws Exception {
          Price price = new Price(1.0, 4, 3.0);
          assertEquals(6.0, price.calc(8));
     public void testCombinedPrice() throws Exception {
          Price price = new Price(1.0, 4, 3.0);
          assertEquals(4.0, price.calc(5));
}Here's my "Object under Test":
public class Price {
     private final double price;
     private final Integer itemsPerPackage;
     private final Double pricePerPackage;
     public Price(double price) {
          this(price, null, null);
     public Price(double price, Integer itemsPerPackage, Double pricePerPackage) {
          this.price = price;
          this.itemsPerPackage = itemsPerPackage;
          this.pricePerPackage = pricePerPackage;
     public double calc(int count) {
          if (pricePerPackage != null) {
               return pricePerPackage * count / itemsPerPackage;
          } else {
               return price * count;
}My first two tests work inside PriceTest, but my testCombinedPrice() method throws the following error:
junit.framework.AssertionFailedError: expected:<4.0> but was:<3.75>
What can I change in the Price#calc() method to make the failing testCombinedPrice() work?

Thanks for responding, Wiraj,
The count should be seen as the "item count" so it needs to be declared as an integer...
The use case is four doughnuts are given for $3.00 plus the extra doughnut which is given for $1.00. The combined price is then $3.00 + $1.00 = $4.00 not $3.75.
Obviously, its something inside the Price#calc() method which has to be altered but I need all the tests to work (including testMultiUnitPrice() and testCombinedPrice() methods).
Is there a way to change Price#calc() method to work for both tests?
Happy coding.

Similar Messages

  • I need help with resetting my ichat. When i try to login now it wont let me... it says "AOL Instant Messenger password" and then "iChat can't log in to ... because your login ID or password is incorrect. How do I reset this if I cant log in?

    I need help with resetting my ichat. When i try to login now it wont let me... it says "AOL Instant Messenger password" and then "iChat can't log in to ... because your login ID or password is incorrect. How do I reset this if I cant log in? When I try to press online the same thing pops up and I have no way of logging in or asking for help.

    Hi,
    iChat (it would help to know which version) can accept Apple IDs as valid AIM Screen Names.
    However if you have iChat 5 or earlier you cannot use ones ending in @me.com or @icloud.com issued by iCloud. (they can be used in iChat 6 or Messages as these versions make a double login to AIM and Apple to allow the use of the password).
    In addition if you are using an Apple ID for an AIM Screen Name the password still needs to keep to the 16 character limit that AIM has.
    AN @mac.com name can be used on any version of iChat  (Until the 30th June 2014)
    As it does not need a double check with Apple you can use it to log in to the AIM Web pages
    Login here with an AIM Name registered at AIM or and @mac.com name and see if you get any suspended account messages.
    Sometimes account can be suspended. Usually because something has triggered the "Unusual Activity" item.
    About a year ago many @mac.com users that travelled out of their own country found themselves suspended when they got home.
    If the Name checks out of if an Apple ID the password in known to be 16 characters or Less then do this:-
    In Lion upwards open a Finder Window and use the Go Menu whilst holding down the ALT key.
    Select the Library that appears in the menu list.
    Navigate to Preferences.
    (If you have version earlier than Lion the just navigate to ~/Library/Preferences (that's the Library in you Home - Little House icon - folder)
    Fnd com.apple.ichat.aim.plist (even if you are using Messages)
    Drag the file to the Trash and Restart the app.
    7:39 pm      Thursday; May 29, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Need help with turning multiple rows into a single row

    Hello.
    I've come across a situation that is somewhat beyond my knowledge base. I could use a little help with figuring this out.
    My situation:
    I am attempting to do some reporting from a JIRA database. What I am doing is getting the dates and times for specific step points of a ticket. This is resulting in many rows per ticket. What I need to do is return one row per ticket with a calculation of time between each step. But one issue is that if a ticket is re-opened, I want to ignore all data beyond the first close date. Also, not all tickets are in a closed state. I am attaching code and a sample list of the results. If I am not quite clear, please ask for information and I will attempt to provide more. The database is 10.2.0.4
    select jiraissue.id, pkey, reporter, summary
    ,changegroup.created change_dt
    ,dbms_lob.substr(changeitem.newstring,15,1) change_type
    ,row_number() OVER ( PARTITION BY jiraissue.id ORDER BY changegroup.created ASC ) AS order_row
    from jiraissue
    ,changeitem, changegroup
    ,(select * from customfieldvalue where customfield = 10591 and stringvalue = 'Support') phaseinfo
    where jiraissue.project = 10110
    and jiraissue.issuetype = 51
    and dbms_lob.substr(changeitem.newstring,15,1) in ('Blocked','Closed','Testing','Open')
    and phaseinfo.issue = jiraissue.id
    and changeitem.groupid = changegroup.id
    and changegroup.issueid = jiraissue.id
    order by jiraissue.id,change_dt
    Results:
    1     21191     QCS-91     Error running the Earliest-deadlines flight interface request/response message     2008-07-16 9:30:38 AM     Open     1
    2     21191     QCS-91     Error running the Earliest-deadlines flight interface request/response message     2008-07-16 11:37:02 AM     Testing     2
    3     21191     QCS-91     Error running the Earliest-deadlines flight interface request/response message     2010-06-08 9:14:52 AM     Closed     3
    4     21191     QCS-91     Error running the Earliest-deadlines flight interface request/response message     2010-09-02 11:29:37 AM     Open     4
    5     21191     QCS-91     Error running the Earliest-deadlines flight interface request/response message     2010-09-02 11:29:42 AM     Open     5
    6     21191     QCS-91     Error running the Earliest-deadlines flight interface request/response message     2010-09-02 11:29:50 AM     Testing     6
    7     21191     QCS-91     Error running the Earliest-deadlines flight interface request/response message     2010-09-02 11:29:53 AM     Closed     7
    8     23234     QCS-208     System Baseline - OK button does not show up in the Defer Faults page for the System Engineer role      2008-10-03 10:26:21 AM     Open     1
    9     23234     QCS-208     System Baseline - OK button does not show up in the Defer Faults page for the System Engineer role      2008-11-17 9:39:39 AM     Testing     2
    10     23234     QCS-208     System Baseline - OK button does not show up in the Defer Faults page for the System Engineer role      2011-02-02 6:18:02 AM     Closed     3
    11     23977     QCS-311     Tally Sheet - Reason Not Done fails to provide reason for unassigned tasks     2008-09-29 2:44:54 PM     Open     1
    12     23977     QCS-311     Tally Sheet - Reason Not Done fails to provide reason for unassigned tasks     2010-05-29 4:47:37 PM     Blocked     2
    13     23977     QCS-311     Tally Sheet - Reason Not Done fails to provide reason for unassigned tasks     2011-02-02 6:14:57 AM     Open     3
    14     23977     QCS-311     Tally Sheet - Reason Not Done fails to provide reason for unassigned tasks     2011-02-02 6:15:32 AM     Testing     4
    15     23977     QCS-311     Tally Sheet - Reason Not Done fails to provide reason for unassigned tasks     2011-02-02 6:15:47 AM     Closed     5

    Hi,
    Welcome to the forum!
    StblJmpr wrote:
    ... I am attempting to do some reporting from a JIRA database. What is a JIRA database?
    I am attaching code and a sample list of the results. If I am not quite clear, please ask for information and I will attempt to provide more. Whenever you have a question, please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and the results you want from that data.
    Simplify the problem as much as possible. For example, if the part you don't know how to do only involves 2 tables, then jsut post a question involving those 2 tables. So you might just post this much data:
    CREATE TABLE     changegroup
    (      issueid          NUMBER
    ,      created          DATE
    ,      id          NUMBER
    INSERT INTO changegroup (issueid, created, id) VALUES (21191,  TO_DATE ('2008-07-16 09:30:38 AM', 'YYYY-MM-DD HH:MI:SS AM'),  10);
    INSERT INTO changegroup (issueid, created, id) VALUES (21191,  TO_DATE ('2008-07-16 11:37:02 AM', 'YYYY-MM-DD HH:MI:SS AM'),  20);
    INSERT INTO changegroup (issueid, created, id) VALUES (21191,  TO_DATE ('2010-06-08 09:14:52 AM', 'YYYY-MM-DD HH:MI:SS AM'),  90);
    INSERT INTO changegroup (issueid, created, id) VALUES (21191,  TO_DATE ('2010-09-02 11:29:37 AM', 'YYYY-MM-DD HH:MI:SS AM'),  10);
    INSERT INTO changegroup (issueid, created, id) VALUES (21191,  TO_DATE ('2010-09-02 11:29:42 AM', 'YYYY-MM-DD HH:MI:SS AM'),  10);
    INSERT INTO changegroup (issueid, created, id) VALUES (21191,  TO_DATE ('2010-09-02 11:29:50 AM', 'YYYY-MM-DD HH:MI:SS AM'),  20);
    INSERT INTO changegroup (issueid, created, id) VALUES (21191,  TO_DATE ('2010-09-02 11:29:53 AM', 'YYYY-MM-DD HH:MI:SS AM'),  90);
    INSERT INTO changegroup (issueid, created, id) VALUES (23234,  TO_DATE ('2008-10-03 10:26:21 AM', 'YYYY-MM-DD HH:MI:SS AM'),  10);
    INSERT INTO changegroup (issueid, created, id) VALUES (23234,  TO_DATE ('2008-11-17 09:39:39 AM', 'YYYY-MM-DD HH:MI:SS AM'),  20);
    INSERT INTO changegroup (issueid, created, id) VALUES (23234,  TO_DATE ('2011-02-02 06:18:02 AM', 'YYYY-MM-DD HH:MI:SS AM'),  90);
    INSERT INTO changegroup (issueid, created, id) VALUES (23977,  TO_DATE ('2008-09-29 02:44:54 PM', 'YYYY-MM-DD HH:MI:SS AM'),  10);
    INSERT INTO changegroup (issueid, created, id) VALUES (23977,  TO_DATE ('2010-05-29 04:47:37 PM', 'YYYY-MM-DD HH:MI:SS AM'),  30);
    INSERT INTO changegroup (issueid, created, id) VALUES (23977,  TO_DATE ('2011-02-02 06:14:57 AM', 'YYYY-MM-DD HH:MI:SS AM'),  10);
    INSERT INTO changegroup (issueid, created, id) VALUES (23977,  TO_DATE ('2011-02-02 06:15:32 AM', 'YYYY-MM-DD HH:MI:SS AM'),  20);
    INSERT INTO changegroup (issueid, created, id) VALUES (23977,  TO_DATE ('2011-02-02 06:15:47 AM', 'YYYY-MM-DD HH:MI:SS AM'),  90);
    CREATE TABLE     changeitem
    (      groupid          NUMBER
    ,      newstring     VARCHAR2 (10)
    INSERT INTO changeitem (groupid, newstring) VALUES (10, 'Open');
    INSERT INTO changeitem (groupid, newstring) VALUES (20, 'Testing');
    INSERT INTO changeitem (groupid, newstring) VALUES (30, 'Blocked');
    INSERT INTO changeitem (groupid, newstring) VALUES (90, 'Closed');Then post the results you want to get from that data, like this:
    ISSUEID HISTORY
      21191 Open (0) >> Testing (692) >> Closed
      23234 Open (45) >> Testing (807) >> Closed
      23977 Open (607) >> Blocked (249) >> Open (0) >> Testing (0) >> ClosedExplain how you get those results from that data. For example:
    "The output contains one row per issueid. The HISTORY coloumn shows the different states that the issue went through, in order by created, starting with the earliest one and continuing up until the first 'Closed' state, if there is one. Take the first row, issueid=21191, for example. It started as 'Open' on July 16, 2008, then, on the same day (that is, 0 days later) changed to 'Testing', and then, on June 8, 2010, (692 days later), it became 'Closed'. That same issue opened again later, on September 2, 2010, but I don't want to see any activity after the first 'Closed'."
    The database is 10.2.0.4That's very important. Always post your version, like you did.
    Here's one way to get those results from that data:
    WITH     got_order_row     AS
         SELECT     cg.issueid
         ,     LEAD (cg.created) OVER ( PARTITION BY  cg.issueid
                                          ORDER BY      cg.created
                  - cg.created            AS days_in_stage
         ,       ROW_NUMBER ()     OVER ( PARTITION BY  cg.issueid
                                          ORDER BY      cg.created
                               )    AS order_row
         ,     ci.newstring                     AS change_type
         FROM    changegroup     cg
         JOIN     changeitem     ci  ON   cg.id     = ci.groupid
         WHERE     ci.newstring     IN ( 'Blocked'
                           , 'Closed'
                           , 'Testing'
                           , 'Open'
    --     AND     ...          -- any other filtering goes here
    SELECT       issueid
    ,       SUBSTR ( SYS_CONNECT_BY_PATH ( change_type || CASE
                                                             WHEN  CONNECT_BY_ISLEAF = 0
                                           THEN  ' ('
                                              || ROUND (days_in_stage)
                                              || ')'
                                                         END
                                    , ' >> '
               , 5
               )     AS history
    FROM       got_order_row
    WHERE       CONNECT_BY_ISLEAF     = 1
    START WITH     order_row          = 1
    CONNECT BY     order_row          = PRIOR order_row + 1
         AND     issueid               = PRIOR issueid
         AND     PRIOR change_type     != 'Closed'
    ORDER BY  issueid
    ;Combining data from several rows into one big delimited VARCHAR2 column on one row is call String Aggregation .
    I hope this answers your question, but I guessed at so many things, I won't be surprised if it doesn't. If that's the case, point out where this is wrong, post what the results should be in those places, and explain how you get those results. Post new data, if necessary.

  • Help With Kernel Panic in Mid 2012 13" Macbook Pro

    I have a 13" Mid-2012 Macbook Pro.
    2.5 GHz Intel Core i5 / 8GB Memory
    OS X 10.9.5
    Recently I have been getting kernel panics / grey screens of death.  From the Console logs, it appears I have had four kernel panics since September 22.
    I am not aware of any particular thing I can do to produce the error.
    Some things I've tried:
    Disk Utility (this generally returns no errors.  However, once it asked me to boot to recovery mode to run Disk Utility there)
    Disk Utility in recovery mode (No errors)
    single user mode fsck -fy (No errors)
    Apple Hardware Test, extended mode (No errors)
    Observed Console logs for kernel panics (I am not sure how to parse these)
    Other details about the setup/environment:
    No peripherals
    I did see one update About the OS X Mavericks v10.9.5 Update that I had not installed until tonight.  Since September 22, I have installed 3 such updates.
    No anti-virus
    Hard drive is mostly empty
    File Vault is on
    I hope this is not poor form but I thought I would post some snippets from my kernel panic logs here to help with assessment.    I removed some information that looked like it might include personal identifiers and also the "loaded kexts" portions because of their length.   If those are helpful I could post them. 
    Any help diagnosing this problem would be appreciated.
    Mon Sep 22 10:56:45 2014
    panic(cpu 0 caller 0xffffff80064a3cf7): "VM_PAGE_QUEUES_REMOVE: unmarked page on Q"@/SourceCache/xnu/xnu-2422.110.17/osfmk/vm/vm_resident.c:3007
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81108c3990 : 0xffffff8006422f79
    0xffffff81108c3a10 : 0xffffff80064a3cf7
    0xffffff81108c3a70 : 0xffffff80064a5c52
    0xffffff81108c3a90 : 0xffffff80064a7527
    0xffffff81108c3ae0 : 0xffffff800649d8da
    0xffffff81108c3e00 : 0xffffff800649eca5
    0xffffff81108c3e20 : 0xffffff80068bc731
    0xffffff81108c3e60 : 0xffffff7f87d8acc2
    0xffffff81108c3e80 : 0xffffff7f87db1e8c
    0xffffff81108c3ed0 : 0xffffff7f87daf8e7
    0xffffff81108c3ef0 : 0xffffff80068b07f0
    0xffffff81108c3f30 : 0xffffff80068af292
    0xffffff81108c3f80 : 0xffffff80068af367
    0xffffff81108c3fb0 : 0xffffff80064d7417
          Kernel Extensions in backtrace:
             com.apple.iokit.IOAcceleratorFamily2(98.22)[0EC64777-94B9-32E3-AC03-A2367895744 B]@0xffffff7f87d89000->0xffffff7f87dedfff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f86abe000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f8731f000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    >>>>>>>
    System uptime in nanoseconds: 27450106852892
    last loaded kext at 25016211949613: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f882de000, size 49152)
    last unloaded kext at 25123578772021: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f882de000, size 32768)
    Fri Sep 26 13:48:09 2014
    panic(cpu 0 caller 0xffffff80032dc24e): Kernel trap at 0xffffff80032a87e3, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000109e19000, CR3: 0x000000000578e000, CR4: 0x00000000001606e0
    RAX: 0x0000000000000040, RBX: 0x001e3de600010000, RCX: 0xffffff80038d0320, RDX: 0xffffff80038d01c0
    RSP: 0xffffff810d5fbc70, RBP: 0xffffff810d5fbd80, RSI: 0xffffff8008adc0b0, RDI: 0xffffff80038d01c0
    R8:  0x0000000000000000, R9:  0x0000000000000010, R10: 0x0000000000000001, R11: 0xffffff800322fe40
    R12: 0xffffff80038d0570, R13: 0x00000000001ae747, R14: 0x0000000000000001, R15: 0x0000000000000025
    RFL: 0x0000000000010206, RIP: 0xffffff80032a87e3, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000109e19000, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80e5307c50 : 0xffffff8003222f79
    0xffffff80e5307cd0 : 0xffffff80032dc24e
    0xffffff80e5307ea0 : 0xffffff80032f3746
    0xffffff80e5307ec0 : 0xffffff80032a87e3
    0xffffff810d5fbd80 : 0xffffff8003681300
    0xffffff810d5fbef0 : 0xffffff80036e1f6f
    0xffffff810d5fbf00 : 0xffffff800369b8cc
    0xffffff810d5fbf20 : 0xffffff800324a20a
    0xffffff810d5fbfb0 : 0xffffff80032d7417
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    >>>>>>>
    System uptime in nanoseconds: 12133027063361
    last loaded kext at 12126462633739: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f8514b000, size 49152)
    last unloaded kext at 11457958413580: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f8514b000, size 32768)
    Wed Oct  1 12:10:05 2014
    panic(cpu 2 caller 0xffffff802b8dc24e): Kernel trap at 0xffffff802b8a42c0, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x000000000f0ab000, CR3: 0x000000022136b08e, CR4: 0x00000000001606e0
    RAX: 0xffffff802bed0320, RBX: 0x0000000000000025, RCX: 0x0000000000000025, RDX: 0x001778a600020000
    RSP: 0xffffff813719bd00, RBP: 0xffffff813719bd20, RSI: 0xffffff8032ed3df0, RDI: 0xffffff802bed0570
    R8:  0xffffff8033110728, R9:  0xffffff8032faed40, R10: 0x0000000000000000, R11: 0x0000000000000000
    R12: 0x0000000000000000, R13: 0xffffff8050405f80, R14: 0x0000000000000069, R15: 0xffffff8032faed40
    RFL: 0x0000000000210282, RIP: 0xffffff802b8a42c0, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x000000000f0ab000, Error code: 0x0000000000000000, Fault CPU: 0x2
    Backtrace (CPU 2), Frame : Return Address
    0xffffff812d90ddf0 : 0xffffff802b822f79
    0xffffff812d90de70 : 0xffffff802b8dc24e
    0xffffff812d90e040 : 0xffffff802b8f3746
    0xffffff812d90e060 : 0xffffff802b8a42c0
    0xffffff813719bd20 : 0xffffff802b8a4f65
    0xffffff813719bd50 : 0xffffff802b879033
    0xffffff813719bf20 : 0xffffff802b8dc68c
    0xffffff813719bfb0 : 0xffffff802b8f364b
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    13E28
    >>>>>>
    System uptime in nanoseconds: 13240283519708
    last loaded kext at 12513142203574: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fad74b000, size 49152)
    last unloaded kext at 12584738581143: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fad74b000, size 32768)
    Fri Oct 10 22:39:52 2014
    panic(cpu 3 caller 0xffffff8020cdc24e): Kernel trap at 0xffffff8020ca42c0, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000035c56000, CR3: 0x00000000858c80b8, CR4: 0x00000000001606e0
    RAX: 0xffffff80212d0320, RBX: 0x0000000000000025, RCX: 0x0000000000000025, RDX: 0x00251d6600020000
    RSP: 0xffffff8141f63d00, RBP: 0xffffff8141f63d20, RSI: 0xffffff802c33f3f0, RDI: 0xffffff80212d0570
    R8:  0xffffff8028b38928, R9:  0xffffff802c3d2ad8, R10: 0x0000000035c9b000, R11: 0x0000000000000000
    R12: 0x0000000000000000, R13: 0xffffff804dd51260, R14: 0x0000000000000084, R15: 0xffffff802c3d2ad8
    RFL: 0x0000000000010282, RIP: 0xffffff8020ca42c0, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x0000000035c56000, Error code: 0x0000000000000000, Fault CPU: 0x3
    Backtrace (CPU 3), Frame : Return Address
    0xffffff8122ec5df0 : 0xffffff8020c22f79
    0xffffff8122ec5e70 : 0xffffff8020cdc24e
    0xffffff8122ec6040 : 0xffffff8020cf3746
    0xffffff8122ec6060 : 0xffffff8020ca42c0
    0xffffff8141f63d20 : 0xffffff8020ca4f65
    0xffffff8141f63d50 : 0xffffff8020c79033
    0xffffff8141f63f20 : 0xffffff8020cdc68c
    0xffffff8141f63fb0 : 0xffffff8020cf364b
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    13E28
    >>>>
    System uptime in nanoseconds: 88915375202175
    last loaded kext at 88230087275581: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fa2b97000, size 49152)
    last unloaded kext at 88295369975570: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fa2b97000, size 32768)

    Thank you.  below I have included the full panic logs, including kernel extensions. 
    I did run and pass a memory test last night, but thank you for noting that this may not be conclusive.
    Do you see anything else notable in the logs, that would suggest anything other than a memory problem?  What would be the best way to test it?  Last night I used Rember .  Assuming that you don't identify anything else, would the next step be simply memory replacement?
    Logs below.
    Thanks!
    ==========================
    Anonymous UUID:       XXXXX
    Mon Sep 22 10:56:45 2014
    panic(cpu 0 caller 0xffffff80064a3cf7): "VM_PAGE_QUEUES_REMOVE: unmarked page on Q"@/SourceCache/xnu/xnu-2422.110.17/osfmk/vm/vm_resident.c:3007
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81108c3990 : 0xffffff8006422f79
    0xffffff81108c3a10 : 0xffffff80064a3cf7
    0xffffff81108c3a70 : 0xffffff80064a5c52
    0xffffff81108c3a90 : 0xffffff80064a7527
    0xffffff81108c3ae0 : 0xffffff800649d8da
    0xffffff81108c3e00 : 0xffffff800649eca5
    0xffffff81108c3e20 : 0xffffff80068bc731
    0xffffff81108c3e60 : 0xffffff7f87d8acc2
    0xffffff81108c3e80 : 0xffffff7f87db1e8c
    0xffffff81108c3ed0 : 0xffffff7f87daf8e7
    0xffffff81108c3ef0 : 0xffffff80068b07f0
    0xffffff81108c3f30 : 0xffffff80068af292
    0xffffff81108c3f80 : 0xffffff80068af367
    0xffffff81108c3fb0 : 0xffffff80064d7417
          Kernel Extensions in backtrace:
             com.apple.iokit.IOAcceleratorFamily2(98.22)[0EC64777-94B9-32E3-AC03-A2367895744 B]@0xffffff7f87d89000->0xffffff7f87dedfff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f86abe000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f8731f000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: XXXXX
    Kernel slide:     0x0000000006200000
    Kernel text base: 0xffffff8006400000
    System model name: MacBookPro9,2 (Mac-XXXXX)
    System uptime in nanoseconds: 27450106852892
    last loaded kext at 25016211949613: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f882de000, size 49152)
    last unloaded kext at 25123578772021: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f882de000, size 32768)
    loaded kexts:
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleIntelHD4000Graphics 8.2.8
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleIntelFramebufferCapri 8.2.8
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.CoreStorage 380
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.6
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    ================================================
    Anonymous UUID:       XXXXX
    Fri Sep 26 13:48:09 2014
    panic(cpu 0 caller 0xffffff80032dc24e): Kernel trap at 0xffffff80032a87e3, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000109e19000, CR3: 0x000000000578e000, CR4: 0x00000000001606e0
    RAX: 0x0000000000000040, RBX: 0x001e3de600010000, RCX: 0xffffff80038d0320, RDX: 0xffffff80038d01c0
    RSP: 0xffffff810d5fbc70, RBP: 0xffffff810d5fbd80, RSI: 0xffffff8008adc0b0, RDI: 0xffffff80038d01c0
    R8:  0x0000000000000000, R9:  0x0000000000000010, R10: 0x0000000000000001, R11: 0xffffff800322fe40
    R12: 0xffffff80038d0570, R13: 0x00000000001ae747, R14: 0x0000000000000001, R15: 0x0000000000000025
    RFL: 0x0000000000010206, RIP: 0xffffff80032a87e3, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000109e19000, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80e5307c50 : 0xffffff8003222f79
    0xffffff80e5307cd0 : 0xffffff80032dc24e
    0xffffff80e5307ea0 : 0xffffff80032f3746
    0xffffff80e5307ec0 : 0xffffff80032a87e3
    0xffffff810d5fbd80 : 0xffffff8003681300
    0xffffff810d5fbef0 : 0xffffff80036e1f6f
    0xffffff810d5fbf00 : 0xffffff800369b8cc
    0xffffff810d5fbf20 : 0xffffff800324a20a
    0xffffff810d5fbfb0 : 0xffffff80032d7417
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: XXXXXXXXXX
    Kernel slide:     0x0000000003000000
    Kernel text base: 0xffffff8003200000
    System model name: MacBookPro9,2 (Mac-XXXXXXXX)
    System uptime in nanoseconds: 12133027063361
    last loaded kext at 12126462633739: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f8514b000, size 49152)
    last unloaded kext at 11457958413580: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f8514b000, size 32768)
    loaded kexts:
    com.apple.driver.AppleIntelMCEReporter 104
    com.apple.filesystems.afpfs 11.1
    com.apple.nke.asp-tcp 8.0.1
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleIntelHD4000Graphics 8.2.8
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleIntelFramebufferCapri 8.2.8
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.security.SecureRemotePassword 1.0
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.CoreStorage 380
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.6
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    ================================================
    Anonymous UUID:       XXXXXXXXXXX
    Wed Oct  1 12:10:05 2014
    panic(cpu 2 caller 0xffffff802b8dc24e): Kernel trap at 0xffffff802b8a42c0, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x000000000f0ab000, CR3: 0x000000022136b08e, CR4: 0x00000000001606e0
    RAX: 0xffffff802bed0320, RBX: 0x0000000000000025, RCX: 0x0000000000000025, RDX: 0x001778a600020000
    RSP: 0xffffff813719bd00, RBP: 0xffffff813719bd20, RSI: 0xffffff8032ed3df0, RDI: 0xffffff802bed0570
    R8:  0xffffff8033110728, R9:  0xffffff8032faed40, R10: 0x0000000000000000, R11: 0x0000000000000000
    R12: 0x0000000000000000, R13: 0xffffff8050405f80, R14: 0x0000000000000069, R15: 0xffffff8032faed40
    RFL: 0x0000000000210282, RIP: 0xffffff802b8a42c0, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x000000000f0ab000, Error code: 0x0000000000000000, Fault CPU: 0x2
    Backtrace (CPU 2), Frame : Return Address
    0xffffff812d90ddf0 : 0xffffff802b822f79
    0xffffff812d90de70 : 0xffffff802b8dc24e
    0xffffff812d90e040 : 0xffffff802b8f3746
    0xffffff812d90e060 : 0xffffff802b8a42c0
    0xffffff813719bd20 : 0xffffff802b8a4f65
    0xffffff813719bd50 : 0xffffff802b879033
    0xffffff813719bf20 : 0xffffff802b8dc68c
    0xffffff813719bfb0 : 0xffffff802b8f364b
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: XXXXXXXXX
    Kernel slide:     0x000000002b600000
    Kernel text base: 0xffffff802b800000
    System model name: MacBookPro9,2 (Mac-XXXXXXXX)
    System uptime in nanoseconds: 13240283519708
    last loaded kext at 12513142203574: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fad74b000, size 49152)
    last unloaded kext at 12584738581143: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fad74b000, size 32768)
    loaded kexts:
    com.apple.filesystems.afpfs 11.1
    com.apple.nke.asp-tcp 8.0.1
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleIntelHD4000Graphics 8.2.8
    com.apple.driver.AppleIntelFramebufferCapri 8.2.8
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.security.SecureRemotePassword 1.0
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.CoreStorage 380
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.6
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    ================================================
    Anonymous UUID:       XXXXXX
    Fri Oct 10 22:39:52 2014
    panic(cpu 3 caller 0xffffff8020cdc24e): Kernel trap at 0xffffff8020ca42c0, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000035c56000, CR3: 0x00000000858c80b8, CR4: 0x00000000001606e0
    RAX: 0xffffff80212d0320, RBX: 0x0000000000000025, RCX: 0x0000000000000025, RDX: 0x00251d6600020000
    RSP: 0xffffff8141f63d00, RBP: 0xffffff8141f63d20, RSI: 0xffffff802c33f3f0, RDI: 0xffffff80212d0570
    R8:  0xffffff8028b38928, R9:  0xffffff802c3d2ad8, R10: 0x0000000035c9b000, R11: 0x0000000000000000
    R12: 0x0000000000000000, R13: 0xffffff804dd51260, R14: 0x0000000000000084, R15: 0xffffff802c3d2ad8
    RFL: 0x0000000000010282, RIP: 0xffffff8020ca42c0, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x0000000035c56000, Error code: 0x0000000000000000, Fault CPU: 0x3
    Backtrace (CPU 3), Frame : Return Address
    0xffffff8122ec5df0 : 0xffffff8020c22f79
    0xffffff8122ec5e70 : 0xffffff8020cdc24e
    0xffffff8122ec6040 : 0xffffff8020cf3746
    0xffffff8122ec6060 : 0xffffff8020ca42c0
    0xffffff8141f63d20 : 0xffffff8020ca4f65
    0xffffff8141f63d50 : 0xffffff8020c79033
    0xffffff8141f63f20 : 0xffffff8020cdc68c
    0xffffff8141f63fb0 : 0xffffff8020cf364b
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: XXXXXX
    Kernel slide:     0x0000000020a00000
    Kernel text base: 0xffffff8020c00000
    System model name: MacBookPro9,2 (Mac-XXXXXXX)
    System uptime in nanoseconds: 88915375202175
    last loaded kext at 88230087275581: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fa2b97000, size 49152)
    last unloaded kext at 88295369975570: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fa2b97000, size 32768)
    loaded kexts:
    com.apple.filesystems.afpfs 11.1
    com.apple.nke.asp-tcp 8.0.1
    com.apple.filesystems.smbfs 2.0.2
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleIntelHD4000Graphics 8.2.8
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleIntelFramebufferCapri 8.2.8
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.security.SecureRemotePassword 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.driver.CoreStorage 380
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.6
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1

  • Please help with repeated Kernal Panics - I can't even leave it long enough to backup the 100gb or so of stuff, Please help with repeated Kernal Panics - I can't even leave it long enough to backup the 100gb or so of stuff

    Please can someone help me here, my Kernal Panic attack frequency is becoming very consistent at least 1 every 1 hr. Below are my last few attack reports, can someone please help me? Thanks.
    Interval Since Last Panic Report:  -102 sec
    Panics Since Last Report:          3
    Anonymous UUID: 2DD98ED2-47F9-406B-A38B-ED8B9424B7B5
    Tue May 29 11:11:37 2012
    Machine-check capabilities (cpu 1) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0x0020000000000000 invalid
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    panic(cpu 0 caller 0x2aaf41): Machine Check at 0x9595c19f, thread:0x947c000, trapno:0x12, err:0x0,registers:
    CR0: 0x8001003b, CR2: 0x00099688, CR3: 0x00100000, CR4: 0x00040668
    EAX: 0xa05f6088, EBX: 0x9595c164, ECX: 0xa0604704, EDX: 0xb029147c
    ESP: 0xb0291420, EBP: 0xb0291498, ESI: 0x1c226cb0, EDI: 0x1c226cb4
    EFL: 0x00000202, EIP: 0x9595c19f
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x819e18 : 0x21b837 (0x5dd7fc 0x819e4c 0x223ce1 0x0)
    0x819e68 : 0x2aaf41 (0x59dfe4 0x59e0d1 0x9595c19f 0x947c000)
    0x819f58 : 0x2a29f2 (0x1 0x0 0x0 0x0)
    BSD process name corresponding to current thread: Microsoft Outloo
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 1153078954474
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI     4.2.0 (addr 0x13cb000, size 0x65536) - last unloaded 220303805184
    loaded kexts:
    com.zeobit.kext.Firewall        2.0.1 - last loaded 202816384829
    com.sophos.kext.sav  7.3.0
    com.cisco.nke.ipsec    2.0.3
    com.checkpoint.kext.P4MacFilterScheme   1.0
    com.checkpoint.kext.FDECryptocore           1.0.0d1
    com.apple.filesystems.autofs            2.1.0
    com.apple.driver.AppleHWSensor   1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver     1.2.0
    com.apple.driver.AudioAUUC           1.57
    com.apple.driver.IOBluetoothBNEPDriver 2.4.5f3
    com.apple.driver.AppleHDA 2.0.5f14
    com.apple.driver.AppleMikeyDriver           2.0.5f14
    com.apple.driver.AGPM        100.12.31
    com.apple.kext.ATIFramebuffer      6.3.6
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.SMCMotionSensor           3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.iokit.CHUDUtils    364
    com.apple.iokit.CHUDProf    366
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC  1.5.1
    com.apple.driver.AppleGraphicsControl     2.10.6
    com.apple.kext.AppleSMCLMU        1.5.2d10
    com.apple.ATIRadeonX3000           6.3.6
    com.apple.driver.AppleIntelHDGraphics    6.3.6
    com.apple.driver.AppleIntelSNBGraphicsFB          6.3.6
    com.apple.driver.AppleUSBTCButtons        201.6
    com.apple.driver.AppleIRController            303.8
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.iokit.SCSITaskUserClient            2.6.8
    com.apple.BootCache            31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage           1.6.4
    com.apple.driver.AppleUSBHub      4.2.4
    com.apple.driver.AppleFWOHCI      4.7.3
    com.apple.driver.AirPort.Brcm4331           433.11.5
    com.apple.driver.AppleSDXC           1.0.3
    com.apple.iokit.AppleBCM5701Ethernet   3.0.5b8
    com.apple.driver.AppleEFINVRAM  1.4.0
    com.apple.driver.AppleSmartBatteryManager      160.0.0
    com.apple.driver.AppleAHCIPort     2.1.7
    com.apple.driver.AppleUSBEHCI     4.2.4
    com.apple.driver.AppleACPIButtons           1.3.6
    com.apple.driver.AppleRTC  1.3.1
    com.apple.driver.AppleHPET           1.5
    com.apple.driver.AppleSMBIOS       1.7
    com.apple.driver.AppleACPIEC        1.3.6
    com.apple.driver.AppleAPIC            1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine        0
    com.apple.nke.applicationfirewall   2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement        142.6.0
    com.apple.driver.AppleProfileReadCounterAction            67
    com.apple.driver.AppleProfileTimestampAction   67
    com.apple.driver.AppleProfileThreadInfoAction   67
    com.apple.driver.AppleProfileRegisterStateAction            67
    com.apple.driver.AppleProfileKEventAction          67
    com.apple.driver.AppleProfileCallstackAction        69
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP           2.0.3
    com.apple.iokit.IOSurface     74.2
    com.apple.iokit.IOBluetoothSerialManager            2.4.5f3
    com.apple.iokit.IOSerialFamily         10.0.3
    com.apple.iokit.CHUDKernLib          365
    com.apple.iokit.IOAudioFamily         1.8.3fc2
    com.apple.kext.OSvKernDSPLib      1.3
    com.apple.driver.AppleHDAController        2.0.5f14
    com.apple.iokit.IOHDAFamily           2.0.5f14
    com.apple.iokit.AppleProfileFamily 61
    com.apple.driver.IOPlatformPluginFamily 4.7.0a1
    com.apple.driver.AppleSMBusPCI   1.0.10d0
    com.apple.driver.AppleBacklightExpert     1.0.1
    com.apple.driver.AppleSMC 3.1.0d5
    com.apple.kext.ATI6000Controller 6.3.6
    com.apple.kext.ATISupport  6.3.6
    com.apple.iokit.IONDRVSupport      2.2.1
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.1.6
    com.apple.driver.BroadcomUSBBluetoothHCIController  2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController         2.4.5f3
    com.apple.iokit.IOBluetoothFamily  2.4.5f3
    com.apple.driver.AppleUSBMultitouch       207.7
    com.apple.iokit.IOUSBHIDDriver     4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        2.6.8
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily 1.6.1
    com.apple.driver.AppleUSBMergeNub       4.2.4
    com.apple.driver.AppleUSBComposite        3.9.0
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily   2.6.8
    com.apple.driver.AppleThunderboltNHI    1.2.6
    com.apple.iokit.IOThunderboltFamily         1.4.9
    com.apple.iokit.IOUSBUserClient     4.2.4
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IO80211Family       320.1
    com.apple.iokit.IONetworkingFamily           1.10
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOUSBFamily            4.2.4
    com.apple.driver.AppleEFIRuntime            1.4.0
    com.apple.iokit.IOHIDFamily            1.6.6
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     6
    com.apple.driver.DiskImages           289
    com.apple.iokit.IOStorageFamily      1.6.3
    com.apple.driver.AppleACPIPlatform         1.3.6
    com.apple.iokit.IOPCIFamily 2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Interval Since Last Panic Report:  241 sec
    Panics Since Last Report:          4
    Anonymous UUID: 2DD98ED2-47F9-406B-A38B-ED8B9424B7B5
    Tue May 29 11:36:22 2012
    Machine-check capabilities (cpu 5) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0xf200000000000019 valid
      MCA error code:            0x0019
      Model specific error code: 0x0000
      Other information:         0x00000000
      Threshold-based status:    No tracking
      Status bits:
       Processor context corrupt
       Error enabled
       Uncorrected error
       Error overflow
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0x0020000000000000 invalid
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    panic(cpu 4 caller 0x2aaf41): Machine Check at 0x00279e2d, thread:0x86ea7a8, trapno:0x12, err:0x0,registers:
    CR0: 0x8001003b, CR2: 0x83c2ad20, CR3: 0x00100000, CR4: 0x00040660
    EAX: 0x00001000, EBX: 0x056df174, ECX: 0x05168ba0, EDX: 0x00000000
    ESP: 0x61f6b950, EBP: 0x61f6b988, ESI: 0x00b65000, EDI: 0x00000000
    EFL: 0x00000202, EIP: 0x00279e2d
    Backtrace (CPU 4), Frame : Return Address (4 potential args on stack)
    0x57652fb8 : 0x21b837 (0x5dd7fc 0x57652fec 0x223ce1 0x0)
    0x57653008 : 0x2aaf41 (0x59dfe4 0x59e0d1 0x279e2d 0x86ea7a8)
    0x576530f8 : 0x2a29f2 (0x1 0xc383c395 0x2444c705 0x108)
    0x61f6b988 : 0x2739f2 (0x999e720 0xb65000 0x0 0x0)
    0x61f6bb38 : 0x4a9acc (0x8786000 0x0 0x100000 0x19)
    0x61f6bb88 : 0x2d312e (0x8786000 0x0 0x100000 0x9)
    0x61f6bbe8 : 0x2cdaad (0x5c330a60 0x0 0x86904bc 0xf65641)
    0x61f6bc38 : 0x176af08 (0x5c330a60 0x0 0x0 0x100000)
    0x61f6bc88 : 0xf68dea (0x876c800 0x87814e0 0x0 0x100000)
    0x61f6bcb8 : 0xf5fbf1 (0x8b78a54 0x0 0x100000 0x0)
    0x61f6bd28 : 0xf68dea (0x8744400 0x8b78a40 0x0 0x100000)
    0x61f6bd58 : 0x14c60a5 (0x61f6bd94 0x0 0x100000 0x0)
    0x61f6bdb8 : 0x14c83b2 (0x8744800 0x845af9c 0x61f6bdd8 0x2)
    0x61f6bdd8 : 0xec1698 (0x874bb00 0x8738a00 0x0 0xd0)
    0x61f6be08 : 0xec228a (0x873f780 0x8738a00 0x1 0x873dc00)
    0x61f6be28 : 0xeca1dc (0x8738a00 0x8738a00 0x0 0xd0)
    0x61f6be68 : 0xeca33a (0x873dc00 0x8738a00 0x0 0x0)
    0x61f6bea8 : 0xecc4df (0x873dc00 0x8 0x552ed0 0x87393c0)
    0x61f6bf08 : 0xec81fc (0x873dc00 0x61f6bf30 0x1 0x575ed000)
    0x61f6bf28 : 0x552ea6 (0x8739240 0x0 0x0 0x0)
    0x61f6bf88 : 0x552eea (0x87393c0 0x2ab22a 0x61f6bfc8 0x22a90c)
    0x61f6bfc8 : 0x2a179c (0x87393c0 0x0 0x10 0x98b2cc4)
          Kernel Extensions in backtrace (with dependencies):
    com.checkpoint.kext.P4MacFilterScheme(1.0)@0x1766000->0x1775fff
    dependency: com.apple.iokit.IOStorageFamily(1.6.3)@0xf57000
    com.apple.iokit.IOAHCIBlockStorage(1.6.4)@0x14c3000->0x14d6fff
    dependency: com.apple.iokit.IOAHCIFamily(2.0.6)@0xebf000
    dependency: com.apple.iokit.IOStorageFamily(1.6.3)@0xf57000
    com.apple.driver.AppleAHCIPort(2.1.7)@0xec5000->0xed8fff
                dependency: com.apple.iokit.IOAHCIFamily(2.0.6)@0xebf000
    dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x909000
    com.apple.iokit.IOAHCIFamily(2.0.6)@0xebf000->0xec4fff
    com.apple.iokit.IOStorageFamily(1.6.3)@0xf57000->0xf6ffff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 894813686994
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI     4.2.0 (addr 0x13cb000, size 0x65536) - last unloaded 103878408642
    loaded kexts:
    com.zeobit.kext.Firewall        2.0.1
    com.sophos.kext.sav  7.3.0
    com.cisco.nke.ipsec    2.0.3
    com.checkpoint.kext.P4MacFilterScheme   1.0
    com.checkpoint.kext.FDECryptocore           1.0.0d1
    com.apple.filesystems.autofs            2.1.0
    com.apple.driver.AppleHWSensor   1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver     1.2.0
    com.apple.driver.AudioAUUC           1.57
    com.apple.driver.AppleHDA 2.0.5f14
    com.apple.driver.AppleMikeyDriver           2.0.5f14
    com.apple.driver.AGPM        100.12.31
    com.apple.driver.IOBluetoothBNEPDriver 2.4.5f3
    com.apple.kext.ATIFramebuffer      6.3.6
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.iokit.CHUDUtils    364
    com.apple.iokit.CHUDProf    366
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC  1.5.1
    com.apple.driver.AppleGraphicsControl     2.10.6
    com.apple.ATIRadeonX3000           6.3.6
    com.apple.kext.AppleSMCLMU        1.5.2d10
    com.apple.driver.AppleIntelHDGraphics    6.3.6
    com.apple.driver.AppleIntelSNBGraphicsFB          6.3.6
    com.apple.driver.SMCMotionSensor           3.0.1d2
    com.apple.driver.AppleUSBTCButtons        201.6
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.driver.AppleIRController            303.8
    com.apple.iokit.SCSITaskUserClient            2.6.8
    com.apple.BootCache            31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage           1.6.4
    com.apple.driver.AppleUSBHub      4.2.4
    com.apple.driver.AirPort.Brcm4331           433.11.5
    com.apple.driver.AppleSDXC           1.0.3
    com.apple.iokit.AppleBCM5701Ethernet   3.0.5b8
    com.apple.driver.AppleEFINVRAM  1.4.0
    com.apple.driver.AppleSmartBatteryManager      160.0.0
    com.apple.driver.AppleAHCIPort     2.1.7
    com.apple.driver.AppleFWOHCI      4.7.3
    com.apple.driver.AppleUSBEHCI     4.2.4
    com.apple.driver.AppleACPIButtons           1.3.6
    com.apple.driver.AppleRTC  1.3.1
    com.apple.driver.AppleHPET           1.5
    com.apple.driver.AppleSMBIOS       1.7
    com.apple.driver.AppleACPIEC        1.3.6
    com.apple.driver.AppleAPIC            1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine        0
    com.apple.nke.applicationfirewall   2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement        142.6.0
    com.apple.iokit.IOSCSIBlockCommandsDevice       2.6.8 - last loaded 527142116865
    com.apple.iokit.IOUSBMassStorageClass     2.6.7
    com.apple.driver.AppleProfileReadCounterAction            67
    com.apple.driver.AppleProfileTimestampAction   67
    com.apple.driver.AppleProfileThreadInfoAction   67
    com.apple.driver.AppleProfileRegisterStateAction            67
    com.apple.driver.AppleProfileKEventAction          67
    com.apple.driver.AppleProfileCallstackAction        69
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP           2.0.3
    com.apple.iokit.IOSurface     74.2
    com.apple.iokit.IOBluetoothSerialManager            2.4.5f3
    com.apple.iokit.IOSerialFamily         10.0.3
    com.apple.iokit.CHUDKernLib          365
    com.apple.iokit.IOAudioFamily         1.8.3fc2
    com.apple.kext.OSvKernDSPLib      1.3
    com.apple.driver.AppleHDAController        2.0.5f14
    com.apple.iokit.IOHDAFamily           2.0.5f14
    com.apple.iokit.AppleProfileFamily 61
    com.apple.driver.IOPlatformPluginFamily 4.7.0a1
    com.apple.driver.AppleSMBusPCI   1.0.10d0
    com.apple.driver.AppleBacklightExpert     1.0.1
    com.apple.kext.ATI6000Controller 6.3.6
    com.apple.kext.ATISupport  6.3.6
    com.apple.iokit.IONDRVSupport      2.2.1
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.driver.AppleSMC 3.1.0d5
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.1.6
    com.apple.driver.BroadcomUSBBluetoothHCIController  2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController         2.4.5f3
    com.apple.iokit.IOBluetoothFamily  2.4.5f3
    com.apple.driver.AppleUSBMultitouch       207.7
    com.apple.iokit.IOUSBHIDDriver     4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        2.6.8
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily 1.6.1
    com.apple.driver.AppleUSBMergeNub       4.2.4
    com.apple.driver.AppleUSBComposite        3.9.0
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily   2.6.8
    com.apple.driver.AppleThunderboltNHI    1.2.6
    com.apple.iokit.IOThunderboltFamily         1.4.9
    com.apple.iokit.IOUSBUserClient     4.2.4
    com.apple.iokit.IO80211Family       320.1
    com.apple.iokit.IONetworkingFamily           1.10
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IOUSBFamily            4.2.4
    com.apple.driver.AppleEFIRuntime            1.4.0
    com.apple.iokit.IOHIDFamily            1.6.6
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     6
    com.apple.driver.DiskImages           289
    com.apple.iokit.IOStorageFamily      1.6.3
    com.apple.driver.AppleACPIPlatform         1.3.6
    com.apple.iokit.IOPCIFamily 2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro8,2, BootROM MBP81.0047.B26, 4 processors, Intel Core i7, 2.4 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS547575A9E384, 698.64 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: Microsoft® Nano Transceiver v1.0, 0x045e  (Microsoft Corporation), 0x0773, 0xfd120000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfa100000 / 3
    USB Device: My Passport 0746, 0x1058  (Western Digital Technologies, Inc.), 0x0746, 0xfa130000 / 6
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 9
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0252, 0xfa120000 / 4
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 2
    Interval Since Last Panic Report:  213 sec
    Panics Since Last Report:          5
    Anonymous UUID: 2DD98ED2-47F9-406B-A38B-ED8B9424B7B5
    Tue May 29 11:45:25 2012
    Machine-check capabilities (cpu 4) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0xb200000000000019 valid
      MCA error code:            0x0019
      Model specific error code: 0x0000
      Other information:         0x00000000
      Threshold-based status:    No tracking
      Status bits:
       Processor context corrupt
       Error enabled
       Uncorrected error
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0x0020000000000000 invalid
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    panic(cpu 5 caller 0x2aaf41): Machine Check at 0x01149a81, thread:0x85d67a8, trapno:0x12, err:0x0,registers:
    CR0: 0x8001003b, CR2: 0x002fd000, CR3: 0x00100000, CR4: 0x00040660
    EAX: 0x00000031, EBX: 0x01159998, ECX: 0x00000001, EDX: 0x01158ee0
    ESP: 0x61f53cf0, EBP: 0x61f53d48, ESI: 0x00000000, EDI: 0x085a8800
    EFL: 0x00000002, EIP: 0x01149a81
    Backtrace (CPU 5), Frame : Return Address (4 potential args on stack)
    0x576f5fb8 : 0x21b837 (0x5dd7fc 0x576f5fec 0x223ce1 0x0)
    0x576f6008 : 0x2aaf41 (0x59dfe4 0x59e0d1 0x1149a81 0x85d67a8)
    0x576f60f8 : 0x2a29f2 (0x1 0x83c0 0x5 0x0)
    0x61f53d48 : 0x1139ee7 (0x576150a8 0x7 0x85a8800 0x0)
    0x61f53e28 : 0x113b850 (0xffffffff 0x7fffffff 0x0 0x0)
    0x61f53f28 : 0x2ad0c5 (0xffffffff 0x7fffffff 0x6b07 0x5771c000)
    0x61f53f48 : 0x225bba (0x5771c49c 0x80f2e89b 0x7a 0x5771c488)
    0x61f53fa8 : 0x22810b (0x0 0x2280f4 0x0 0xab6a884)
    0x61f53fc8 : 0x2a179c (0x0 0xffffffff 0x10 0xa56e520)
          Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelCPUPowerManagement(142.6.0)@0x1138000->0x115bfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 526715803208
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI     4.2.0 (addr 0x13cb000, size 0x65536) - last unloaded 304149660436
    loaded kexts:
    com.zeobit.kext.Firewall        2.0.1 - last loaded 216198961826
    com.sophos.kext.sav  7.3.0
    com.cisco.nke.ipsec    2.0.3
    com.checkpoint.kext.P4MacFilterScheme   1.0
    com.checkpoint.kext.FDECryptocore           1.0.0d1
    com.apple.filesystems.autofs            2.1.0
    com.apple.driver.AppleHWSensor   1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver     1.2.0
    com.apple.driver.AudioAUUC           1.57
    com.apple.driver.AGPM        100.12.31
    com.apple.driver.AppleHDA 2.0.5f14
    com.apple.driver.AppleMikeyDriver           2.0.5f14
    com.apple.kext.ATIFramebuffer      6.3.6
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.SMCMotionSensor           3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.iokit.CHUDUtils    364
    com.apple.iokit.CHUDProf    366
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC  1.5.1
    com.apple.driver.AppleGraphicsControl     2.10.6
    com.apple.kext.AppleSMCLMU        1.5.2d10
    com.apple.ATIRadeonX3000           6.3.6
    com.apple.driver.AppleIntelHDGraphics    6.3.6
    com.apple.driver.AppleIntelSNBGraphicsFB          6.3.6
    com.apple.driver.AppleUSBTCButtons        201.6
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.driver.AppleIRController            303.8
    com.apple.iokit.SCSITaskUserClient            2.6.8
    com.apple.BootCache            31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage           1.6.4
    com.apple.driver.AppleFWOHCI      4.7.3
    com.apple.driver.AirPort.Brcm4331           433.11.5
    com.apple.driver.AppleSDXC           1.0.3
    com.apple.iokit.AppleBCM5701Ethernet   3.0.5b8
    com.apple.driver.AppleUSBHub      4.2.4
    com.apple.driver.AppleEFINVRAM  1.4.0
    com.apple.driver.AppleSmartBatteryManager      160.0.0
    com.apple.driver.AppleAHCIPort     2.1.7
    com.apple.driver.AppleACPIButtons           1.3.6
    com.apple.driver.AppleUSBEHCI     4.2.4
    com.apple.driver.AppleRTC  1.3.1
    com.apple.driver.AppleHPET           1.5
    com.apple.driver.AppleSMBIOS       1.7
    com.apple.driver.AppleACPIEC        1.3.6
    com.apple.driver.AppleAPIC            1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine        0
    com.apple.nke.applicationfirewall   2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement        142.6.0
    com.apple.iokit.IOSCSIBlockCommandsDevice       2.6.8
    com.apple.driver.AppleProfileReadCounterAction            67
    com.apple.driver.AppleProfileTimestampAction   67
    com.apple.driver.AppleProfileThreadInfoAction   67
    com.apple.driver.AppleProfileRegisterStateAction            67
    com.apple.driver.AppleProfileKEventAction          67
    com.apple.driver.AppleProfileCallstackAction        69
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOUSBMassStorageClass     2.6.7
    com.apple.iokit.IOFireWireIP           2.0.3
    com.apple.iokit.IOSurface     74.2
    com.apple.iokit.IOBluetoothSerialManager            2.4.5f3
    com.apple.iokit.IOSerialFamily         10.0.3
    com.apple.iokit.CHUDKernLib          365
    com.apple.iokit.IOAudioFamily         1.8.3fc2
    com.apple.kext.OSvKernDSPLib      1.3
    com.apple.driver.AppleHDAController        2.0.5f14
    com.apple.iokit.IOHDAFamily           2.0.5f14
    com.apple.iokit.AppleProfileFamily 61
    com.apple.driver.IOPlatformPluginFamily 4.7.0a1
    com.apple.driver.AppleSMBusPCI   1.0.10d0
    com.apple.driver.AppleBacklightExpert     1.0.1
    com.apple.driver.AppleSMC 3.1.0d5
    com.apple.kext.ATI6000Controller 6.3.6
    com.apple.kext.ATISupport  6.3.6
    com.apple.iokit.IONDRVSupport      2.2.1
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController  2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController         2.4.5f3
    com.apple.iokit.IOBluetoothFamily  2.4.5f3
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.1.6
    com.apple.driver.AppleUSBMultitouch       207.7
    com.apple.iokit.IOUSBHIDDriver     4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        2.6.8
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily 1.6.1
    com.apple.driver.AppleUSBMergeNub       4.2.4
    com.apple.driver.AppleUSBComposite        3.9.0
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily   2.6.8
    com.apple.driver.AppleThunderboltNHI    1.2.6
    com.apple.iokit.IOThunderboltFamily         1.4.9
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IO80211Family       320.1
    com.apple.iokit.IONetworkingFamily           1.10
    com.apple.iokit.IOUSBUserClient     4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.driver.AppleEFIRuntime            1.4.0
    com.apple.iokit.IOHIDFamily            1.6.6
    com.apple.iokit.IOUSBFamily            4.2.4
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     6
    com.apple.driver.DiskImages           289
    com.apple.iokit.IOStorageFamily      1.6.3
    com.apple.driver.AppleACPIPlatform         1.3.6
    com.apple.iokit.IOPCIFamily 2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro8,2, BootROM MBP81.0047.B26, 4 processors, Intel Core i7, 2.4 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS547575A9E384, 698.64 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: My Passport 0746, 0x1058  (Western Digital Technologies, Inc.), 0x0746, 0xfa130000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0252, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 7
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: Microsoft® Nano Transceiver v1.0, 0x045e  (Microsoft Corporation), 0x0773, 0xfd120000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3
    Interval Since Last Panic Report:  227 sec
    Panics Since Last Report:          6
    Anonymous UUID: 2DD98ED2-47F9-406B-A38B-ED8B9424B7B5
    Tue May 29 13:03:07 2012
    Machine-check capabilities (cpu 7) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0x0020000000000000 invalid
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    panic(cpu 1 caller 0x2aaf41): Machine Check at 0x01149a81, thread:0x85d4000, trapno:0x12, err:0x0,registers:
    CR0: 0x8001003b, CR2: 0x00779000, CR3: 0x00100000, CR4: 0x00040660
    EAX: 0x00000001, EBX: 0x01159368, ECX: 0x00000001, EDX: 0x01158ee0
    ESP: 0x577d3cf0, EBP: 0x577d3d48, ESI: 0x00000000, EDI: 0x085a8800
    EFL: 0x00000002, EIP: 0x01149a81
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5769ffb8 : 0x21b837 (0x5dd7fc 0x5769ffec 0x223ce1 0x0)
    0x576a0008 : 0x2aaf41 (0x59dfe4 0x59e0d1 0x1149a81 0x85d4000)
    0x576a00f8 : 0x2a29f2 (0x1 0xd3f7d389 0x850fd885 0x2b05)
    0x577d3d48 : 0x1139ee7 (0x575f50a8 0x1 0x85a8800 0x0)
    0x577d3e28 : 0x113b850 (0xffffffff 0x7fffffff 0x0 0x0)
    0x577d3f28 : 0x2ad0c5 (0xffffffff 0x7fffffff 0x0 0x575fe000)
    0x577d3f48 : 0x225bba (0x575fe49c 0x480f2eb5 0x428 0x575fe488)
    0x577d3fa8 : 0x22810b (0x85d4000 0x2280f4 0x0 0x575fe000)
    0x577d3fc8 : 0x2a179c (0x0 0xffffffff 0x10 0x89d8fc0)
          Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelCPUPowerManagement(142.6.0)@0x1138000->0x115bfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 4571389570091
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI     4.2.0 (addr 0x13cb000, size 0x65536) - last unloaded 292955085168
    loaded kexts:
    com.zeobit.kext.Firewall        2.0.1 - last loaded 205146398377
    com.sophos.kext.sav  7.3.0
    com.cisco.nke.ipsec    2.0.3
    com.checkpoint.kext.P4MacFilterScheme   1.0
    com.checkpoint.kext.FDECryptocore           1.0.0d1
    com.apple.filesystems.autofs            2.1.0
    com.apple.driver.AppleHWSensor   1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver     1.2.0
    com.apple.driver.AudioAUUC           1.57
    com.apple.driver.AppleMikeyDriver           2.0.5f14
    com.apple.driver.AppleHDA 2.0.5f14
    com.apple.driver.AGPM        100.12.31
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.kext.ATIFramebuffer      6.3.6
    com.apple.driver.AppleIntelHDGraphics    6.3.6
    com.apple.driver.SMCMotionSensor           3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.iokit.CHUDUtils    364
    com.apple.iokit.CHUDProf    366
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC  1.5.1
    com.apple.driver.AppleGraphicsControl     2.10.6
    com.apple.kext.AppleSMCLMU        1.5.2d10
    com.apple.ATIRadeonX3000           6.3.6
    com.apple.driver.AppleIntelSNBGraphicsFB          6.3.6
    com.apple.driver.AppleUSBTCButtons        201.6
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.driver.AppleIRController            303.8
    com.apple.iokit.SCSITaskUserClient            2.6.8
    com.apple.BootCache            31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage           1.6.4
    com.apple.driver.AppleUSBHub      4.2.4
    com.apple.driver.AppleFWOHCI      4.7.3
    com.apple.driver.AirPort.Brcm4331           433.11.5
    com.apple.driver.AppleSDXC           1.0.3
    com.apple.iokit.AppleBCM5701Ethernet   3.0.5b8
    com.apple.driver.AppleEFINVRAM  1.4.0
    com.apple.driver.AppleSmartBatteryManager      160.0.0
    com.apple.driver.AppleAHCIPort     2.1.7
    com.apple.driver.AppleUSBEHCI     4.2.4
    com.apple.driver.AppleACPIButtons           1.3.6
    com.apple.driver.AppleRTC  1.3.1
    com.apple.driver.AppleHPET           1.5
    com.apple.driver.AppleSMBIOS       1.7
    com.apple.driver.AppleACPIEC        1.3.6
    com.apple.driver.AppleAPIC            1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine        0
    com.apple.nke.applicationfirewall   2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement        142.6.0
    com.apple.iokit.IOSCSIBlockCommandsDevice       2.6.8
    com.apple.driver.AppleProfileReadCounterAction            67
    com.apple.driver.AppleProfileTimestampAction   67
    com.apple.driver.AppleProfileThreadInfoAction   67
    com.apple.driver.AppleProfileRegisterStateAction            67
    com.apple.driver.AppleProfileKEventAction          67
    com.apple.driver.AppleProfileCallstackAction        69
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP           2.0.3
    com.apple.iokit.IOSurface     74.2
    com.apple.iokit.IOBluetoothSerialManager            2.4.5f3
    com.apple.iokit.IOSerialFamily         10.0.3
    com.apple.iokit.CHUDKernLib          365
    com.apple.iokit.IOAudioFamily         1.8.3fc2
    com.apple.kext.OSvKernDSPLib      1.3
    com.apple.driver.AppleHDAController        2.0.5f14
    com.apple.iokit.IOHDAFamily           2.0.5f14
    com.apple.iokit.AppleProfileFamily 61
    com.apple.driver.IOPlatformPluginFamily 4.7.0a1
    com.apple.driver.AppleSMBusPCI   1.0.10d0
    com.apple.driver.AppleBacklightExpert     1.0.1
    com.apple.driver.AppleSMC 3.1.0d5
    com.apple.iokit.IONDRVSupport      2.2.1
    com.apple.kext.ATI6000Controller 6.3.6
    com.apple.kext.ATISupport  6.3.6
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.iokit.IOUSBMassStorageClass     2.6.7
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.1.6
    com.apple.driver.BroadcomUSBBluetoothHCIController  2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController         2.4.5f3
    com.apple.iokit.IOBluetoothFamily  2.4.5f3
    com.apple.driver.AppleUSBMultitouch       207.7
    com.apple.iokit.IOUSBHIDDriver     4.2.0
    com.apple.driver.AppleUSBMergeNub       4.2.4
    com.apple.driver.AppleUSBComposite        3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        2.6.8
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily 1.6.1
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily   2.6.8
    com.apple.driver.AppleThunderboltNHI    1.2.6
    com.apple.iokit.IOThunderboltFamily         1.4.9
    com.apple.iokit.IOUSBUserClient     4.2.4
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IO80211Family       320.1
    com.apple.iokit.IONetworkingFamily           1.10
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOUSBFamily            4.2.4
    com.apple.driver.AppleEFIRuntime            1.4.0
    com.apple.iokit.IOHIDFamily            1.6.6
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     6
    com.apple.driver.DiskImages           289
    com.apple.iokit.IOStorageFamily      1.6.3
    com.apple.driver.AppleACPIPlatform         1.3.6
    com.apple.iokit.IOPCIFamily 2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro8,2, BootROM MBP81.0047.B26, 4 processors, Intel Core i7, 2.4 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS547575A9E384, 698.64 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: My Passport 0746, 0x1058  (Western Digital Technologies, Inc.), 0x0746, 0xfa130000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0252, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 9
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: Microsoft® Nano Transceiver v1.0, 0x045e  (Microsoft Corporation), 0x0773, 0xfd120000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

    I didn't even know that i had little Snitch etc!? This is my work Mac and Sophos, Chk Point etc are standard installs by my admin. I installed Mackeeper to help with these issues but unfortunately, it seems that its part of the problem.
    You don't have LS installed.  The immediate culprits are the third party installations that installed these kext's.
    com.zeobit.kext.Firewall 2.0.1
    com.sophos.kext.sav  7.3.0
    com.cisco.nke.ipsec    2.0.3
    com.checkpoint.kext.P4MacFilterScheme   1.0
    com.checkpoint.kext.FDECryptoco
    So MacKeeper is always the first to go (com.zeobit.kext.Firewall).
    Next sophos stuff.
    Then the checkpoint stuff.
    Finally the cisco stuff.
    Booting in safe mode will suppress all this stuff that's quick way to see if one of these is the culprit.

  • Does anybody know how to get help with this one?

    Hello there!  
    I wanted to get an advice on how to get in touch with the appropriate person at BT that could help with my situation.
    I have tried telephone help, complaints by email and unfortunately still waiting for somebody from the customer services to help me out.
    I have recently moved home.  I contacted BT on 26th June to organise the line transfer to the new address. The date was set for 18th July. I also ordered line rental saver and paid for it over the phone. All went smooth, telephone and broadband was working fine at the new place, but on the 23rd July I was sent an email that "BT is sorry that I am leaving". 
    I thought it was a mistake, but the lady in the on-line chat said somebody stopped my service. Later she rang and left a message saying that I must have requested to move to another provider. Did not manage to speak to her again, but phoned the help line this time.
    There a gentleman was trying to convince me that I called BT and cancelled my service on the 18th July and to him I was not a BT customer anymore. The truth is that I did not request to stop my service, anyway - why would I do that after paying for a year in advance. This has no logic, but because computer says so then he thinks I did it.
    He also added that my account is a 'mess'. He then promised that somebody would get in touch to sort it out as my line rental was gone and my phone and internet could go off any minute.
    I did not get any help. After that I wrote to them  3 email complaints to request assistance. They called and aknowledge they will help, but 3 weeks down the line nothing was done to explain the situation. Left the messages to the person from email complaints to ring me or email me -never happened.
    Last week I got 2 emails welcoming me to BT and outlining the call plans that were diferent from each other and the one I agreed to on the 25th June. When I called help line 2 days ago a lady confirmed on which one I am on, but could not sort out the most annoying thing - the 'final' bill. 
    I was sent a bill for over 200 pounds due to premature termination of phone and broadband service , which I never ordered. They already took the money this week. My line saver is gone as well. So I am 360 pounds short. I aslo have no access to myBT to monitor my phone activity or make orders.They also did not send any confrimation of the call plan I am currently on.
    It is a very annoying situation, because somebody at BT made an error and I am unable to get to anybody that could help. Everytime you call the help line you speak to somebody else and despite me thinking the email complaints would be the way forward they are not. Would appreciate some advice on how to tackle these issues: false accusations from them, inappropriate billing, problem with myBT.
    Thanks Lukasz

    Hi lbadek
    I can help with this please send us an email using the contact the mods link in my proifle and we will investigated from there.
    Thanks
    Stuart
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Help with logical model

    Hi, I am new to this software and need some help with a simple logical model.
    Here is the task:
    I need to create a model for a parking garage.
    Each level can have any number of lots.
    There are different types of lots (handicapped, women, regular, ...) with different Prices and Sizes.
    It is important for the users and the system to know whether a lot is free or occupied.
    It is crucial to assign numbers to the lots, so users can find it again.
    And this is my model:
    Level 1:n Lot n:1 Type
    (#Level) (#Number,*Availability) (#Type,*Price,*Size)
    Question:
    Is it correct or would you change something? I am not quite sure whether to make availability and level an entity or an attribute of Lot.
    Which data types do I need to assign each attribute? What is the difference between logical and domain?
    Thanks in advance
    Edited by: user13256814 on Jun 2, 2010 3:51 AM

    Hi Bhaskaran,
      u can see the logs correspoding to your application in the server location..
    \usr\sap\<sid>\<instance_number>\j2ee\cluster\server0\
    i think ur application folder will be there inside this or within one subdirectory here.
    http://help.sap.com/saphelp_nw04s/helpdata/en/fe/4f5542253fb330e10000000a155106/content.htm
    U can check the service entries in services file which is located in
    <Drive Name>:\WINDOWS\system32\drivers\etc...
    but normally in JCO Connection test , if it is not showing errors(especially MetaData) , then it means this entry is there in the services file.
                                   Regards
                                     Kishor Gopinathan

  • Need help with Payment Terms

    Good Morning SAP Gurus-
    I need help with an request.  My client wishes to create a new Payment term with the following:
    Due date should fall on the 1st day of the month after the due period of 60 days end of month. So for example; an invoice with document date of March 8th should have a due date of June 1st 2012.
    How would I configure that in OBB8?

    OBB8
    Base line date as "Document dat"
    Fixed day    01
    Additional months   2
    try this,
    thanks

  • Help with date code

    Sry about this amount of code lines.... but i realy need help...
    I must insert into a table, the date, like 10/12/2009, and the time, like 22:34:12... but, when i select the date from a datepicker, and insert the time into a text field... i got this result:
    if the date inserted was 12/12/2009 and the time 22:34:12
    result is.......................12/12/0922 34:12:00 <<<<< it´s getting just the two lasts number of the year and inserting the two firsts number of the time into the year, like year 0922 ....
    I´m using a javascript source to create a datepicker......
    and that is the procedure to insert into the table.......
    PROCEDURE set_atendimento(
    p_id_chamado_atendimento IN chamado_atendimento.id_chamado_atendimento%TYPE,
    p_id_chamado IN chamado_atendimento.id_chamado%TYPE,
    p_informacao IN chamado_atendimento.informacao%TYPE,
    p_datahora_inicio IN chamado_atendimento.datahora_inicio%TYPE,
    p_datahora_fim IN chamado_atendimento.datahora_fim%TYPE,
    p_hora_inicio IN VARCHAR2,
    p_hora_fim IN VARCHAR2
    IS
    v_inicio DATE;
    v_fim DATE;
    BEGIN
    v_inicio := TO_DATE(TO_CHAR(p_datahora_inicio || p_hora_inicio), 'DD/MM/YYYY HH24:MI:SS');
    v_fim := TO_DATE(TO_CHAR(p_datahora_fim || p_hora_fim), 'DD/MM/YYYY HH24:MI:SS');
    UPDATE
    chamado_atendimento
    SET
    informacao = UPPER(p_informacao)
    WHERE
    id_chamado_atendimento = p_id_chamado_atendimento;
    IF SQL%NOTFOUND THEN
    INSERT INTO
    chamado_atendimento
    (id_chamado_atendimento, id_chamado, id_operador, datahora_inicio, datahora_fim, informacao)
    VALUES
    (SEQ_CHAMADO_ATENDIMENTO.nextval, p_id_chamado, pkg_operador.get_id_operador, v_inicio, v_fim, UPPER(p_informacao));
    END IF;
    END;
    that is the JAVASCRIPT
    <script language="JavaScript" type="text/JavaScript">
    $(function(){
    $.datepicker.setDefaults({
    showOn: 'button',
    buttonImage: '/i/themes/fwsac/includes/jquery/images/calendario.gif',
    buttonImageOnly: true,
    closeText: 'Fechar',
    prevText: '<Anterior',
    nextText: 'Pr&oacute;ximo>',
    currentText: 'Hoje',
    monthNames: ['Janeiro','Fevereiro','Mar&ccedil;o','Abril','Maio','Junho','Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
    monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun','Jul','Ago','Set','Out','Nov','Dez'],
    dayNames: ['Domingo','Segunda-feira','Ter&ccedil;a-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sabado'],
    dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sab'],
    dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sab'],
    dateFormat: 'dd/mm/yy',
    firstDay: 0,
    isRTL: false,
    showAnim: 'slide'
    $('#P5004_DATAHORA_INICIO , #P5004_DATAHORA_FIM').datepicker({ beforeShow: fdateRange });
    function fdateRange(input){
    return {
    minDate: (input.id == "P5004_DATAHORA_FIM" ? $("#P5004_DATAHORA_INICIO").datepicker("getDate") : null),
    maxDate: (input.id == "P5004_DATAHORA_INICIO" ? $("#P5004_DATAHORA_FIM").datepicker("getDate") : null)
    </script>
    what i must change to get the 4 numbers of the year and all numbers of the time and conca " || " with the date??
    can someone help with this, pls??

    Hello brugo,
    Try this:
    v_inicio := to_nchar((to_date(p_datahora_inicio || p_hora_inicio , 'DD/MM/YYYY HH24:MI:SS')), 'DD/MM/YYYY HH24:MI:SS');
    v_inicio := to_nchar((to_date(p_datahora_fim || p_hora_fim , 'DD/MM/YYYY HH24:MI:SS')), 'DD/MM/YYYY HH24:MI:SS');When I substitute strings: '10/12/2009' for p_datahora_inicio and '22:30:05' for p_hora_inicio, using this format string, I get: 10/12/2009 22:30:05 as a result.
    Don.
    You can reward this reply by marking it as either Helpful or Correct :)

  • Slow MBP... Help with EtreCheck Results please?

    Problem description:
    My MBP is running incredibly slow! For instance, just typing sometimes bogs the system down, and it definitely cannot handle multitasking like it used to, or open programs quickly.
    In June of 2014 my Hard Drive crashed. It was under Apple Care and they replaced it. I lost Apple Care in July, and since June it has progressively gotten slower. When Yosemite came out, I reformatted my computer as new and restored from an external hard drive back up. I have watched the activity monitor and the RAM doesn’t seem to be under any pressure (solid green all the way across), and the CPU doesn’t seem to go that high either (50%). I have tried all the initial steps of uninstalling what I thought could be slowing it down (i.e., Norton and some other things) in addition to taking away all start up programs except dropbox.
    I'm willing to do just about anything to get this computer through another 18 months... and if someone could find a way to get 36 months out of it I'll give you a million points.
    Thanks in advance for the community's help. You guys rock.
    P.S. Had a little issue with Carbonite a while back. I think it is taken care of though.
    EtreCheck version: 2.1.7 (114)
    Report generated January 31, 2015 at 3:53:34 PM CST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,1
        1 2.3 GHz Intel Core i5 CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 408
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 384 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 17:0:6
    Disk Information: ℹ️
        APPLE HDD HTS545050A7E362 disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 498.88 GB (262.62 GB free)
                Core Storage: disk0s2 499.25 GB Online
        OPTIARC DVD RW AD-5970H 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Western Digital My Passport 070A 319.37 GB
            EFI (disk2s1) <not mounted> : 210 MB
            Yosemite Backup (disk2s2) /Volumes/Yosemite Backup : 319.03 GB (96.57 GB free)
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [not loaded]    com.nike.sportwatch (1.0.0) [Support]
    Problem System Launch Daemons: ℹ️
        [failed]    com.apple.loginwindow.LFVTracer.plist [Details]
        [failed]    com.apple.NetBootClientHelper.plist [Details]
    Launch Agents: ℹ️
        [running]    com.brother.LOGINserver.plist [Support]
        [running]    com.carbonite.launchd.status.plist [Support]
        [invalid?]    com.examsoft.softest.plist [Support]
        [running]    com.nike.nikeplusconnect.plist [Support]
        [loaded]    com.oracle.java.Java-Updater.plist [Support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Support]
        [loaded]    com.carbonite.installhelper.plist [Support]
        [running]    com.carbonite.launchd.daemon.plist [Support]
        [running]    com.carbonite.launchd.monitor.plist [Support]
        [loaded]    com.carbonite.launchd.watcher.plist [Support]
        [running]    com.examsoft.softest.service.plist [Support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Support]
        [running]    com.wdc.SmartwareDriveService.plist [Support]
        [running]    com.wdc.WDSmartWareService.plist [Support]
    User Launch Agents: ℹ️
        [invalid?]    com.adobe.ARM.[...].plist [Support]
        [running]    com.amazon.music.plist [Support]
        [not loaded]    com.avast.install.plist [Support]
        [not loaded]    com.google.keystone.agent.plist [Support]
        [not loaded]    com.spotify.webhelper.plist [Support]
    User Login Items: ℹ️
        Carbonite    Application  (/Applications/Carbonite.app)
        Dropbox    Application  (/Applications/Dropbox.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 16.0.0.296 - SDK 10.6 [Support]
        QuickTime Plugin: Version: 7.7.3
        Flash Player: Version: 16.0.0.296 - SDK 10.6 [Support]
        Default Browser: Version: 600 - SDK 10.10
        SharePointBrowserPlugin: Version: 14.4.5 - SDK 10.6 [Support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Support]
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
    Safari Extensions: ℹ️
        WasteNoTime [Installed]
        wrc [Installed]
        Ebates Cash Back [Installed]
        Better Facebook [Installed]
        Norton Internet Security [Cached]
        AdBlock [Installed]
        Awesome Screenshot [Installed]
    3rd Party Preference Panes: ℹ️
        Flash Player  [Support]
        Java  [Support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: ON
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 498.88 GB Disk used: 236.26 GB
        Destinations:
            Yosemite Backup [Local]
            Total size: 319.03 GB
            Total number of backups: 16
            Oldest backup: 2015-01-17 12:02:39 +0000
            Last backup: 2015-01-18 03:39:38 +0000
            Size of backup disk: Too small
                Backup size 319.03 GB < (Disk used 236.26 GB X 3)
    Top Processes by CPU: ℹ️
            13%    WindowServer
             8%    com.apple.WebKit.Networking
             7%    CarboniteDaemon
             4%    Safari
             1%    hidd
    Top Processes by Memory: ℹ️
        155 MB    Safari
        64 MB    ocspd
        52 MB    Finder
        43 MB    mds
        43 MB    Mail
    Virtual Memory Information: ℹ️
        30 MB    Free RAM
        1.16 GB    Active RAM
        1.14 GB    Inactive RAM
        1.07 GB    Wired RAM
        15.81 GB    Page-ins
        1.33 GB    Page-outs
    Diagnostics Information: ℹ️
        Jan 31, 2015, 03:58:22 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155822_[redacted ].crash
        Jan 31, 2015, 03:58:10 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155810_[redacted ].crash
        Jan 31, 2015, 03:58:00 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155800_[redacted ].crash
        Jan 31, 2015, 03:57:50 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155750_[redacted ].crash
        Jan 31, 2015, 03:57:40 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155740_[redacted ].crash
        Jan 31, 2015, 03:57:29 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155729_[redacted ].crash
        Jan 31, 2015, 03:57:21 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155721_[redacted ].crash
        Jan 31, 2015, 03:57:08 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155708_[redacted ].crash
        Jan 31, 2015, 03:56:58 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155658_[redacted ].crash
        Jan 31, 2015, 03:56:48 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155648_[redacted ].crash
        Jan 31, 2015, 03:56:38 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155638_[redacted ].crash
        Jan 31, 2015, 03:56:27 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155627_[redacted ].crash
        Jan 31, 2015, 03:56:18 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155618_[redacted ].crash
        Jan 31, 2015, 03:56:06 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155606_[redacted ].crash
        Jan 31, 2015, 03:55:56 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155556_[redacted ].crash
        Jan 31, 2015, 03:55:46 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155546_[redacted ].crash
        Jan 31, 2015, 03:55:36 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155536_[redacted ].crash
        Jan 31, 2015, 03:55:25 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155525_[redacted ].crash
        Jan 31, 2015, 03:55:18 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155518_[redacted ].crash
        Jan 31, 2015, 03:55:05 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-155505_[redacted ].crash
        Jan 31, 2015, 03:50:25 PM    /Library/Logs/DiagnosticReports/CarboniteDaemon_2015-01-31-155025_[redacted].cp u_resource.diag [Details]
        Jan 31, 2015, 03:26:27 PM    /Library/Logs/DiagnosticReports/CarboniteDaemon_2015-01-31-152627_[redacted].cr ash
        Jan 31, 2015, 12:21:25 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-122125_[redacted ].crash
        Jan 31, 2015, 12:21:15 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-122115_[redacted ].crash
        Jan 31, 2015, 12:21:04 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-122104_[redacted ].crash
        Jan 31, 2015, 12:20:54 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-122054_[redacted ].crash
        Jan 31, 2015, 12:20:44 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-122044_[redacted ].crash
        Jan 31, 2015, 12:20:35 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-122035_[redacted ].crash
        Jan 31, 2015, 12:20:23 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-122023_[redacted ].crash
        Jan 31, 2015, 12:20:13 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-122013_[redacted ].crash
        Jan 31, 2015, 12:20:03 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-122003_[redacted ].crash
        Jan 31, 2015, 12:19:53 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121953_[redacted ].crash
        Jan 31, 2015, 12:19:43 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121943_[redacted ].crash
        Jan 31, 2015, 12:19:33 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121933_[redacted ].crash
        Jan 31, 2015, 12:19:22 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121922_[redacted ].crash
        Jan 31, 2015, 12:19:12 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121912_[redacted ].crash
        Jan 31, 2015, 12:19:01 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121901_[redacted ].crash
        Jan 31, 2015, 12:18:41 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121841_[redacted ].crash
        Jan 31, 2015, 12:18:32 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121832_[redacted ].crash
        Jan 31, 2015, 12:18:20 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121820_[redacted ].crash
        Jan 31, 2015, 12:18:10 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121810_[redacted ].crash
        Jan 31, 2015, 10:51:16 AM    /Library/Logs/DiagnosticReports/LegacyFileVaultMessageTracer_2015-01-31-105116_ [redacted].crash
        Jan 31, 2015, 10:13:15 AM    /Library/Logs/DiagnosticReports/CarboniteDaemon_2015-01-31-101315_[redacted].cp u_resource.diag [Details]
        Jan 30, 2015, 10:54:15 PM    Self test - passed
        Jan 30, 2015, 10:40:00 PM    /Library/Logs/DiagnosticReports/EvernoteHelper_2015-01-30-224000_[redacted].cra sh
        Jan 30, 2015, 10:33:40 PM    /Library/Logs/DiagnosticReports/CarboniteDaemon_2015-01-30-223340_[redacted].cp u_resource.diag [Details]
        Jan 30, 2015, 10:24:35 PM    /Library/Logs/DiagnosticReports/CarboniteDaemon_2015-01-30-222435_[redacted].cr ash
        Jan 30, 2015, 10:23:40 PM    /Library/Logs/DiagnosticReports/Evernote_2015-01-30-222340_[redacted].hang
        Jan 30, 2015, 10:23:39 PM    /Library/Logs/DiagnosticReports/Microsoft Office Setup Assistant_2015-01-30-222339_[redacted].hang
        Jan 30, 2015, 10:23:39 PM    /Library/Logs/DiagnosticReports/Microsoft Excel_2015-01-30-222339_[redacted].hang
        Jan 30, 2015, 03:40:00 PM    /Library/Logs/DiagnosticReports/CarboniteDaemon_2015-01-30-154000_[redacted].cp u_resource.diag [Details]
        Jan 30, 2015, 03:03:51 PM    /Library/Logs/DiagnosticReports/CarboniteDaemon_2015-01-30-150351_[redacted].cr ash
        Jan 30, 2015, 12:34:22 PM    /Library/Logs/DiagnosticReports/Carbonite_2015-01-30-123422_[redacted].hang
        Jan 30, 2015, 02:36:11 AM    /Library/Logs/DiagnosticReports/SymDaemon_2015-01-30-023611_[redacted].crash
        Jan 30, 2015, 12:42:20 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004220_[redacted ].crash
        Jan 30, 2015, 12:42:10 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004210_[redacted ].crash
        Jan 30, 2015, 12:42:00 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004200_[redacted ].crash
        Jan 30, 2015, 12:41:50 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004150_[redacted ].crash
        Jan 30, 2015, 12:41:40 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004140_[redacted ].crash
        Jan 30, 2015, 12:41:29 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004129_[redacted ].crash
        Jan 30, 2015, 12:41:19 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004119_[redacted ].crash
        Jan 30, 2015, 12:41:09 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004109_[redacted ].crash
        Jan 30, 2015, 12:40:59 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004059_[redacted ].crash
        Jan 30, 2015, 12:40:49 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004049_[redacted ].crash
        Jan 30, 2015, 12:40:38 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004038_[redacted ].crash
        Jan 30, 2015, 12:40:28 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004028_[redacted ].crash
        Jan 30, 2015, 12:40:18 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004018_[redacted ].crash
        Jan 30, 2015, 12:40:08 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-004008_[redacted ].crash
        Jan 30, 2015, 12:39:58 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-003958_[redacted ].crash
        Jan 30, 2015, 12:39:47 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-003947_[redacted ].crash
        Jan 30, 2015, 12:39:37 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-003937_[redacted ].crash
        Jan 30, 2015, 12:39:27 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-003927_[redacted ].crash
        Jan 30, 2015, 12:39:17 AM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-30-003917_[redacted ].crash
        Jan 29, 2015, 09:58:21 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215821_[redacted ].crash
        Jan 29, 2015, 09:58:11 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215811_[redacted ].crash
        Jan 29, 2015, 09:58:01 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215801_[redacted ].crash
        Jan 29, 2015, 09:57:52 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215752_[redacted ].crash
        Jan 29, 2015, 09:57:40 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215740_[redacted ].crash
        Jan 29, 2015, 09:57:30 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215730_[redacted ].crash
        Jan 29, 2015, 09:57:20 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215720_[redacted ].crash
        Jan 29, 2015, 09:57:09 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215709_[redacted ].crash
        Jan 29, 2015, 09:56:59 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215659_[redacted ].crash
        Jan 29, 2015, 09:56:49 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215649_[redacted ].crash
        Jan 29, 2015, 09:56:39 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215639_[redacted ].crash
        Jan 29, 2015, 09:56:29 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215629_[redacted ].crash
        Jan 29, 2015, 09:56:18 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215618_[redacted ].crash
        Jan 29, 2015, 09:56:08 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215608_[redacted ].crash
        Jan 29, 2015, 09:55:58 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215558_[redacted ].crash
        Jan 29, 2015, 09:55:48 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215548_[redacted ].crash
        Jan 29, 2015, 09:55:37 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215537_[redacted ].crash
        Jan 29, 2015, 09:55:27 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215527_[redacted ].crash
        Jan 29, 2015, 09:55:17 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-29-215517_[redacted ].crash
        Jan 29, 2015, 08:01:01 PM    /Library/Logs/DiagnosticReports/SymDaemon_2015-01-29-200101_[redacted].cpu_reso urce.diag [Details]
        Jan 29, 2015, 07:37:46 PM    /Library/Logs/DiagnosticReports/CarboniteDaemon_2015-01-29-193746_[redacted].cp u_resource.diag [Details]
        Jan 28, 2015, 04:51:10 PM    /Library/Logs/DiagnosticReports/SymDaemon_2015-01-28-165110_[redacted].cpu_reso urce.diag [Details]
        Jan 13, 2015, 09:03:09 PM    /Library/Logs/DiagnosticReports/Kernel_2015-01-13-210309_[redacted].panic [Details]
        Jan 31, 2015, 12:18:51 PM    /Library/Logs/DiagnosticReports/NetBootClientHelper_2015-01-31-121851_[redacted ].crash

    I use the freeware, EasyFind 4.9.3, to search for and delete unwanted files.
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, EasyFind, instead.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
        1. AppZapper
        2. AppDelete
        3. Automaton
        4. Hazel
        5. AppCleaner
        6. CleanApp
        7. iTrash
        8. Amnesia
        9. Uninstaller
      10. Spring Cleaning
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • Help with calculated column formula- combine strings and convert to date

    In my list (SharePoint Server 2013) I have:
    'Invoiced Month' column, type of choice (strings with names of months- January, February, March..., December)
    'Year' column, single line of text (e.g. 2012, 2013, 2014)
    1. I need to create a calculated column which will return combined value of the columns above, but in DATE format e.g. 'Sep-2013' or '01-Sep-2013'.
    I then use that newly created calculated column to do this: http://iwillsharemypoint.blogspot.in/2012/03/sharepoint-list-view-of-current-month.html
    I am rubbish with formulas, can I have some help with my problem please?

    Hi,
    Use the formula, I have tested by creating Months column with choice, Year column as numeric and Calculated column as DateTime returned.
    =DATE(Year,IF([Months]="January", 1,IF([Months]="February",2,IF([Months]="March",3,IF([Months]="April",4,IF([Months]="May",5,IF([Months]="June",6,IF([Months]="July",7,IF([Months]="August",8,IF([Months]="September",9,IF([Months]="October",10,IF([Months]="November",11,12))))))))))),1)
    Before applying the formula few things need to be noted.
    DATE(YEAR, MONTH,DAY) will accepts three parameters all should be type numeric(integer).
    Create the Year column of type numeric
    Create the calculated column of type "DateTime" to return as date
    Please mark it answered, if your problem resolved or helpful.

  • Help with creating Box2D bodies dynamically, according to shape.

    Hello everyone,
    I am having some issues on how to dynamically create Box2D bodies dynamically, according to the shape.
    So far this is how I've layed out my project in attempt to do this...
    Main class:
    package
    //imports
              public class Architecture extends Sprite
                        public var world:b2World;
                        public var stepTimer:Timer;
                        public var mToPx:Number = 20;
                        public var pxToM:Number = 1 / mToPx;
                        protected var shapeObjectDirector:ShapeObjectDirector = new ShapeObjectDirector();
                        public function Architecture()
      //gravity
                                  var gravity:b2Vec2 = new b2Vec2(0, 10);
                                  world = new b2World(gravity, true);
      //debug draw
                                  var debugDraw:b2DebugDraw = new b2DebugDraw();
                                  var debugSprite:Sprite = new Sprite();
                                  addChild(debugSprite);
                                  debugDraw.SetSprite(debugSprite);
                                  debugDraw.SetDrawScale(mToPx);
                                  debugDraw.SetFlags(b2DebugDraw.e_shapeBit);
                                  debugDraw.SetAlpha(0.5);
                                  world.SetDebugDraw(debugDraw);
      //declarations
                                  var wheelBuilder:WheelBuilder = new WheelBuilder(world, pxToM);
                                  createShape(wheelBuilder, 0, 0, 0, 0);
      //timer
                                  stepTimer = new Timer(0.025 * 1000);
                                  stepTimer.addEventListener(TimerEvent.TIMER, onTick);
                                  stepTimer.start();
                        private function createShape(shapeObjectBuilder:ShapeObjectBuilder, pxStartX:Number, pxStartY:Number, mVelocityX:Number, mVelocityY:Number):void
                                  shapeObjectDirector.setShapeObjectBuilder(shapeObjectBuilder);
                                  var body:b2Body = shapeObjectDirector.createShapeObject(pxStartX * pxToM, pxStartY * pxToM, mVelocityX, mVelocityY);
                                  var sprite:B2Sprite = body.GetUserData() as B2Sprite;
                                  sprite.x = pxStartX;
                                  sprite.y = pxStartY;
                                  this.addChild(sprite);
                        public function onTick(event:TimerEvent):void
                                  world.Step(0.025, 10, 10);
                                  world.DrawDebugData();
    ShapeObjectBuilder class:
    package
    //imports
              public class ShapeObjectBuilder
                        public var body:b2Body;
                        protected var circle:b2CircleShape;
                        protected var polygon:b2PolygonShape;
                        protected var world:b2World, pxToM:Number;
                        protected var fixtureDef:b2FixtureDef;
                        protected var bodyDef:b2BodyDef;
                        protected var fixture:b2Fixture;
                        protected var startingVelocity:b2Vec2;
                        protected var sprite:B2Sprite;
                        protected var restitution:Number, friction:Number, density:Number;
                        protected var mStartX:Number, mStartY:Number;
                        protected var mVelocityX:Number, mVelocityY:Number;
                        protected var Image:Class;
                        public function ShapeObjectBuilder(world:b2World, pxToM:Number)
                                  this.world = world;
                                  this.pxToM = pxToM;
                        public function createCircleShape():void
                                  circle = new b2CircleShape();
                                  createFixtureDef(circle);
                        public function createPolygonShape():void
                                  polygon = new b2PolygonShape();
                                  createFixtureDef(polygon);
                        public function createFixtureDef(shape:b2Shape):void
                                  fixtureDef = new b2FixtureDef();
                                  fixtureDef.shape = shape;
                                  fixtureDef.restitution = restitution;
                                  fixtureDef.friction = friction;
                                  fixtureDef.density = density;
                        public function createBodyDef(mStartX:Number, mStartY:Number):void
                                  bodyDef = new b2BodyDef();
                                  bodyDef.type = b2Body.b2_dynamicBody;
                                  bodyDef.position.Set(mStartX, mStartY);
                        public function createBody():void
                                  body = world.CreateBody(bodyDef);
                        public function createFixture():void
                                  fixture = body.CreateFixture(fixtureDef);
                        public function setStartingVelocity(mVelocityX:Number, mVelocityY:Number):void
                                  startingVelocity = new b2Vec2(mVelocityX, mVelocityY);
                                  body.SetLinearVelocity(startingVelocity);
                        public function setImage():void
                                  sprite = new B2Sprite();
                                  var bitmap:Bitmap = new Image();
                                  sprite.addChild(bitmap);
                                  bitmap.x -= bitmap.width / 2;
                                  bitmap.y -= bitmap.height / 2;
                        public function linkImageAndBody():void
                                  body.SetUserData(sprite);
                                  sprite.body = body;
    ShapeObjectDirector class:
    package builders
    //imports
              public class ShapeObjectDirector
                        protected var shapeObjectBuilder:ShapeObjectBuilder;
                        public function ShapeObjectDirector()
      //constructor code
                        public function setShapeObjectBuilder(builder:ShapeObjectBuilder):void
                                  this.shapeObjectBuilder = builder;
                        public function createCircleObject():void
                                  shapeObjectBuilder.createCircleShape();
                        public function createPolygonObject():void
                                  shapeObjectBuilder.createPolygonShape();
                        public function createShapeObject(mStartX:Number, mStartY:Number, mVelocityX:Number, mVelocityY:Number):b2Body
                                  shapeObjectBuilder.createBodyDef(mStartX, mStartY);
                                  shapeObjectBuilder.createBody();
                                  shapeObjectBuilder.createFixture();
                                  shapeObjectBuilder.setStartingVelocity(mVelocityX, mVelocityY);
                                  shapeObjectBuilder.setImage();
                                  shapeObjectBuilder.linkImageAndBody();
                                  return shapeObjectBuilder.body;
    WheelBuilder class:
    package builders
      //imports
              public class WheelBuilder extends ShapeObjectBuilder
                        [Embed(source='../../lib/Basketball.png')]
                        public var Basketball:Class;
                        public function WheelBuilder(world:b2World, pxToM:Number)
                                  super(world, pxToM);
                                  restitution = 1.0;
                                  friction = 0.0;
                                  density = 5.0;
                                  Image = Basketball;
                                  circle.SetRadius(15 * 0.5 * pxToM);
    The above code did have some errors, but even if it worked I wouldn't have been happy. It was just my attempt at what I'm trying to achieve.
    What I want to is be able to call a function in my "Main" class to create a shape (Circle body or Polygon body), like so... createShape(wheelBuilder, 0, 0, 0, 0);
    I would like to make the class ShapeObjectDirector and ShapeObjectBuilder to be able to handle b2CircleShape() and b2PolygonShape(), but my problem is creating constants to handle both datatypes all in the one class.
    Basically, I need help with building a class to create shapes on the fly, with minimal code in the Main class. What do you guys suggest? I would be grateful for one of you's who have enough experience with this kind of thing to write me a post on how I can tackle this problem, all responses appreciated.
    Thankyou,
    Brendon.

    UIImageView initWithImage takes a UIImage* as a parameter, not NSString*. So load your image into a UIImage first
    UIImage *ballImage = [UIImage imageNamed:@"Ball.png"];
    UIImageView *tempStart = [[UIImageView alloc] initWithImage:ballImage];

  • Help with a resetting running total

    Hi, I need help with a query that will have a running total that resets at certain points
    Version
    BANNER                                                                        
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production    
    PL/SQL Release 11.2.0.3.0 - Production                                          
    CORE  11.2.0.3.0  Production                                                        
    TNS for Linux: Version 11.2.0.3.0 - Production                                  
    NLSRTL Version 11.2.0.3.0 - Production sample data
    create table t ( stat varchar2(3)
                   , beg_dt date
                   , end_dt date
                   , dur    number);
    Insert into t  values ('ACT',to_date('01-JUL-2012','DD-MON-YYYY'),to_date('31-JUL-2012','DD-MON-YYYY'),31);
    Insert into t  values ('ACT',to_date('01-AUG-2012','DD-MON-YYYY'),to_date('31-AUG-2012','DD-MON-YYYY'),31);
    Insert into t  values ('ACT',to_date('01-SEP-2012','DD-MON-YYYY'),to_date('30-SEP-2012','DD-MON-YYYY'),30);
    Insert into t  values ('LOA',to_date('01-OCT-2012','DD-MON-YYYY'),to_date('25-OCT-2012','DD-MON-YYYY'),25);
    Insert into t  values ('LOA',to_date('26-OCT-2012','DD-MON-YYYY'),to_date('31-OCT-2012','DD-MON-YYYY'),6);
    Insert into t  values ('LOA',to_date('01-NOV-2012','DD-MON-YYYY'),to_date('04-NOV-2012','DD-MON-YYYY'),4);
    Insert into t  values ('ACT',to_date('05-NOV-2012','DD-MON-YYYY'),to_date('10-NOV-2012','DD-MON-YYYY'),6);
    Insert into t  values ('LOA',to_date('11-NOV-2012','DD-MON-YYYY'),to_date('30-NOV-2012','DD-MON-YYYY'),20);
    Insert into t  values ('LOA',to_date('01-DEC-2012','DD-MON-YYYY'),to_date('15-DEC-2012','DD-MON-YYYY'),15);
    Insert into t  values ('ACT',to_date('16-DEC-2012','DD-MON-YYYY'),to_date('31-DEC-2012','DD-MON-YYYY'),16);
    Insert into t  values ('LOA',to_date('01-JAN-2013','DD-MON-YYYY'),to_date('31-JAN-2013','DD-MON-YYYY'),31);
    Insert into t  values ('LOA',to_date('01-FEB-2013','DD-MON-YYYY'),to_date('05-FEB-2013','DD-MON-YYYY'),5);
    Insert into t  values ('LOA',to_date('06-FEB-2013','DD-MON-YYYY'),to_date('15-FEB-2013','DD-MON-YYYY'),10);
    Insert into t  values ('LOA',to_date('16-FEB-2013','DD-MON-YYYY'),to_date('25-FEB-2013','DD-MON-YYYY'),10);
    Insert into t  values ('LOA',to_date('26-FEB-2013','DD-MON-YYYY'),to_date('28-FEB-2013','DD-MON-YYYY'),3);
    Insert into t  values ('LOA',to_date('01-MAR-2013','DD-MON-YYYY'),to_date('10-MAR-2013','DD-MON-YYYY'),10);
    Insert into t  values ('ACT',to_date('11-MAR-2013','DD-MON-YYYY'),to_date('31-MAR-2013','DD-MON-YYYY'),21);
    Insert into t  values ('ACT',to_date('01-APR-2013','DD-MON-YYYY'),to_date('30-APR-2013','DD-MON-YYYY'),30);
    Insert into t  values ('LOA',to_date('01-MAY-2013','DD-MON-YYYY'),to_date('25-MAY-2013','DD-MON-YYYY'),25);
    Insert into t  values ('LOA',to_date('26-MAY-2013','DD-MON-YYYY'),to_date('31-MAY-2013','DD-MON-YYYY'),6);
    Insert into t  values ('LOA',to_date('01-JUN-2013','DD-MON-YYYY'),to_date('04-JUN-2013','DD-MON-YYYY'),4);
    Insert into t  values ('ACT',to_date('05-JUN-2013','DD-MON-YYYY'),to_date('30-JUN-2013','DD-MON-YYYY'),26);This is close.
    select stat
        , beg_dt
        , end_dt                            
        , dur
        , sum( case stat when 'LOA' then dur else 0 end ) over ( partition by stat order by beg_dt) tot1
    from t
    order by beg_dt
    STAT BEG_DT      END_DT      DUR TOT1
    ACT  01-JUL-2012 31-JUL-2012  31    0
    ACT  01-AUG-2012 31-AUG-2012  31    0
    ACT  01-SEP-2012 30-SEP-2012  30    0
    LOA  01-OCT-2012 25-OCT-2012  25   25
    LOA  26-OCT-2012 31-OCT-2012   6   31
    LOA  01-NOV-2012 04-NOV-2012   4   35
    ACT  05-NOV-2012 10-NOV-2012   6    0
    LOA  11-NOV-2012 30-NOV-2012  20   55
    LOA  01-DEC-2012 15-DEC-2012  15   70
    ACT  16-DEC-2012 31-DEC-2012  16    0
    LOA  01-JAN-2013 31-JAN-2013  31  101
    LOA  01-FEB-2013 05-FEB-2013   5  106
    LOA  06-FEB-2013 15-FEB-2013  10  116
    LOA  16-FEB-2013 25-FEB-2013  10  126
    LOA  26-FEB-2013 28-FEB-2013   3  129
    LOA  01-MAR-2013 10-MAR-2013  10  139
    ACT  11-MAR-2013 31-MAR-2013  21    0
    ACT  01-APR-2013 30-APR-2013  30    0
    LOA  01-MAY-2013 25-MAY-2013  25  164
    LOA  26-MAY-2013 31-MAY-2013   6  170
    LOA  01-JUN-2013 04-JUN-2013   4  174
    ACT  05-JUN-2013 30-JUN-2013  26    0 I need a running total of LOA stat that will reset itself with each break of ACT so that I get :
    STAT BEG_DT      END_DT      DUR TOT1
    ACT  01-JUL-2012 31-JUL-2012  31    0
    ACT  01-AUG-2012 31-AUG-2012  31    0
    ACT  01-SEP-2012 30-SEP-2012  30    0
    LOA  01-OCT-2012 25-OCT-2012  25   25
    LOA  26-OCT-2012 31-OCT-2012   6   31
    LOA  01-NOV-2012 04-NOV-2012   4   35
    ACT  05-NOV-2012 10-NOV-2012   6    0
    LOA  11-NOV-2012 30-NOV-2012  20   20
    LOA  01-DEC-2012 15-DEC-2012  15   35
    ACT  16-DEC-2012 31-DEC-2012  16    0
    LOA  01-JAN-2013 31-JAN-2013  31   31
    LOA  01-FEB-2013 05-FEB-2013   5   36
    LOA  06-FEB-2013 15-FEB-2013  10   46
    LOA  16-FEB-2013 25-FEB-2013  10   56
    LOA  26-FEB-2013 28-FEB-2013   3   59
    LOA  01-MAR-2013 10-MAR-2013  10   69
    ACT  11-MAR-2013 31-MAR-2013  21    0
    ACT  01-APR-2013 30-APR-2013  30    0
    LOA  01-MAY-2013 25-MAY-2013  25   25
    LOA  26-MAY-2013 31-MAY-2013   6   31
    LOA  01-JUN-2013 04-JUN-2013   4   35
    ACT  05-JUN-2013 30-JUN-2013  26    0 Any help would be appreciated, thanks.

    Hi,
    So, you want a separate total whenever there's an 'ACT'. That's what PARTITION BY is for. You need to add the number of ACTs already encountered (which I called act_cnt) to the PARTITION BY clause that gets you the SUM.
    We can get act_cnt using the analytic functions like COUNT or SUM, but, since one analytic function can't depend on another computed inthe same query, we need to use a sub-query to compute act_cnt.
    Here's one way:
    WITH     got_act_cnt     AS
         SELECT     stat, beg_dt, end_dt, dur
         ,     COUNT (CASE WHEN stat = 'ACT' THEN 1 END)
                  OVER (ORDER BY  beg_dt)   AS act_cnt
         FROM    t
    SELECT       stat, beg_dt, end_dt, dur
    ,       SUM (CASE stat WHEN 'LOA' THEN dur ELSE 0 END)
             OVER ( PARTITION BY  stat
                     ,                act_cnt     -- ***** NEW *****
                 ORDER BY      beg_dt
               )       AS totl
    FROM      got_act_cnt
    ORDER BY  beg_dt
    ;Are 'ACT' and 'LOA' the only possible values for stat? If so, the query above can probably be simplified.

  • [svn] 1991: Also reducing HexEncoder buffer size from 64K to 32K to help with the smaller stack size of the AVM on Mac as part of fix for SDK-15232 .

    Revision: 1991
    Author: [email protected]
    Date: 2008-06-06 19:05:02 -0700 (Fri, 06 Jun 2008)
    Log Message:
    Also reducing HexEncoder buffer size from 64K to 32K to help with the smaller stack size of the AVM on Mac as part of fix for SDK-15232.
    QE: Yes, please test mx.utils.HexEncoder with ByteArrays larger than 64K on PC and Mac too.
    Doc: No
    Checkintests: Pass
    Bugs:
    SDK-15232
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15232
    http://bugs.adobe.com/jira/browse/SDK-15232
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/rpc/src/mx/utils/HexEncoder.as

    I'm having this same issue. I also have this line in my log, which is curious:
    12/14/14 7:13:07.822 PM netbiosd[16766]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    Is this related to the problem? What does it mean?
    My 2010 27" iMac running Yosemite won't wake up from sleep.

  • [svn] 1990: Reducing Base64Encoder buffer size from 64K to 32K to help with the smaller stack size of the AVM on Mac .

    Revision: 1990
    Author: [email protected]
    Date: 2008-06-06 18:53:36 -0700 (Fri, 06 Jun 2008)
    Log Message:
    Reducing Base64Encoder buffer size from 64K to 32K to help with the smaller stack size of the AVM on Mac.
    QE: Yes, please test mx.utils.Base64Encoder with Strings and ByteArrays larger than 64K on PC and Mac after these changes.
    Doc: No
    Checkintests: Pass
    Bugs:
    SDK-15232 - mx.utils.Base64Encoder.encodeBytes "toString()" or "flush" produces 1511 error on MAC
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15232
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/utils/Base64Encoder.as

    You can go with these options :
    http://musewidgets.com/collections/all/products/responsive-image
    http://musewidgets.com/collections/all/products/responsive-images
    Thanks,
    Sanjit

Maybe you are looking for

  • Error at runtime while consuming a portlet in webcenter application

    Hi, I am also facing the same issue. oracle.portlet.client.persistence.PersistenceNotFoundException: mdsId=/oracle/adf/portlet/WsrpPortletProducer0/ap/PortalContentBIReportsjspx_3715283e_0134_1000_8001_ac1801a53f3d.pxml not found at oracle.portlet.cl

  • Forcing a column to display x decimals

    I have a dynamic HTML Spry data set, that (partly) shows up like this: I want to force this display to show 2 decimals for certain columns, so you get figures displayed as 1.05 and 1.10 and not as 1.05 and 1.1 On other columns it may show up as 5, 5.

  • How can I get access to Encore 2.0

    Jeff, I have tried to contact support several times about this problem, and every time they send me back to the forum, even after I link them to this post, and send them this excerpt from above: "If the software title you have purchased is affected b

  • Performance - Internet based solution

    Hello All, We are evaluating SGD vs. NoMachine. Although the overall features of SGD, seamless access to applications - Internet based, is to be applauded, the overall interactive screen updates and general performance appears to be far less than NoM

  • How can I add time-sensitive data (EST) to my site?

    I've created a website for a radio station and they'd like the user to see what's on the broadcast now, and what's coming up next on the broadcast. To see a good example, go to BottRadioNetwork.com. Paige Powell