Sandbox problem with computeSpectrum

I'm playing with computeSpectrum, and I get the following
error. I'm running everything locally, so I'm confused as to why
this even shows up. The problem is also somewhat random. The error
doesn't come up immediately when I test the swf, it takes about 30
seconds to show up, but sometimes shows up before then. I tried
adding Security.allowDomain("*"); to my constructor function, but
the error still came up. It also appears to only show up when
testing the movie in Flash, and not when viewing the SWF in the
desktop Flash Player. How can I get around this? I have no need for
security with this project so I'm OK with allowing
everything....only if it could actually work.

That's strange, because everything is local. This is how I'm
loading the song:
sound = new Sound(new URLRequest("clockwork.mp3"));
that mp3 is in the same folder as the swf and everything
else. I did take this mp3 from my iTunes library, so it looks like
it added some meta data to the file, but it never had any DRM on
it. I don't see how it could be calling to the Internet or anything
like that...any ideas?

Similar Messages

  • Design problem with JScrollPane

    First, I have problems with english. I hope u understand without problems that Im trying to say here. Sorry about that.
    Mi problem is whit a JScrollPane. I want to put an image whit a predefined size for draw inside it. I dont have any information about it, just the size. I want to put it in a JPane. The best choice is use the JPane area. The problem is that I want to use a JScrollPane because the image is bigger that the visualization area.
    Im unable to put a Canvas in the ScrollPane, or a JPane whit a predefined size or an image whit a predefined size. Im sure that is a design problem. Somebody can tell me something I can start whit? What do u think is better choice to put inside a JScrollPane?
    I dont send any source code because I dont have anything else that is show in the example.
    Gracias.

    import java.awt.*;
    import javax.swing.*;
    import java.net.URL;
    public class Test extends JFrame {
      String url = "http://www.sandbox-usa.com/images/product_images/2piece_16.gif";
      public Test() {
    //    System.getProperties().put( "proxySet", "true" );  // uncomment if you have proxy
    //    System.getProperties().put( "proxyHost", "myproxy.mydomain.com" ); // Your proxyname/IP
    //    System.getProperties().put( "proxyPort", "80"); // Sometimes 8080   
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);   
        Container content = getContentPane();
        try {
          Image i = Toolkit.getDefaultToolkit().getImage(new URL(url));
          JLabel jl = new JLabel(new ImageIcon(i));
          content.add(new JScrollPane(jl), BorderLayout.CENTER);
          setSize(200, 200);   
          setVisible(true); 
        } catch (Exception e) { e.printStackTrace(); }
      public static void main(String[] args) { new Test(); }
    }

  • Problem with binding in h:dataTable

    Hi
    I have a problem with h:dataTable, where the table rows are bound to objects (Bean$Line) nested within a backing bean (Bean).
    JSP:
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <html>
      <f:view>
        <head>
          <link href="styles.css" rel="stylesheet" type="text/css"/>
          <title>Sandbox</title>
        </head>
        <body>
          <h:form>
            <h:dataTable value="#{bean.lines}" var="line">
              <h:column>
                <h:outputText value="#{line.id}"/>
              </h:column>
              <h:column>
                <!-- using value = line.lineSelected here works (assuming boolean property Line.lineSelected) --/>
                <h:selectBooleanCheckbox binding="#{line.lineSelected}"/>
              </h:column>
            </h:dataTable>
          </h:form>
        </body>
      </f:view>
    </html>Bean:
    package com.test;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.UISelectBoolean;
    public final class Bean {
      private final List<Line> lines;
      public Bean() {
        lines = new ArrayList<Line>();
        lines.add(new Line("one"));
        lines.add(new Line("two"));
        lines.add(new Line("three"));
      public List<Line> getLines() {
        return lines;
       * Nested class in order to access containing class
       * properties etc.
      public static class Line {
        //private boolean lineSelected = false;
        private UISelectBoolean lineSelected;
        private String id;
        public Line(String id) {
          this.id = id;
        /*public boolean isLineSelected() {
          return lineSelected;
        public void setLineSelected(boolean lineSelected) {
          this.lineSelected = lineSelected;
        public UISelectBoolean getLineSelected() {
          return lineSelected;
        public void setLineSelected(UISelectBoolean lineSelected) {
          this.lineSelected = lineSelected;
        public String getId() {
          return id;
        public void setId(String id) {
          this.id = id;
      } // Line
    }The setup works when I use value="#{line.lineSelected}" (assuming the property is defined as boolean in Bean$Line) but as soon as I use a binding, I get the following exception:
    com.sun.rave.web.ui.appbase.ApplicationException: javax.servlet.ServletException: javax.el.PropertyNotFoundException: Target Unreachable, identifier 'line' resolved to null
    at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.cleanup(ViewHandlerImpl.java:594)
    at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:325)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:106)
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:251)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317)
    faces_config:
    <faces-config version="1.2"
                  xmlns="http://java.sun.com/xml/ns/javaee"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
      <application>
        <locale-config>
          <default-locale>en_GB</default-locale>
          <supported-locale>en_GB</supported-locale>     
        </locale-config>
      </application>
      <managed-bean>
        <managed-bean-name>bean</managed-bean-name>
        <managed-bean-class>com.test.Bean</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
      </managed-bean>
    </faces-config>What am I missing here?
    Help much appreciated
    Lance

    Guys
    Thanks a lot, both of your replies are immensely instructive. Maybe a little background on what I'm trying to do. In the table, I have header rows with dependent line rows. When a check box is ticked in the header, I want the corresponding check boxes in the dependent lines to be checked automatically (in slave fashion and ideally without using JavaScript). My idea was to update the bound components (for the lines) from within the Bean (in response to change on the header). However, given there's only a single component for each column in the table, this of course doesn't make sense.
    I'm trying to get to the typical MVC workflow of a) user updates a View component, b) Controller detects the change and updates the Model, c) The Model fires a property change event, which the View detects and updates appropriately. What's the way to achieve this in JSF (by design)?
    Here's a simple fragment (which does not work):
            <h:dataTable value="#{bean.lines}" var="line">
              <h:column>
                <h:outputText value="#{line.id}"/>
              </h:column>
              <h:column>
                <!-- (1) This is the master and (2) should refresh on update here --/>
                <h:selectBooleanCheckbox onchange="submit()" value="#{line.lineSelected}"/>
              </h:column>
              <h:column>
                <!-- (2) This is the slave and I want this to update in response to a change of (1) above --/>
                <h:selectBooleanCheckbox value="#{line.slaveSelected}"/>
              </h:column>
            </h:dataTable>In the setter method for lineSelected, I'm setting slaveSelected to the new value but the View is not refreshing based on this. How do I get the View to update (each dependent line) based on the new values for slaveSelected?
    Thanks again
    Lance

  • Problem with Quadro4000 in a Mac Pro (Mid 2009)

    Does anyone has a problem with the Nvidia Quadro 4000 on his Mac Pro?

    I have a major problem, it can't boot to start up the computer, I must to hold the shift button to open and when it opens it sticks and the colors of the wallpaper is not good. Also I have a raid card. The apple service told me that the problem is the graphic card and must be replaced but I am not sure about it, unfortunately I don't have the first card to be sure.
    Do you know what the follow message means?
    Interval Since Last Panic Report:  3378 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    109D6AB4-796F-DAB1-788B-3CEBA562D0BE
    Thu Sep 19 19:20:19 2013
    panic(cpu 0 caller 0xffffff8019ab8945): Kernel trap at 0xffffff7f9b214d66, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x000000000000008c, CR3: 0x000000000e72a000, CR4: 0x0000000000000660
    RAX: 0x0000000000000000, RBX: 0x0000000000000006, RCX: 0x0000000000000005, RDX: 0x0000000000003c00
    RSP: 0xffffff81eb423280, RBP: 0xffffff81eb423280, RSI: 0x0000000000000005, RDI: 0xffffff803a7d1400
    R8:  0x0000000000000000, R9:  0xffffff803d4facb8, R10: 0xffffffffffffffff, R11: 0x00000000ffffffff
    R12: 0x0000000000000004, R13: 0xffffff81ba18f000, R14: 0xffffff81ba1a2938, R15: 0xffffff803a7d1400
    RFL: 0x0000000000010206, RIP: 0xffffff7f9b214d66, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x000000000000008c, Error code: 0x0000000000000002, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81eb422f20 : 0xffffff8019a1d636
    0xffffff81eb422f90 : 0xffffff8019ab8945
    0xffffff81eb423160 : 0xffffff8019acebfd
    0xffffff81eb423180 : 0xffffff7f9b214d66
    0xffffff81eb423280 : 0xffffff7f9b1f6cec
    0xffffff81eb4232d0 : 0xffffff7f9b2252ff
    0xffffff81eb423700 : 0xffffff7f9b1d5c80
    0xffffff81eb423730 : 0xffffff7f9b2291dd
    0xffffff81eb4237b0 : 0xffffff7f9b210460
    0xffffff81eb423810 : 0xffffff7f9b210d41
    0xffffff81eb423860 : 0xffffff7f9b211294
    0xffffff81eb4238d0 : 0xffffff7f9b211a53
    0xffffff81eb423910 : 0xffffff7f9b1dcedf
    0xffffff81eb423a90 : 0xffffff7f9b20df8f
    0xffffff81eb423b50 : 0xffffff7f9b1db978
    0xffffff81eb423ba0 : 0xffffff8019e6f789
    0xffffff81eb423bc0 : 0xffffff8019e70d30
    0xffffff81eb423c20 : 0xffffff8019e6e74f
    0xffffff81eb423d70 : 0xffffff8019a98c21
    0xffffff81eb423e80 : 0xffffff8019a20b4d
    0xffffff81eb423eb0 : 0xffffff8019a10448
    0xffffff81eb423f00 : 0xffffff8019a1961b
    0xffffff81eb423f70 : 0xffffff8019aa6546
    0xffffff81eb423fb0 : 0xffffff8019acf473
         Kernel Extensions in backtrace:
            com.apple.GeForce(8.1.6)[0E3D8776-A5B7-3D82-9BFD-9188170B358D]@0xffffff7f9b1c90 00->0xffffff7f9b296fff
               dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f9a1 79000
               dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f9a165000
               dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f9a0df000
               dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f9a122000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12F37
    Kernel version:
    Darwin Kernel Version 12.5.0: Mon Jul 29 16:33:49 PDT 2013; root:xnu-2050.48.11~1/RELEASE_X86_64
    Kernel UUID: B1B58405-A2B2-3C44-B25D-495053D52AB5
    Kernel slide:     0x0000000019800000
    Kernel text base: 0xffffff8019a00000
    System model name: MacPro5,1 (Mac-F221BEC8)
    System uptime in nanoseconds: 213721035844
    last loaded kext at 35243841547: com.apple.driver.AppleBluetoothHIDKeyboard     170.2.4 (addr 0xffffff7f9b9f9000, size 24576)
    last unloaded kext at 96410920956: com.apple.driver.AppleUSBXHCI     630.4.5 (addr 0xffffff7f9aa9b000, size 118784)
    loaded kexts:
    com.nvidia.CUDA     1.1.0
    com.vmware.kext.vmnet     3.0.0
    com.vmware.kext.vmioplug     3.0.0
    com.vmware.kext.vmci     3.0.0
    com.vmware.kext.vmx86     3.0.0
    com.apple.driver.AppleBluetoothMultitouch     75.19
    com.apple.driver.AppleHWSensor     1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager     4.1.7f2
    com.apple.driver.AudioAUUC     1.60
    com.apple.driver.AppleTyMCEDriver     1.0.2d2
    com.apple.driver.AGPM     100.13.12
    com.apple.iokit.IOUserEthernet     1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X     7.0.0
    com.apple.filesystems.autofs     3.0
    com.apple.driver.AppleMikeyHIDDriver     124
    com.apple.driver.AppleHDA     2.4.7fc2
    com.apple.driver.AppleUpstreamUserClient     3.5.12
    com.apple.driver.AppleMCCSControl     1.1.11
    com.apple.GeForce     8.1.6
    com.apple.driver.AppleMikeyDriver     2.4.7fc2
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport     4.1.7f2
    com.apple.driver.AppleLPC     1.6.3
    com.apple.driver.AppleSMBusPCI     1.0.11d1
    com.apple.driver.ApplePolicyControl     3.4.5
    com.apple.driver.ACPI_SMC_PlatformPlugin     1.0.0
    com.apple.driver.XsanFilter     404
    com.apple.iokit.SCSITaskUserClient     3.5.6
    com.apple.driver.AppleUSBHub     623.4.4
    com.apple.driver.AppleFWOHCI     4.9.9
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless     1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib     1.0.0d1
    com.apple.BootCache     34
    com.apple.driver.Intel82574L     2.3.0b5
    com.apple.driver.AirPort.Brcm4331     615.20.17
    com.apple.driver.AppleRAIDCard     304
    com.apple.driver.AppleAHCIPort     2.6.6
    com.apple.driver.AppleUSBEHCI     621.4.6
    com.apple.driver.AppleUSBUHCI     621.4.0
    com.apple.driver.AppleRTC     1.5
    com.apple.driver.AppleHPET     1.8
    com.apple.driver.AppleACPIButtons     1.8
    com.apple.driver.AppleSMBIOS     1.9
    com.apple.driver.AppleACPIEC     1.8
    com.apple.driver.AppleAPIC     1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient     214.0.0
    com.apple.nke.applicationfirewall     4.0.39
    com.apple.security.quarantine     2.1
    com.apple.driver.AppleIntelCPUPowerManagement     214.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard     170.2.4
    com.apple.driver.AppleMultitouchDriver     237.4
    com.apple.iokit.IOSerialFamily     10.0.6
    com.apple.iokit.IOSurface     86.0.4
    com.apple.kext.triggers     1.0
    com.apple.driver.DspFuncLib     2.4.7fc2
    com.apple.iokit.IOAudioFamily     1.9.2fc7
    com.apple.kext.OSvKernDSPLib     1.12
    com.apple.nvidia.gf100hal     8.1.6
    com.apple.NVDAResman     8.1.6
    com.apple.iokit.IOBluetoothHostControllerUSBTransport     4.1.7f2
    com.apple.driver.AppleSMBusController     1.0.11d1
    com.apple.iokit.IOFireWireIP     2.2.5
    com.apple.driver.AppleHDAController     2.4.7fc2
    com.apple.iokit.IOHDAFamily     2.4.7fc2
    com.apple.driver.AppleGraphicsControl     3.4.5
    com.apple.iokit.IONDRVSupport     2.3.7
    com.apple.iokit.IOGraphicsFamily     2.3.7
    com.apple.driver.AppleSMC     3.1.5d4
    com.apple.driver.IOPlatformPluginLegacy     1.0.0
    com.apple.driver.IOPlatformPluginFamily     5.4.1d11
    com.apple.driver.AppleUSBHIDMouse     175.8
    com.apple.driver.AppleHIDMouse     175.8
    com.apple.driver.AppleUSBHIDKeyboard     170.2.4
    com.apple.driver.AppleHIDKeyboard     170.2.4
    com.apple.driver.IOBluetoothHIDDriver     4.1.7f2
    com.apple.iokit.IOBluetoothFamily     4.1.7f2
    com.apple.iokit.IOUSBHIDDriver     623.4.0
    com.apple.driver.AppleUSBMergeNub     621.4.6
    com.apple.driver.AppleUSBComposite     621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice     3.5.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.5.5
    com.apple.iokit.IOFireWireFamily     4.5.5
    com.apple.iokit.IOUSBUserClient     630.4.4
    com.apple.iokit.IO80211Family     530.5
    com.apple.iokit.IONetworkingFamily     3.0
    com.apple.iokit.IOSCSIParallelFamily     2.5.1
    com.apple.iokit.IOSCSIBlockCommandsDevice     3.5.6
    com.apple.iokit.IOSCSIArchitectureModelFamily     3.5.6
    com.apple.iokit.IOAHCIFamily     2.5.1
    com.apple.iokit.IOUSBFamily     630.4.5
    com.apple.driver.AppleEFINVRAM     2.0
    com.apple.driver.AppleEFIRuntime     2.0
    com.apple.iokit.IOHIDFamily     1.8.1
    com.apple.iokit.IOSMBusFamily     1.1
    com.apple.security.sandbox     220.3
    com.apple.kext.AppleMatch     1.0.0d1
    com.apple.security.TMSafetyNet     7
    com.apple.driver.DiskImages     345
    com.apple.iokit.IOStorageFamily     1.8
    com.apple.driver.AppleKeyStore     28.21
    com.apple.driver.AppleACPIPlatform     1.8
    com.apple.iokit.IOPCIFamily     2.8
    com.apple.iokit.IOACPIFamily     1.4
    com.apple.kec.corecrypto     1.0
    Model: MacPro5,1, BootROM MP51.007F.B03, 8 processors, Quad-Core Intel Xeon, 2.93 GHz, 16 GB, SMC 1.39f5
    Graphics: NVIDIA Quadro 4000, NVIDIA Quadro 4000, PCIe, 2048 MB
    Memory Module: DIMM 1, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
    Memory Module: DIMM 2, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
    Memory Module: DIMM 3, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
    Memory Module: DIMM 4, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
    Memory Module: DIMM 5, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
    Memory Module: DIMM 6, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
    Memory Module: DIMM 7, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
    Memory Module: DIMM 8, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 21 devices, 5 incoming serial ports
    Network Service: LINKSYS WAG320N, AirPort, en2
    Network Service: Ethernet 2, Ethernet, en1
    PCI Card: NVIDIA Quadro 4000, sppci_displaycontroller, Slot-1
    PCI Card: NVIDIA Quadro 4000, NVDA,Parent, Slot-1
    PCI Card: pci1033,194, Slot-3
    PCI Card: Apple RAID Card, sppci_raid, Slot-4
    Serial ATA Device: Optiarc DVD RW AD-7240S
    Serial ATA Device: Optiarc DVD RW AD-7240S
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfd500000 / 2
    USB Device: Apple Optical USB Mouse, apple_vendor_id, 0x0304, 0xfd530000 / 4
    USB Device: Apple Keyboard, apple_vendor_id, 0x0221, 0xfd520000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x5a100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0x5a110000 / 5
    USB Device: Smart-UPS 2200 FW:654.19.I USB FW:7.4, 0x051d  (American Power Conversion), 0x0002, 0x1d100000 / 2
    USB Device: PTK-840, 0x056a  (WACOM Co., Ltd.), 0x00ba, 0x3d100000 / 2
    FireWire Device: built-in_hub, 800mbit_speed

  • MacBook Pro Problem withe restart

    i buy this mac from my Friend Still withe Good condition 
    15-inch, Early 2011
    Processor  2 GHz Intel Core i7
    Memory  4 GB 1333 MHz DDR3
    Graphics  AMD Radeon HD 6490M 256 MB
    Software  OS X 10.9.5 (13F34) Before i was Use Yosemite 10.10.2 Same problem And More
    i have many problems latle I trie so hard to fix but can't My problem withe ( restart ) the Pc Sadly restart i do down below
    1- Restart the Nvram ( command + option + p + r ) many time Nothing change
    2- hold down power button mac 15 Second ) Nothing Change
    3-Open Disk utility when the mac open and  repair  +  repair permissions ) The result No errors
    4-Open Disk utility under the Booting withe command + r) I Do The. repair  +  repair permissions ) The result No errors
    5- Open Diskdisk utility under the Booting withe command + Option + r) I Do The. repair  +  repair permissions ) The result No errors
    6- I Delete the hard and make it ( GUID )  and re install 1 time from Cd 1 time From flash + 3 Time from Internet !!! Same Still Restart !
    7- I Delete also the hard and And Clean It All withe 0GB And do the Same the procedure ) Same result  !
    8- I Take the Laptop to Apple Store In Jakarta ( Ratu Plaza mall ) the said you want to restart to ears All and download Again and the don't i do it 100 time before  so no hardware problem  = nothing Change > same result
    9- some one told me the new Yosemite ( 10.10.2 ) Its still Not staible So downgraid the PC To Yosemite ( 10.10 ) < also nothing change Still many thing if i want top open will restart Example the( Camfrog ) ( Maps ) some Time i just Pouch it will restart !!
    10. i Try also to this Time downgraid to ( OS X 10.9.5 (13F34) ).  same same same
    and i do all what can i do
    Note:
    when I tray to open the System under Safe mode i can Open any thing withe out restart !!
    and i try to instill Windows 8.1 there is nothing happend so Smooth and fast
    please I ask For Help Because my circumstances are not good I do not have enough money to buy
    the error this
    Anonymous UUID:       BDAE5450-98B2-0CA3-B459-B40A82A5E592
    Wed Feb 11 01:27:31 2015
    panic(cpu 0 caller 0xffffff7fa972aeaa): "AGC GPU REGISTER RESTORE FAILED : rdar://7254528, VendorID invalid"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.6.22/src/Appl eMuxControl/kext/AGCPowerManagement.cpp:1114
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80c2123de0 : 0xffffff8027a22f79
    0xffffff80c2123e60 : 0xffffff7fa972aeaa
    0xffffff80c2123ea0 : 0xffffff7fa972d650
    0xffffff80c2123ec0 : 0xffffff8027eb359b
    0xffffff80c2123f20 : 0xffffff8027a4a20a
    0xffffff80c2123fb0 : 0xffffff8027ad7607
          Kernel Extensions in backtrace:
             com.apple.driver.AppleMuxControl(3.6.22)[32862231-50BC-3AF6-87A2-703321AE4F90]@ 0xffffff7fa971f000->0xffffff7fa9732fff
                dependency: com.apple.driver.AppleGraphicsControl(3.6.22)[AA46D551-BE0F-33DA-93A3-8F46197BB 36F]@0xffffff7fa9706000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7fa832c000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[2852ACFE-FD28-3C37-9B39-885201BB8D25]@0xffffff 7fa80bf000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7fa88f1000
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[80899285-3952-30DA-A0F9-357C51E104 CF]@0xffffff7fa971a000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13F34
    Kernel version:
    Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    Kernel UUID: 9477416E-7BCA-3679-AF97-E1EAAD3DD5A0
    Kernel slide:     0x0000000027800000
    Kernel text base: 0xffffff8027a00000
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 87384372209
    last loaded kext at 42236080152: com.apple.filesystems.autofs 3.0 (addr 0xffffff7fa8f12000, size 45056)
    loaded kexts:
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.2.7f3
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AppleTyMCEDriver 1.0.2d2
    com.apple.driver.AGPM 100.14.34
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.ApplePolicyControl 3.6.22
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.driver.AppleHDAHardwareConfigDriver 2.6.3f4
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.kext.AMDFramebuffer 1.2.4
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.AMDRadeonX3000 1.2.4
    com.apple.iokit.IOBluetoothUSBDFU 4.2.7f3
    com.apple.driver.AppleIntelHD3000Graphics 8.2.4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.7f3
    com.apple.driver.AppleBacklight 170.4.11
    com.apple.kext.AMD6000Controller 1.2.4
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleMuxControl 3.6.22
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleIntelSNBGraphicsFB 8.2.4
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyEventDriver 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.driver.AppleFileSystemDriver 3.0.1
    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.7
    com.apple.driver.XsanFilter 404
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleUSBUHCI 656.4.1
    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.iokit.IOAcceleratorFamily 98.23
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.7f3
    com.apple.kext.AMDSupport 1.2.4
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IOBluetoothFamily 4.2.7f3
    com.apple.driver.AppleSMC 3.1.8
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.AppleThunderboltEDMSink 2.1.3
    com.apple.driver.AppleThunderboltDPOutAdapter 3.1.7
    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.10
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.7
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.7
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 686.4.1
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.driver.AppleEFIRuntime 2.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
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2 GHz, 4 GB, SMC 1.69f4
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Graphics: AMD Radeon HD 6490M, AMD Radeon HD 6490M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.7f3 14616, 3 services, 15 devices, 0 incoming serial ports
    Serial ATA Device: TOSHIBA MK5065GSXF, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Hub
    USB Device: IR Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 22.1

    Try running this program and then copy and paste the output in a reply. The program was created by Etresoft, a frequent contributor.  Please use copy and paste as screen shots can be hard to read.
    Etrecheck – System Information

  • Problem with JCS Caching

    Hi,
    I am using JCS for Disk Based Caching. I don't want to use memory cache. So I set the configuration like this:
    ##### Default Region Configuration
    jcs.default=DC
    jcs.default.cacheattributes=org.apache.jcs.engine.CompositeCacheAttributes
    jcs.default.cacheattributes.MaxObjects=0
    jcs.default.cacheattributes.MemoryCacheName=org.apache.jcs.engine.memory.lru.LRUMemoryCache
    ##### CACHE REGIONS
    jcs.region.myRegion1=DC
    jcs.region.myRegion1.cacheattributes=org.apache.jcs.engine.CompositeCacheAttributes
    jcs.region.myRegion1.cacheattributes.MaxObjects=0
    jcs.region.myRegion1.cacheattributes.MemoryCacheName=org.apache.jcs.engine.memory.lru.LRUMemoryCache
    jcs.region.myRegion1.cacheattributes.MaxSpoolPerRun=100
    ##### AUXILIARY CACHES
    # Indexed Disk Cache
    jcs.auxiliary.DC=org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
    jcs.auxiliary.DC.attributes=org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
    jcs.auxiliary.DC.attributes.DiskPath=target/test-sandbox/indexed-disk-cache
    jcs.auxiliary.DC.attributes.MaxPurgatorySize=1000
    jcs.auxiliary.DC.attributes.MaxKeySize=1000
    jcs.auxiliary.DC.attributes.MaxRecycleBinSize=5000
    jcs.auxiliary.DC.attributes.OptimizeAtRemoveCount=300000
    jcs.auxiliary.DC.attributes.OptimizeOnShutdown=true
    jcs.auxiliary.DC.attributes.EventQueueType=POOLED
    jcs.auxiliary.DC.attributes.EventQueuePoolName=disk_cache_event_queue
    ################## OPTIONAL THREAD POOL CONFIGURATION ########
    # Disk Cache Event Queue Pool
    thread_pool.disk_cache_event_queue.useBoundary=false
    thread_pool.remote_cache_client.maximumPoolSize=15
    thread_pool.disk_cache_event_queue.minimumPoolSize=1
    thread_pool.disk_cache_event_queue.keepAliveTime=3500
    thread_pool.disk_cache_event_queue.startUpSize=1I set max object 0 so that all items are cache in disk.
    jcs.default.cacheattributes.MaxObjects=0
    As I set the maxkeysize=1000, after writing 1000 items, I am calling jcs.freeMemoryElements(1000), so that all the items are successfully writen to disk. But this method throwing exception: Update: Last item null.
    jcs.auxiliary.DC.attributes.MaxKeySize=1000
    I wrote 2000 items in cache, but I am able to get only 1000 items back.
    What I am doing wrong ? I want to use this disk caching for items [ nearabout 50 lac items]

    Hi,
    I am similar problem with JCS indexed cache machanism for writing data to disk, but I am not successful with below cache.ccf configuration.
    Also, I am not able to find the complete details from the above post: http://www.nabble.com/Unable-to-get-the-stored-Cache-td23331442.html
    Here is my configuration, I do not want to save the objects in memory, I want everything to be on disk. Please help me.
    Appriciate your quick response.
    # sets the default aux value for any non configured caches
    jcs.default=DC
    jcs.default.cacheattributes=org.apache.jcs.engine.CompositeCacheAttributes
    jcs.default.cacheattributes.MaxObjects=1000
    jcs.default.cacheattributes.MemoryCacheName=org.apache.jcs.engine.memory.lru.LRUMemoryCache
    jcs.default.elementattributes.IsEternal=false
    jcs.default.elementattributes.MaxLifeSeconds=3600
    jcs.default.elementattributes.IdleTime=1800
    jcs.default.elementattributes.IsSpool=true
    jcs.default.elementattributes.IsRemote=true
    jcs.default.elementattributes.IsLateral=true
    # CACHE REGIONS AVAILABLE
    # Regions preconfigured for caching
    jcs.region.monitoringCache=DC
    jcs.region.monitoringCache.cacheattributes=org.apache.jcs.engine.CompositeCacheAttributes
    jcs.region.monitoringCache.cacheattributes.MaxObjects=0
    jcs.region.monitoringCache.cacheattributes.MemoryCacheName=org.apache.jcs.engine.memory.lru.LRUMemoryCache
    # AUXILIARY CACHES AVAILABLE
    # Primary Disk Cache -- faster than the rest because of memory key storage
    jcs.auxiliary.DC=org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
    jcs.auxiliary.DC.attributes=org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
    jcs.auxiliary.DC.attributes.DiskPath=C:/TestCache
    jcs.auxiliary.DC.attributes.MaxPurgatorySize=10000
    jcs.auxiliary.DC.attributes.MaxKeySize=10000
    jcs.auxiliary.DC.attributes.OptimizeAtRemoveCount=300000
    jcs.auxiliary.DC.attributes.MaxRecycleBinSize=7500

  • ECR/ECO problem with automated transactions

    Hi Friends,
    I have problem with automated close of ECR.
    Description:
    I have change number with one object - Inspection Plan.
    In CC32 when "Incorrect Change" is set and I click "Erro Corrected" - nothink happen
    (it should show popup with information that transaction cc06 was automated started)
    After that when i choose "Release Change" - also nothing happen.
    (it should shop popup and set status - "Close ECO")
    Everything works ok on sandbox system but on Dev/Test/Prod it doesn't work.
    Anybody now where could be a problem?
    Thank you for any advice.

    Hi
    Pls check this Link
    SAP-ECM and PPPI Integration-Solution
    Thanks in advance

  • The last time you opened OpenOffice, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? i have a problem with open office, if I press reopen, nothing happened  ans i see always this information on my mac? what ca

    The last time you opened OpenOffice, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? i have a problem with open office, if I press reopen, nothing happened  ans i see always this information on my mac? what can I do?

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in 10.8 there is only one. If you're running a version older than 10.8, this comment isn't applicable.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Encountering Problems with Basic Sound Tutorial

    Hello everyone,
    I am encountering problems with a basic sound tutorial. I am absolutely confused as to what the problem may be because the code is so simple, and is essentially copied from the textbook. I am convinced that I have done something very silly but cannot see it.
    I have attempted to run this in an appletviewer, Firefox and Internet Explorer. I have attempted to launch it from both a .class file and a .jar file. I have uninstalled and offline installed the JDK and JRE and successfully tested the new installations.
    The audio file I am attempting to load and play is an .AU (Sun/Next 8-bit u-law) audio file I created in Audacity. It is located in the same folder as the AudioApplet.class file.
    My sound system is defintely on, since I have listened to music all day. I have attempted running the program with Media Player closed.
    package edu.myuniversityid.sandbox;
    import java.applet.Applet;
    import java.applet.AudioClip;
    * @author Ibuki
    public class AudioApplet extends Applet
         * Initialization method that will be called after the applet is loaded
         * into the browser.
        public void init()
            super.init();
            AudioClip ac = this.getAudioClip(this.getDocumentBase(), "sample.au");
            ac.play();
    }The code compiles fine, however absolutely I get a small white window when it is run. No sound.
    Thankyou for your time.
    Regards,
    Ibuki.
    PS. I am sure this worked before the university forced me to update my version of Windows to SP2. Hence, the reason for reinstalling Java. Twice.
    Edited by: Ibuki on Jan 31, 2008 11:09 AM becasuse: Added a PS.

    I have attempted this alternative, without success:
        public void init()
            try
                super.init();
                URL url = new URL(this.getDocumentBase(), "sample.au");
                AudioClip ac = this.getAudioClip(url);
                ac.play();
            catch (MalformedURLException ex)
                Logger.getLogger(AudioApplet.class.getName()).log(Level.SEVERE, null, ex);
        }The sample.au is definetly in the correct directory. Both File Explorer and NetBeans confirm this.
    Edited by: Ibuki on Jan 31, 2008 11:59 AM
    I have discovered a temporary solution that works in the applet viewer. The applet will load and plays the correct music perfectly. However, using this code it is not working when I try to deploy it using a web browser (MSIE and FF)!
    public void init()
            super.init();
            AudioClip ac = this.getAudioClip(this.getClass().getResource("sample.au"));
            ac.play();
    Edited by: Ibuki on Jan 31, 2008 12:12 PM
    Eureka!
    Having worked in the applet viewer I managed to get it working in the web browser by simply packaging my SoundApplet.class and sample.au into a .jar archive.
    <html>
         <body>
              <applet code="edu.myuniversityid.sandbox.AudioApplet.class" archive="dist/AudioApplet.jar">Unfortunately, this applet content cannot be displayed on this web page because your current browser does not support Java SE 6! Please <a href="http://www.java.com/">update your version of Java</a>.</applet>
         </body>
    </html>
    public void init()
            super.init();
            AudioClip ac = this.getAudioClip(this.getClass().getResource("sample.au"));
            ac.play();
        }Thankyou everyone.
    This thread can be closed if applicable. I'm not aware of the current moderation policy on this forum.
    Edited by: Ibuki on Jan 31, 2008 12:12 PM

  • INVOIC IDOC - E1EDK28 Problem with selection of multiple bank accounts

    Hi SAP-Experts!
    I have a problem with house banks in outgoing invoice IDOC INVOIC.
    We have maintained several house banks in one company code with up to 3 different account ID's.
    I was wondering why there is (in my point of view) the wrong bank account populated in one ot the IDOC segments E1EDK28.
    What I found out while debugging the code which fills the internal table it012k is, that he selects only the first row from table t012k
    (select * from t012k up to 1 rows).
    We have already implemented the OSS notes concerning currency dependency and SEPA.
    By switching the account ID sequence in sandbox system, e.g. from EUR to SEK, the program picks now the "correct" bank details.
    From my Point of view this cannot be a porper logic always to pick the first entry.
    Has anyone experienced that issue, too? Is there any solution for this problem (in standard).
    If not, I will raise an OSS call at SAP for this.
    Thanks for any thoughts!
    Stefan

    When you enter bank details in master, update field "Partner bank type" LFBK-BVTYP with free form value, may be currency is good choice.
    During invoice entry, this field is available for update, update which bank to be used for payment of this invoice. You may build logic to populate this field, like substitution to populate currency in this field during invoice posting.
    During payment, system checks value in field Partner bank type in invoice and selects corresponding bank.
    Hope this helps.

  • Massive problem with iMac i5

    Today I bought a new i5 iMac with 8Gig of ram. I had massive problems with the instillation of Lion. I spoke with Apple for nearly 1.5 hours. I finally got it working and now it has crashed 9 times in 30 minutes. Why?? Please Help. I am going to take it back to the shop tomorrow.

    Thanks fro your quick reply.
    I get the slow darkened screen that moves down the until it says that I have to hold down the poer button for a forced restart.
    I tried opening all the really big memory hogs ll at once, eg Final cut pro, apature, imove HD etc, and that was no problem. It seem sto be completly random.
    This is the report that I get:
    Interval Since Last Panic Report:  387 sec
    Panics Since Last Report:          6
    Anonymous UUID:                    5400E7FB-D8A1-4CDD-985D-3F1E8023753D
    Fri Aug 26 23:00:24 2011
    panic(cpu 2 caller 0xffffff80002c268d): Kernel trap at 0xffffff8000293188, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0xfffffb8009a19ac8, CR3: 0x000000000eaeb00f, CR4: 0x00000000000606e0
    RAX: 0xffffff8009a36e78, RBX: 0xffffff8009a466d0, RCX: 0xffffff80008bd800, RDX: 0x00000000000000e0
    RSP: 0xffffff80f2b23d80, RBP: 0xffffff80f2b23da0, RSI: 0xffffff8009a1bec0, RDI: 0xffffff80008bd8e0
    R8:  0xfffffb8009a19ac0, R9:  0xffffff80f2b23ef8, R10: 0x00000001136ef000, R11: 0x0000000113650f80
    R12: 0xffffff80008bcc00, R13: 0x0000000000000000, R14: 0x0000000000000072, R15: 0x000000000000000e
    RFL: 0x0000000000010202, RIP: 0xffffff8000293188, CS:  0x0000000000000008, SS:  0x0000000000000000
    CR2: 0xfffffb8009a19ac8, Error code: 0x0000000000000002, Faulting CPU: 0x2
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80f2b23a40 : 0xffffff8000220702
    0xffffff80f2b23ac0 : 0xffffff80002c268d
    0xffffff80f2b23c60 : 0xffffff80002d7a3d
    0xffffff80f2b23c80 : 0xffffff8000293188
    0xffffff80f2b23da0 : 0xffffff80002958b2
    0xffffff80f2b23dc0 : 0xffffff800026c5ba
    0xffffff80f2b23f40 : 0xffffff80002c1f2b
    0xffffff80f2b23fb0 : 0xffffff80002d7961
    BSD process name corresponding to current thread: WebProcess
    Mac OS version:
    11B26
    Kernel version:
    Darwin Kernel Version 11.1.0: Tue Jul 26 16:07:11 PDT 2011; root:xnu-1699.22.81~1/RELEASE_X86_64
    Kernel UUID: D52AAB80-B2BC-3C6E-BBEA-78BD28064998
    System model name: iMac12,2 (Mac-942B59F58194171B)
    System uptime in nanoseconds: 492863372471
    last loaded kext at 51964964367: com.apple.driver.AppleBluetoothHIDKeyboard          152.3 (addr 0xffffff7f81cbc000, size 12288)
    last unloaded kext at 223039016620: com.apple.driver.AppleUSBUHCI          4.4.0 (addr 0xffffff7f80ab5000, size 65536)
    loaded kexts:
    com.Cycling74.driver.Soundflower          1.5.1
    com.apple.driver.AppleBluetoothMultitouch          66.3
    com.apple.filesystems.udf          2.2
    com.apple.filesystems.msdosfs          1.7
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.24
    com.apple.driver.AppleHDA          2.1.1f12
    com.apple.driver.AppleMikeyDriver          2.1.1f12
    com.apple.driver.AGPM          100.12.40
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.kext.ATIFramebuffer          7.0.4
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0b2
    com.apple.ATIRadeonX3000          7.0.4
    com.apple.driver.AirPort.Atheros40          500.55.5
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.driver.AppleIntelHDGraphics          7.0.4
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleIntelSNBGraphicsFB          7.0.4
    com.apple.driver.AudioIPCDriver          1.2.0
    com.apple.driver.AppleIRController          309
    com.apple.iokit.SCSITaskUserClient          3.0.0
    com.apple.driver.AppleUSBCardReader          3.0.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          32
    com.apple.iokit.IOAHCIBlockStorage          2.0.0
    com.apple.driver.AppleUSBHub          4.4.0
    com.apple.driver.AppleFWOHCI          4.8.6
    com.apple.iokit.AppleBCM5701Ethernet          3.0.6b9
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleAHCIPort          2.1.8
    com.apple.driver.AppleUSBEHCI          4.4.0
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          166.0.0
    com.apple.nke.applicationfirewall          3.0.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          166.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          152.3
    com.apple.driver.AppleHIDKeyboard          152.3
    com.apple.driver.AppleMultitouchDriver          220.62
    com.apple.driver.IOBluetoothHIDDriver          2.5f17
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.1.1f12
    com.apple.driver.AppleAVBAudio          1.0.0d11
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOFireWireIP          2.2.3
    com.apple.iokit.IOSurface          80.0
    com.apple.driver.AppleHDAController          2.1.1f12
    com.apple.iokit.IOHDAFamily          2.1.1f12
    com.apple.driver.IOPlatformPluginFamily          4.7.0b2
    com.apple.iokit.IO80211Family          400.40
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.driver.AppleThunderboltEDMSink          1.1.1
    com.apple.driver.AppleThunderboltEDMSource          1.1.1
    com.apple.kext.ATI6000Controller          7.0.4
    com.apple.kext.ATISupport          7.0.4
    com.apple.iokit.IOBluetoothSerialManager          2.5f17
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IONDRVSupport          2.3
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.driver.AppleSMC          3.1.1d2
    com.apple.iokit.IOGraphicsFamily          2.3
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.5f17
    com.apple.driver.AppleUSBBluetoothHCIController          2.5f17
    com.apple.iokit.IOBluetoothFamily          2.5f17
    com.apple.driver.AppleThunderboltDPOutAdapter          1.3.2
    com.apple.driver.AppleThunderboltDPInAdapter          1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.1.6
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.0
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.iokit.IOUSBHIDDriver          4.4.0
    com.apple.iokit.IOAHCISerialATAPI          2.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.0
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.0
    com.apple.driver.AppleUSBMergeNub          4.4.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.driver.XsanFilter          403
    com.apple.driver.AppleThunderboltNHI          1.2.6
    com.apple.iokit.IOThunderboltFamily          1.4.9
    com.apple.iokit.IOUSBUserClient          4.4.0
    com.apple.iokit.IOFireWireFamily          4.4.3
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOUSBFamily          4.4.0
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          326
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.4
    Model: iMac12,2, BootROM IM121.0047.B0A, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 1.72f1
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3231554538424655302D444A2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3231554538424655302D444A2D4620
    Memory Module: BANK 0/DIMM1, 2 GB, DDR3, 1333 MHz, 0x802C, 0x000000000000000000000000000000000000
    Memory Module: BANK 1/DIMM1, 2 GB, DDR3, 1333 MHz, 0x802C, 0x384A53463235363634485A2D314734443120
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.55.4-P2P
    Bluetooth: Version 2.5.0f17, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Maxtor 3200, 0x0d49  (Maxtor), 0x3200, 0xfa120000 / 6
    USB Device: External HDD, 0x1058  (Western Digital Technologies, Inc.), 0x1003, 0xfa130000 / 5
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 7
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: hub_device, 0x050d  (Belkin Corporation), 0x0234, 0xfd140000 / 5
    USB Device: DataTraveler 2.0, 0x0951  (Kingston Technology Company), 0x1607, 0xfd142000 / 7
    USB Device: Basics Desktop, 0x0d49  (Maxtor), 0x7410, 0xfd143000 / 6
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
    I got this photo from the net, but this is what I get. (Now 12 times)
    It was a 4 Gig ram imac, but the store made it up to 8 gig with 4x2 gig before I collected it.
    Memory Slots:
      ECC:          Disabled
    BANK 0/DIMM0:
      Size:          2 GB
      Type:          DDR3
      Speed:          1333 MHz
      Status:          OK
      Manufacturer:          0x02FE
      Part Number:          0x45424A3231554538424655302D444A2D4620
      Serial Number:          0x245317A8
    BANK 1/DIMM0:
      Size:          2 GB
      Type:          DDR3
      Speed:          1333 MHz
      Status:          OK
      Manufacturer:          0x02FE
      Part Number:          0x45424A3231554538424655302D444A2D4620
      Serial Number:          0x245317A9
    BANK 0/DIMM1:
      Size:          2 GB
      Type:          DDR3
      Speed:          1333 MHz
      Status:          OK
      Manufacturer:          0x802C
      Part Number:          0x000000000000000000000000000000000000
      Serial Number:          0xFFFFFFFF
    BANK 1/DIMM1:
      Size:          2 GB
      Type:          DDR3
      Speed:          1333 MHz
      Status:          OK
      Manufacturer:          0x802C
      Part Number:          0x384A53463235363634485A2D314734443120
      Serial Number:          0xEA364A5A

  • HTML Textfield Problem with Image Positions/Image Tag img

    I am using :
    Flash Builder Burito - Flex Hero SDK -  Air 2.5 - Flash Player 10.1
    Hi,
    i have a problem with the normal Textfield.I'm loading html text into it and apply an css stylesheet on it. Everything works fine, but if there is an <img> in the html code, the image is displayed at the wrong position (top left).
    It looks like the Problem is only in Air Applications. I tried the exact same code in an normal actionscript project and tested it in the broweser. Here the images are at the right position.
    Does anybody else has this problem in Air or knows a solution to this?
    Thanks. Laurid
    btw: I tried it on Windows 7 and Android with the same problem.

    Okay, I think I found the solution myself:
    http://www.kirupa.com/forum/showthread.php?t=322233
    For AIR content in the application security sandbox, AIR ignores img  tags in HTML content in ActionScript TextField objects. This is to  prevent possible phishing attacks,
    This does not make any sense to me. Can somebody please explain it to me? I can load images with the loader-class and combine it with my html text. The only thing which does not work is that the text is wrapping aroung the images. So why does this prevent phishing attacks?
    For me this doesn't make sense at all. It's just annoying that you develop an application in Flash and that it's not working the same way in Adobe Air. Now I have to find a complicated work-around myself. Or does anybody know how I can easily wrap text around images?
    Thanks. Laurid

  • Problems with 10.8.5 update

    After 10.8.5 update my late 2012 Imac takes twice as long to boot. After it finally does boot I have no mouse or keyboard input for about 4 minutes. I can't boot into safe mode since I have no keyboard input to enter my password. I can get my mouse and keyboard input back if I use the power button to put the computer to sleep and then wake it. I have removed all third party utilities ( I think ), same problem. I had the same problem  with 10.8.4. HELP!!!

    9/20/13 1:58:51.243 PM loginwindow[41]: DEAD_PROCESS: 41 console
    9/20/13 1:59:09.000 PM bootlog[0]: BOOT_TIME 1379699949 0
    9/20/13 1:59:33.000 PM kernel[0]: PMAP: PCID enabled
    9/20/13 1:59:33.000 PM kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    9/20/13 1:59:33.000 PM kernel[0]: Darwin Kernel Version 12.5.0: Mon Jul 29 16:33:49 PDT 2013; root:xnu-2050.48.11~1/RELEASE_X86_64
    9/20/13 1:59:33.000 PM kernel[0]: vm_page_bootstrap: 1950177 free pages and 130591 wired pages
    9/20/13 1:59:33.000 PM kernel[0]: kext submap [0xffffff7f80742000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000742000]
    9/20/13 1:59:33.000 PM kernel[0]: zone leak detection enabled
    9/20/13 1:59:33.000 PM kernel[0]: standard timeslicing quantum is 10000 us
    9/20/13 1:59:33.000 PM kernel[0]: standard background quantum is 2500 us
    9/20/13 1:59:33.000 PM kernel[0]: mig_table_max_displ = 74
    9/20/13 1:59:33.000 PM kernel[0]: TSC Deadline Timer supported and enabled
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto kext started!
    9/20/13 1:59:33.000 PM kernel[0]: Running kernel space in FIPS MODE
    9/20/13 1:59:33.000 PM kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    9/20/13 1:59:33.000 PM kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    9/20/13 1:59:33.000 PM kernel[0]: corecrypto.kext FIPS POST passed!
    9/20/13 1:59:33.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    9/20/13 1:59:33.000 PM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    9/20/13 1:59:33.000 PM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    9/20/13 1:59:33.000 PM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    9/20/13 1:59:33.000 PM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    9/20/13 1:59:33.000 PM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    9/20/13 1:59:33.000 PM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    9/20/13 1:59:33.000 PM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    9/20/13 1:59:33.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet
    9/20/13 1:59:33.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    9/20/13 1:59:33.000 PM kernel[0]: calling mpo_policy_init for Sandbox
    9/20/13 1:59:33.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    9/20/13 1:59:33.000 PM kernel[0]: calling mpo_policy_init for Quarantine
    9/20/13 1:59:33.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    9/20/13 1:59:33.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    9/20/13 1:59:33.000 PM kernel[0]: The Regents of the University of California. All rights reserved.
    9/20/13 1:59:33.000 PM kernel[0]: MAC Framework successfully initialized
    9/20/13 1:59:33.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    9/20/13 1:59:33.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    9/20/13 1:59:33.000 PM kernel[0]: ACPI: sleep states S3 S4 S5
    9/20/13 1:59:33.000 PM kernel[0]: pci build Aug 29 2013 20:19:31, flags 0x23008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    9/20/13 1:59:33.000 PM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 3455
    9/20/13 1:59:33.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 16:43:02 Jul 29 2013) initialization complete
    9/20/13 1:59:33.000 PM kernel[0]: [ PCI configuration begin ]
    9/20/13 1:59:33.000 PM kernel[0]: console relocated to 0xf80020000
    9/20/13 1:59:33.000 PM kernel[0]: [ PCI configuration end, bridges 15, devices 17 ]
    9/20/13 1:59:33.000 PM kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    9/20/13 1:59:33.000 PM kernel[0]: FireWire runtime power conservation disabled. (3)
    9/20/13 1:59:33.000 PM kernel[0]: FireWire (OHCI) Lucent ID 5901 PCI now active, GUID 000a2702004676ec; max speed s800.
    9/20/13 1:59:33.000 PM kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    9/20/13 1:59:33.000 PM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    9/20/13 1:59:33.000 PM kernel[0]: rooting via boot-uuid from /chosen: 81D2A50D-EFB8-362B-A5D7-365ADCFF4BBA
    9/20/13 1:59:33.000 PM kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    9/20/13 1:59:33.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    9/20/13 1:59:33.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    9/20/13 1:59:33.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    9/20/13 1:59:33.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    9/20/13 1:59:33.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    9/20/13 1:59:33.000 PM kernel[0]: BTCOEXIST off
    9/20/13 1:59:33.000 PM kernel[0]: BRCM tunables:
    9/20/13 1:59:33.000 PM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    9/20/13 1:59:33.000 PM kernel[0]: USBMSC Identifier (non-unique): KUSC5T70217          0x5ac 0x1500 0x202, 2
    9/20/13 1:59:33.000 PM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPCI2PCIBridg e/UPSB@0/IOPCI2PCIBridge/DSB1@3/IOPCI2PCIBridge/UPS0@0/IOPCI2PCIBridge/pci-bridg e@0/IOPCI2PCIBridge/pci11c1,5901@0/AppleFWOHCI/IOFireWireController/IOFireWireDe vice@d04b930f05b1aa/IOFireWireUnit/IOFireWireSBP2Target/IOFireWireSBP2LUN/com_ap ple_driver_Oxford_Semi_FW934_DSB/IOSCSIPeripheralDeviceNub/IOSCSIPeripheralDevic eType00/IOBlockStorageServices/IOBlockStorageDriver/LaCie d2 quadra Media/IOGUIDPartitionScheme/Super Duper@2
    9/20/13 1:59:33.000 PM kernel[0]: BSD root: disk1s2, major 1, minor 7
    9/20/13 1:59:33.000 PM kernel[0]: Kernel is LP64
    9/20/13 1:59:13.041 PM com.apple.launchd[1]: *** launchd[1] has started up. ***
    9/20/13 1:59:33.000 PM kernel[0]: Waiting for DSMOS...
    9/20/13 1:59:13.041 PM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    9/20/13 1:59:33.000 PM kernel[0]: macx_swapon SUCCESS
    9/20/13 1:59:26.297 PM com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    9/20/13 1:59:32.146 PM hidd[45]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    9/20/13 1:59:33.557 PM hidd[45]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    9/20/13 1:59:34.000 PM kernel[0]: BCM5701Enet: Ethernet address a8:20:66:3b:5a:ce
    9/20/13 1:59:34.000 PM kernel[0]: AirPort_Brcm4331: Ethernet address 8c:2d:aa:36:58:9f
    9/20/13 1:59:34.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    9/20/13 1:59:34.000 PM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    9/20/13 1:59:34.142 PM mDNSResponder[38]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    9/20/13 1:59:34.146 PM appleeventsd[51]: main: Starting up
    9/20/13 1:59:34.187 PM coreservicesd[62]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    9/20/13 1:59:34.387 PM airportd[86]: _processDLILEvent: en1 attached (down)
    9/20/13 1:59:34.907 PM com.apple.kextd[12]: Can't load /System/Library/Extensions/G13Joystick.kext - no code for running kernel's architecture.
    9/20/13 1:59:34.908 PM com.apple.kextd[12]: Load com.driver.LogJoystick failed; removing personalities from kernel.
    9/20/13 1:59:35.000 PM kernel[0]: createVirtIf(): ifRole = 1
    9/20/13 1:59:35.000 PM kernel[0]: in func createVirtualInterface ifRole = 1
    9/20/13 1:59:35.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff80246b3000
    9/20/13 1:59:35.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    9/20/13 1:59:35.000 PM kernel[0]: Created virtif 0xffffff80246b3000 p2p0
    9/20/13 1:59:35.000 PM kernel[0]: Previous Shutdown Cause: 5
    9/20/13 1:59:35.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    9/20/13 1:59:35.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828B FirmwareVersion - 0x0066
    9/20/13 1:59:35.000 PM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff8024898800 ****
    9/20/13 1:59:35.000 PM kernel[0]: NVDAStartup: Official
    9/20/13 1:59:35.000 PM kernel[0]: NVDAGK100HAL loaded and registered
    9/20/13 1:59:35.000 PM kernel[0]: DSMOS has arrived
    9/20/13 1:59:35.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- controller = 0xffffff8024898800
    9/20/13 1:59:35.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed
    9/20/13 1:59:35.000 PM kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    9/20/13 1:59:35.000 PM kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice11a3
    9/20/13 1:59:35.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    9/20/13 1:59:35.000 PM kernel[0]: NTFS driver 3.10 [Flags: R/W].
    9/20/13 1:59:35.000 PM kernel[0]: NTFS volume name BOOTCAMP, version 3.1.
    9/20/13 1:59:36.607 PM com.apple.SecurityServer[15]: Session 100000 created
    9/20/13 1:59:40.486 PM mds[37]: (Normal) FMW: FMW 0 0
    9/20/13 1:59:40.520 PM WindowServer[93]: Server is starting up
    9/20/13 1:59:41.000 PM kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    9/20/13 1:59:41.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    9/20/13 1:59:41.238 PM configd[17]: network changed.
    9/20/13 1:59:41.238 PM configd[17]: setting hostname to "Macintosh.local"
    9/20/13 1:59:43.000 PM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,2301,0de1,0300,41e1,0000]
    9/20/13 1:59:43.949 PM blued[54]: Read the UHE Info
    9/20/13 1:59:43.949 PM blued[54]: Read version 2 info.  Number of devices:3
    9/20/13 1:59:43.949 PM blued[54]: Class of device:     0x2580
    9/20/13 1:59:43.949 PM blued[54]: Device name: 'Richard Miller’s Mouse' length:25
    9/20/13 1:59:43.949 PM blued[54]: Finished reading the HID data
    9/20/13 1:59:43.949 PM blued[54]: Found a device with PID:0x030d VID:0x05ac
    9/20/13 1:59:43.950 PM blued[54]: Class of device:     0x2540
    9/20/13 1:59:43.950 PM blued[54]: Device name: 'Apple Wireless Keyboard' length:24
    9/20/13 1:59:43.950 PM blued[54]: Finished reading the HID data
    9/20/13 1:59:43.950 PM blued[54]: Found a device with PID:0x0255 VID:0x05ac
    9/20/13 1:59:43.950 PM blued[54]: Class of device:     0x2594
    9/20/13 1:59:43.950 PM blued[54]: Device name: 'Richard Miller’s Trackpad' length:28
    9/20/13 1:59:43.950 PM blued[54]: Finished reading the HID data
    9/20/13 1:59:43.951 PM blued[54]: Found a device with PID:0x030e VID:0x05ac
    9/20/13 1:59:44.135 PM stackshot[27]: Timed out waiting for IOKit to finish matching.
    9/20/13 1:59:44.354 PM com.apple.SecurityServer[15]: Entering service
    9/20/13 1:59:44.375 PM systemkeychain[72]: done file: /var/run/systemkeychaincheck.done
    9/20/13 1:59:44.382 PM configd[17]: network changed: DNS*
    9/20/13 1:59:44.384 PM mDNSResponder[38]: D2D_IPC: Loaded
    9/20/13 1:59:44.384 PM mDNSResponder[38]: D2DInitialize succeeded
    9/20/13 1:59:44.423 PM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    9/20/13 1:59:44.434 PM awacsd[55]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    9/20/13 1:59:44.436 PM awacsd[55]: InnerStore CopyAllZones: no info in Dynamic Store
    9/20/13 1:59:44.436 PM netbiosd[94]: Unable to start NetBIOS name service:
    9/20/13 1:59:45.489 PM loginwindow[41]: Login Window Application Started
    9/20/13 1:59:45.617 PM locationd[42]: NOTICE,Location icon should now be in state 0
    9/20/13 1:59:45.658 PM digest-service[114]: label: default
    9/20/13 1:59:45.658 PM digest-service[114]:     dbname: od:/Local/Default
    9/20/13 1:59:45.658 PM digest-service[114]:     mkey_file: /var/db/krb5kdc/m-key
    9/20/13 1:59:45.658 PM digest-service[114]:     acl_file: /var/db/krb5kdc/kadmind.acl
    9/20/13 1:59:45.659 PM digest-service[114]: digest-request: uid=0
    9/20/13 1:59:45.678 PM rpcsvchost[118]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    9/20/13 1:59:45.681 PM digest-service[114]: digest-request: init request
    9/20/13 1:59:45.684 PM digest-service[114]: digest-request: init return domain: BUILTIN server: MACINTOSH
    9/20/13 1:59:45.704 PM com.apple.usbmuxd[24]: usbmuxd-323 on Jul 29 2013 at 23:21:29, running 64 bit
    9/20/13 1:59:45.742 PM apsd[57]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    9/20/13 1:59:45.743 PM apsd[57]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    9/20/13 1:59:46.000 PM kernel[0]: en1: 802.11d country code set to 'US'.
    9/20/13 1:59:46.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    9/20/13 1:59:46.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 00:24:56:c4:1d:21  MAC AUTH succeeded
    9/20/13 1:59:46.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    9/20/13 1:59:46.000 PM kernel[0]: AirPort: Link Up on en1
    9/20/13 1:59:46.000 PM kernel[0]: en1: BSSID changed to 00:24:56:c4:1d:21
    9/20/13 1:59:46.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    9/20/13 1:59:46.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    9/20/13 1:59:46.790 PM configd[17]: network changed: v4(en0+:192.168.1.70) DNS+ Proxy+ SMB
    9/20/13 1:59:46.799 PM configd[17]: setting hostname to "unknowna820663b5ace"
    9/20/13 1:59:47.299 PM ntpd[109]: proto: precision = 1.000 usec
    9/20/13 1:59:47.436 PM airportd[86]: _doAutoJoin: Already associated to “2WIRE871”. Bailing on auto-join.
    9/20/13 1:59:47.442 PM airportd[86]: _doAutoJoin: Already associated to “2WIRE871”. Bailing on auto-join.
    9/20/13 1:59:47.447 PM airportd[86]: _doAutoJoin: Already associated to “2WIRE871”. Bailing on auto-join.
    9/20/13 1:59:49.151 PM configd[17]: network changed: v4(en0:192.168.1.70, en1+:192.168.1.71) DNS* Proxy SMB
    9/20/13 1:59:49.160 PM UserEventAgent[11]: Captive: en1: Not probing '2WIRE871' (protected network)
    9/20/13 1:59:49.163 PM configd[17]: network changed: v4(en1!:192.168.1.71, en0) DNS! Proxy! SMB
    9/20/13 1:59:49.174 PM configd[17]: setting hostname to "unknown8c2daa36589f"
    9/20/13 1:59:56.116 PM apsd[57]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    9/20/13 1:59:59.812 PM awacsd[55]: Exiting
    9/20/13 2:00:33.967 PM configd[17]: InterfaceNamer: timed out waiting for IOKit to quiesce
    9/20/13 2:00:33.967 PM configd[17]: Busy services :
    9/20/13 2:00:33.967 PM configd[17]:   iMac13,2 [1, 85121 ms]
    9/20/13 2:00:33.967 PM configd[17]:   iMac13,2/AppleACPIPlatformExpert [1, 85105 ms]
    9/20/13 2:00:33.967 PM configd[17]:   iMac13,2/AppleACPIPlatformExpert/PCI0@0 [1, 85082 ms]
    9/20/13 2:00:33.967 PM configd[17]:   iMac13,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI [1, 85064 ms]
    9/20/13 2:00:33.967 PM configd[17]:   iMac13,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2 [1, 85063 ms]
    9/20/13 2:00:33.967 PM configd[17]:   iMac13,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridge [1, 85058 ms]
    9/20/13 2:00:33.967 PM configd[17]:   iMac13,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridge/ SDXC@0,1 [!matched, 1, 85056 ms]
    9/20/13 2:00:40.916 PM WindowServer[93]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    9/20/13 2:00:40.916 PM WindowServer[93]: IOKitWaitQuiet: (iokit/common) I/O Timeout
    9/20/13 2:00:40.918 PM WindowServer[93]: Session 256 retained (2 references)
    9/20/13 2:00:40.919 PM WindowServer[93]: Session 256 released (1 references)
    9/20/13 2:00:40.924 PM WindowServer[93]: Session 256 retained (2 references)
    9/20/13 2:00:40.925 PM WindowServer[93]: init_page_flip: page flip mode is on
    9/20/13 2:00:41.511 PM WindowServer[93]: mux_initialize: Couldn't find any matches
    9/20/13 2:00:41.523 PM WindowServer[93]: GLCompositor enabled for tile size [256 x 256]
    9/20/13 2:00:41.523 PM WindowServer[93]: CGXGLInitMipMap: mip map mode is on
    9/20/13 2:00:41.587 PM WindowServer[93]: WSMachineUsesNewStyleMirroring: true
    9/20/13 2:00:41.587 PM WindowServer[93]: Display 0x042c0140: GL mask 0x1; bounds (0, 0)[2560 x 1440], 42 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model b005, S/N 0, Unit 0, Rotation 0
    UUID 0x000006100000b00500000000042c0140
    9/20/13 2:00:41.588 PM WindowServer[93]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    9/20/13 2:00:41.588 PM WindowServer[93]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    9/20/13 2:00:41.593 PM WindowServer[93]: Created shield window 0x5 for display 0x042c0140
    9/20/13 2:00:41.593 PM WindowServer[93]: Created shield window 0x6 for display 0x003f003e
    9/20/13 2:00:41.593 PM WindowServer[93]: Created shield window 0x7 for display 0x003f003d
    9/20/13 2:00:41.594 PM WindowServer[93]: Display 0x042c0140: GL mask 0x1; bounds (0, 0)[2560 x 1440], 42 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model b005, S/N 0, Unit 0, Rotation 0
    UUID 0x000006100000b00500000000042c0140
    9/20/13 2:00:41.595 PM WindowServer[93]: Display 0x003f003e: GL mask 0x4; bounds (3584, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    9/20/13 2:00:41.595 PM WindowServer[93]: Display 0x003f003d: GL mask 0x2; bounds (3585, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    9/20/13 2:00:41.595 PM WindowServer[93]: CGXPerformInitialDisplayConfiguration
    9/20/13 2:00:41.595 PM WindowServer[93]:   Display 0x042c0140: MappedDisplay Unit 0; Vendor 0x610 Model 0xb005 S/N 0 Dimensions 23.50 x 13.23; online enabled built-in, Bounds (0,0)[2560 x 1440], Rotation 0, Resolution 1
    9/20/13 2:00:41.595 PM WindowServer[93]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3584,0)[1 x 1], Rotation 0, Resolution 1
    9/20/13 2:00:41.595 PM WindowServer[93]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3585,0)[1 x 1], Rotation 0, Resolution 1
    9/20/13 2:00:41.649 PM WindowServer[93]: GLCompositor: GL renderer id 0x01022644, GL mask 0x00000007, accelerator 0x0000409b, unit 0, caps QEX|QGL|MIPMAP, vram 2048 MB
    9/20/13 2:00:41.655 PM WindowServer[93]: GLCompositor: GL renderer id 0x01022644, GL mask 0x00000007, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    9/20/13 2:00:41.657 PM loginwindow[41]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    9/20/13 2:00:41.681 PM WindowServer[93]: Created shield window 0x8 for display 0x042c0140
    9/20/13 2:00:41.681 PM WindowServer[93]: Display 0x042c0140: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    9/20/13 2:00:41.695 PM launchctl[133]: com.apple.findmymacmessenger: Already loaded
    9/20/13 2:00:41.712 PM com.apple.SecurityServer[15]: Session 100006 created
    9/20/13 2:00:41.736 PM airportd[140]: _doAutoJoin: Already associated to “2WIRE871”. Bailing on auto-join.
    9/20/13 2:00:41.748 PM hidd[45]: CGSShutdownServerConnections: Detaching application from window server
    9/20/13 2:00:41.748 PM hidd[45]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    9/20/13 2:00:41.764 PM loginwindow[41]: Login Window Started Security Agent
    9/20/13 2:00:41.781 PM locationd[141]: NOTICE,Location icon should now be in state 0
    9/20/13 2:00:41.787 PM UserEventAgent[135]: cannot find useragent 1102
    9/20/13 2:00:41.831 PM SecurityAgent[143]: This is the first run
    9/20/13 2:00:41.831 PM SecurityAgent[143]: MacBuddy was run = 0
    9/20/13 2:00:41.841 PM WindowServer[93]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042c0140 device: 0x10afbe110  isBackBuffered: 1 numComp: 3 numDisp: 3
    9/20/13 2:00:41.866 PM SecurityAgent[143]: User info context values set for richard
    9/20/13 2:00:42.081 PM loginwindow[41]: Login Window - Returned from Security Agent
    9/20/13 2:00:42.083 PM loginwindow[41]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    9/20/13 2:00:42.102 PM loginwindow[41]: USER_PROCESS: 41 console
    9/20/13 2:00:42.112 PM airportd[140]: _doAutoJoin: Already associated to “2WIRE871”. Bailing on auto-join.
    9/20/13 2:00:42.148 PM com.apple.launchd.peruser.501[146]: (com.apple.gamed) Ignored this key: UserName
    9/20/13 2:00:42.148 PM com.apple.launchd.peruser.501[146]: (com.apple.gamed) Ignored this key: GroupName
    9/20/13 2:00:42.149 PM com.apple.launchd.peruser.501[146]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    9/20/13 2:00:42.152 PM loginwindow[41]: Connection with distnoted server was invalidated
    9/20/13 2:00:42.156 PM distnoted[150]: # distnote server agent  absolute time: 93.407915730   civil time: Fri Sep 20 14:00:42 2013   pid: 150 uid: 501  root: no
    9/20/13 2:00:42.237 PM WindowServer[93]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    9/20/13 2:00:42.257 PM WindowServer[93]: Display 0x042c0140: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    9/20/13 2:00:42.382 PM coreaudiod[163]: Enabled automatic stack shots because audio IO is inactive
    9/20/13 2:00:42.451 PM com.apple.launchd.peruser.501[146]: (com.apple.afpstat-qfa[181]) Exited with code: 2
    9/20/13 2:00:42.451 PM com.apple.launchd.peruser.501[146]: (com.plexapp.helper[188]) Exited with code: 2
    9/20/13 2:00:42.452 PM com.apple.launchd.peruser.501[146]: (com.plexapp.mediaserver[187]) Exited with code: 2
    9/20/13 2:00:42.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=184[GoogleSoftwareUp] clearing CS_VALID
    9/20/13 2:00:42.963 PM NetworkBrowserAgent[201]: Starting NetworkBrowserAgent
    9/20/13 2:00:42.982 PM 1PasswordAgent[186]: Starting 1PasswordAgent 3.8.21 #32009 built Apr 24 2013 16:09:31
    9/20/13 2:00:43.219 PM 1PasswordAgent[186]: Trying to load Localizable.strings [English] from the main bundle
    9/20/13 2:00:43.222 PM 1PasswordAgent[186]: Cannot find English version, using English localization for Localizable.strings
    9/20/13 2:00:43.314 PM com.apple.launchd.peruser.501[146]: (com.apple.mrt.uiagent[171]) Exited with code: 255
    9/20/13 2:00:43.487 PM 1PasswordAgent[186]: reloadAllObjects
    9/20/13 2:00:43.510 PM 1PasswordAgent[186]: Database (AGHtmlDatabase:file://localhost/Users/richard/Library/Application%20Support/1P assword/1Password.agilekeychain/) load time [Cache]: 0.014+0.001 (168 objects)
    9/20/13 2:00:43.594 PM WindowServer[93]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    9/20/13 2:00:43.777 PM WindowServer[93]: Display 0x042c0140: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    9/20/13 2:00:43.805 PM WindowServer[93]: Display 0x042c0140: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    9/20/13 2:00:52.292 PM locationd[213]: NOTICE,Location icon should now be in state 0
    9/20/13 2:00:53.475 PM com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    9/20/13 2:00:53.481 PM UserEventAgent[149]: rcdevent.plugin : IOHIDManagerOpen returned an error but continuing anyway.
    9/20/13 2:00:53.965 PM com.apple.SecurityServer[15]: Session 100003 created
    9/20/13 2:00:54.910 PM com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    9/20/13 2:00:55.441 PM timezoned[221]: bootstrap_look_up failed (44e)
    9/20/13 2:00:55.448 PM timezoned[221]: bootstrap_look_up failed (44e)
    9/20/13 2:00:58.800 PM Finder[162]: Persistent UI failed to open file file://localhost/Users/richard/Library/Saved%20Application%20State/com.apple.fi nder.savedState/window_1.data: No such file or directory (2)
    9/20/13 2:01:02.147 PM com.apple.launchd[1]: (com.apple.coreservices.appleid.authentication[139]) Exit timeout elapsed (20 seconds). Killing
    9/20/13 2:01:10.453 PM com.apple.SecurityServer[15]: Session 100002 created
    9/20/13 2:04:41.788 PM hidd[45]: Timeout waiting for IOKit to be quiet

  • Problems with kernel panics when sleeping since 10.6.8

    Hi folks,
    I installed 10.6.8 the day it was issued, and since then have had some very odd problems with sleeping my Mac Pro. Intermittently, it goes into a half-sleep state when I request sleep mode; the fans still spin, but the sleep light pulses. It refuses to wake up, requiring a hard reset. The console logs show:
    Sleep: Drivers Failure Panic
    The specific panic is:
    panic(cpu X caller 0xffffff80002251fb): "TLB invalidation IPI timeout: " "CPU(s) failed to respond to interrupts, unresponsive CPU bitmap: 0x101, NMIPI acks: orig: 0x0, now: 0x0"@/SourceCache/xnu/xnu-1504.15.3/osfmk/x86_64/pmap.c:2741
    where cpu X varies between any one of the 6 cores.
    So far, I've tried
    Resetting the PRAM and SMC
    Disabling a raft of sleep related options (Wake on Bluetooth, etc)
    Reinstalling the 10.6.8 update via the Combo updater
    Repairing disk permissions
    Reinstalling from the factory DVD and re-running the combo updater
    And no doubt other things I've forgotten. The only thing that seems to fix it is to not install 10.6.8; when I reinstalled 10.6.4 (the factory OS), it slept and woke fine 10 times. As soon as the combo update was installed, it started sleep crashing again after 4-5 attempts.
    I'm assuming this is some rogue driver bug introduced in the .8 release, but I've not seen anyone else suffering the problem. I would roll back onto .7, but will obviously need .8 to install Lion when it arrives.
    Does anyone have any suggestions that I've missed, or has anyone else seen this problem?
    Thanks,
    adamw

    Woops, sorry - typo. I meant 5870 (Apple provided). As far as I know, I'm not running any 3rd party drivers. The only non-Apple kernel extensions loaded are Parallels, which I've unloaded (and the problem persisted).
    I should also mention, the Apple Hardware Test passes the machine.
    I'll check out those two forums and see if I can find anything. Thanks for the advice!
    Edit: The whole panic log is...
    Sat Jun 25 22:30:09 2011
    panic(cpu 2 caller 0xffffff80002251fb): "TLB invalidation IPI timeout: " "CPU(s) failed to respond to interrupts, unresponsive CPU bitmap: 0x101, NMIPI acks: orig: 0x0, now: 0x0"@/SourceCache/xnu/xnu-1504.15.3/osfmk/x86_64/pmap.c:2741
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80db0db8a0 : 0xffffff8000204d15
    0xffffff80db0db9a0 : 0xffffff80002251fb
    0xffffff80db0dba10 : 0xffffff800022691f
    0xffffff80db0dba90 : 0xffffff800021b545
    0xffffff80db0dbb00 : 0xffffff80002184b1
    0xffffff80db0dbc00 : 0xffffff80002188b3
    0xffffff80db0dbc30 : 0xffffff80002a6813
    0xffffff80db0dbd40 : 0xffffff800027522f
    0xffffff80db0dbe10 : 0xffffff8000292b1b
    0xffffff80db0dbe50 : 0xffffff8000205536
    0xffffff80db0dbe80 : 0xffffff80002029eb
    0xffffff80db0dbef0 : 0xffffff8000274176
    0xffffff80db0dbf60 : 0xffffff80002c3095
    0xffffff80db0dbfa0 : 0xffffff80002e4894
    BSD process name corresponding to current thread: SystemUIServer
    Mac OS version:
    10K540
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:32:41 PDT 2011; root:xnu-1504.15.3~1/RELEASE_X86_64
    System model name: MacPro5,1 (Mac-F221BEC8)
    System uptime in nanoseconds: 67602566330
    unloaded kexts:
    (none)
    loaded kexts:
    com.parallels.kext.prl_vnic          6.0 12090.660720 - last loaded 6124490875
    com.parallels.kext.prl_netbridge          6.0 12090.660720
    com.parallels.kext.prl_usb_connect          6.0 12090.660720
    com.parallels.kext.prl_hid_hook          6.0 12090.660720
    com.parallels.kext.prl_hypervisor          6.0 12090.660720
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleHDA          2.0.5f13
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AppleMikeyDriver          2.0.5f13
    com.apple.driver.AGPM          100.12.31
    com.apple.driver.AudioAUUC          1.57
    com.apple.kext.ATIFramebuffer          6.3.6
    com.apple.driver.AppleUSBDisplays          289
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.filesystems.ntfs          3.4
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleIntelPenrynProfile          9999
    com.apple.driver.AppleIntelNehalemProfile          76
    com.apple.driver.AppleIntelMeromProfile          76
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.ATIRadeonX3000          6.3.6
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.Intel82574L          2.1.8b1
    com.apple.driver.AppleIntel8254XEthernet          2.1.3b1
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    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.12
    com.apple.iokit.CHUDUtils          364
    com.apple.iokit.CHUDProf          366
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f13
    com.apple.driver.DspFuncLib          2.0.5f13
    com.apple.driver.AppleProfileReadCounterAction          76
    com.apple.driver.AppleProfileTimestampAction          76
    com.apple.driver.AppleProfileThreadInfoAction          76
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.AppleProfileRegisterStateAction          76
    com.apple.driver.AppleProfileKEventAction          76
    com.apple.driver.AppleProfileCallstackAction          76
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleUSBAudio          2.7.6f6
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.0.5f13
    com.apple.iokit.IOHDAFamily          2.0.5f13
    com.apple.iokit.AppleProfileFamily          76
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.IONDRVSupport          2.2
    com.apple.kext.ATI5000Controller          6.3.6
    com.apple.kext.ATISupport          6.3.6
    com.apple.iokit.IOGraphicsFamily          2.2
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.XsanFilter          402.1
    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.AppleFileSystemDriver          2.0
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCISerialATAPI          1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IOUSBUserClient          4.2.4
    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.iokit.CHUDKernLib          365
    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
    It varies slightly (sometimes some extensions are unloaded, sometimes not). The BSD process name changes almost every time; anything from Window Server to Mail.

  • Problems with the posting period....

    Hi guys,
    every once in a while the old problem with the posting periods occurs. This morning it hit me and I went out to repair it.
    Starting out from MMRV I checked the open period and it said 062009.
    Using MMPV, by mistake, I opened 112009, so that I'm able to post to 112009 PLUS the previous period 102009 (which is ok so far). Later on I checked OB52 to see, if finance is not the problem. The opened period lasts from 012009 to 122009.
    Long story short: everything seems perfectly alright, however it still doesn't work. It says: Posting only possible in periods 2009/11 and 2009/10 in company code 1000
    I don't see where there could be a problem now...
    Any help is greatly appreciated!
    Thx & regards,
    Bobby

    Hi,
    It is possible to re-open a previously closed period. However, it is NOT advisable to do so because the valuation data of the previous period could be affected.
    In general, it is only safe to reopen a previously closed period when no material postings have been done after the period shifting to the new period.
    If there has already been postings after the period shifting to the new period, reverting the period back will cause database inconsistencies in the history tables.
    If you decide to proceed with this process, you can use the program RMMMINIT, but, please review the documentation of this program first!! and the check the SAP notes 487381 (for the error message that you are receiving) and the 369637 (for an explanation about the inconsistencies that will be generated.
    Steps are as below;
    Go to Transaction Code SE38
    Enter program name RMMMINIT
    Execute or press F8 function button
    Enter your company code (From and To)
    Enter relevant date: Say 01/10/2009 for Oct. 2009 month to be opened as of now
    That means, user can post for the month of sept 2009 as well as Oct. 2009
    Refer SAP Note No. 487381 for more details.
    As per SAP Notes 487381 ( If the periods are opened in advance in mmpv to again change it to current period the following process should be follow ), Go to Tcode MMPI, then go to menu bar and select system -> user profile->owndata.In that screen , under the parameters tab enter MMPI_READ_NOTE in Parameter ID field and enter, then under short description you will get Initialise period. Next Save.
    Again go to MMPI enter company code, period and year and execute.
    Other way of doing it is follow these steps: ( *TRY in Sandbox But do not try in PRODUCTION SYSTEM*)
    1. Use t.code: OX18, and delete the plants assigned to your CO.Cd and save.
    2. Use t.code: OMSY and change the posting period to the one u want and save.
    3.Go to OX18 and assign the plants you have deleted in step 1.and save.
    Regards,
    Biju K

Maybe you are looking for

  • Trouble with connecting to WiFi on hotspots

    Only had my playbook tablet for almost month and half. I had tried to connect to wireless WiFi  at various places. And most places you need to have there password. Which they won't give out.   I was serious thinking about buying  Wireless N USB Adapt

  • Iphone 4 running 4.3.5 wifi very unstable/will not connect to network

    Hi all iPhone users. Im new to this so please bear with me. I have an iPhone 4 (had for about 1 month or so). I have recently updated to the new 4.3.5 software. Sice then, my wifi seems to be very very unstable. Im only about 10ft from my router and

  • Property settings not working

    I have several property tags in my JNLP file, but when I launch my application I get the following error: java.security.AccessControlException: access denied (java.util.PropertyPermission stubMessage write) for each property I've included in the JNLP

  • Does the Mac Pro Support SATA III?

    Hi everyone, I've been wondering for a long time: Does the late 2012 12-Core Mac Pro support SATA III 6Gb connection? If not, is there any way of making it SATA III?

  • Camileo S20 - recorded file cannot start due to format error

    Hi! I have a problem here. My camileo S20 format is .avi but when i try to put the film on a stick or dvd and play it on my dvd-player it won't start (format error) , i changed the dvd-player and the same problem , i tried to make it .mpg , still no