Different many-many problem

On the face of it this looks simple.
The following meta data and declaration for this relation, in the
Condition class:-
* @jdo.field collection-type="collection"
element-type="com.letsys.erespond.business.model.event.Type"
* @jdo.field-vendor-extension vendor-name="kodo" key="jdbc-field-map"
value="many-many"
* @jdo.field-vendor-extension vendor-name="kodo"
key="jdbc-field-map/table" value="EVENTCONDITIONTYPEXREF"
* @jdo.field-vendor-extension vendor-name="kodo"
key="jdbc-field-map/element-column.ID" value="EVENTTYPEID"
* @jdo.field-vendor-extension vendor-name="kodo"
key="jdbc-field-map/ref-column.ID" value="EVENTCONDITIONID"
private Collection validEventTypes;
public Collection getValidEventTypes() {
return validEventTypes;
public void setValidEventTypes(Collection validEventTypes) {
this.validEventTypes = validEventTypes;
This maps the Condition class to the Type class, via the xref join table
"EVENTCONDITIONTYPEXREF" which is not enhanced.
The Condition class has a corresponding EventCondition table with primary
key 'ID', and the Type class has a corresponding EventType table with
primary key 'ID'.
The join table "EVENTCONDITIONTYPEXREF" has primary keys 'EVENTTYPEID' and
'EVENTCONDITIONID'.
The meta data for the other-side realtion in the Type class is as follows:-
* @jdo.field collection-type="collection"
element-type="com.letsys.erespond.business.model.event.Condition"
* @jdo.field-vendor-extension vendor-name="kodo" key="jdbc-field-map"
value="many-many"
* @jdo.field-vendor-extension vendor-name="kodo"
key="jdbc-field-map/table" value="EVENTCONDITIONTYPEXREF"
* @jdo.field-vendor-extension vendor-name="kodo"
key="jdbc-field-map/element-column.ID" value="EVENTCONDITIONID"
* @jdo.field-vendor-extension vendor-name="kodo"
key="jdbc-field-map/ref-column.ID" value="EVENTTYPEID"
* @jdo.field-vendor-extension vendor-name="kodo" key="inverse-owner"
value="validEventTypes"
private Collection availableConditionEventTypes;
public Collection getAvailableConditionEventTypes() {
return availableConditionEventTypes;
public void setAvailableConditionEventTypes(Collection
availableConditionEventTypes) {
this.availableConditionEventTypes = availableConditionEventTypes;
This all passes jdo enhancement, and succeds for reading via
getValidEventTypes(), but fails at run-time on
Condition.setValidEventTypes(Collection validEventTypes),
wher the passed parameter is an ArrayList of 'Type' objects; with the
following exception:-
kodo.util.FatalException: kodo.util.UserException: The given instance of
type "com.letsys.erespond.business.model.event.Type" and id
"com.letsys.erespond.business.model.event.Type-2" is not managed by this
PersistenceManager.
FailedObject:Exception getting failed.toString():
'kodo.util.FatalUserException: The PersistenceManager has been closed.
The stack trace at which the PersistenceManager was closed is held in the
embedded exception.
NestedThrowables:
kodo.util.UserException: '
NestedThrowables:
kodo.util.UserException: The given instance of type
"com.letsys.erespond.business.model.event.Type" and id
"com.letsys.erespond.business.model.event.Type-2" is not managed by this
PersistenceManager.
FailedObject:Exception getting failed.toString():
'kodo.util.FatalUserException: The PersistenceManager has been closed.
The stack trace at which the PersistenceManager was closed is held in the
embedded exception.
NestedThrowables:
kodo.util.UserException: '
     at
kodo.runtime.PersistenceManagerImpl.beforeCompletion(PersistenceManagerImpl.java:656)
     at kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:69)
     at
kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:416)
     at com.letsys.util.JDOUtil.close(JDOUtil.java:332)
     at
com.letsys.erespond.business.model.event.EventConditionAppTest.testSetValidEventTypes(EventConditionAppTest.java:243)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at com.intellij.rt.execution.junit2.IdeaJUnitAgent.doRun(Unknown Source)
     at
com.intellij.rt.execution.junit.TextTestRunner2.startRunnerWithArgs(Unknown
Source)
     at
com.intellij.rt.execution.junit2.JUnitStarter.prepareStreamsAndStart(Unknown
Source)
     at com.intellij.rt.execution.junit2.JUnitStarter.main(Unknown Source)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
Caused by: kodo.util.UserException: The given instance of type
"com.letsys.erespond.business.model.event.Type" and id
"com.letsys.erespond.business.model.event.Type-2" is not managed by this
PersistenceManager.
FailedObject:Exception getting failed.toString():
'kodo.util.FatalUserException: The PersistenceManager has been closed.
The stack trace at which the PersistenceManager was closed is held in the
embedded exception.
NestedThrowables:
kodo.util.UserException: '
     at
kodo.runtime.PersistenceManagerImpl.makePersistentInternal(PersistenceManagerImpl.java:1604)
     at
kodo.runtime.SingleFieldManager.preFlushFCO(SingleFieldManager.java:645)
     at
kodo.runtime.SingleFieldManager.preFlushFCOs(SingleFieldManager.java:636)
     at kodo.runtime.SingleFieldManager.preFlush(SingleFieldManager.java:594)
     at kodo.runtime.SingleFieldManager.preFlush(SingleFieldManager.java:517)
     at kodo.runtime.StateManagerImpl.preFlush(StateManagerImpl.java:2575)
     at kodo.runtime.PNewState.beforeFlush(PNewState.java:25)
     at kodo.runtime.StateManagerImpl.beforeFlush(StateManagerImpl.java:625)
     at
kodo.runtime.PersistenceManagerImpl.flushInternal(PersistenceManagerImpl.java:722)
     at
kodo.runtime.PersistenceManagerImpl.beforeCompletion(PersistenceManagerImpl.java:644)
     ... 27 more
NestedThrowablesStackTrace:
kodo.util.UserException: The given instance of type
"com.letsys.erespond.business.model.event.Type" and id
"com.letsys.erespond.business.model.event.Type-2" is not managed by this
PersistenceManager.
FailedObject:Exception getting failed.toString():
'kodo.util.FatalUserException: The PersistenceManager has been closed.
The stack trace at which the PersistenceManager was closed is held in the
embedded exception.
NestedThrowables:
kodo.util.UserException: '
     at
kodo.runtime.PersistenceManagerImpl.makePersistentInternal(PersistenceManagerImpl.java:1604)
     at
kodo.runtime.SingleFieldManager.preFlushFCO(SingleFieldManager.java:645)
     at
kodo.runtime.SingleFieldManager.preFlushFCOs(SingleFieldManager.java:636)
     at kodo.runtime.SingleFieldManager.preFlush(SingleFieldManager.java:594)
     at kodo.runtime.SingleFieldManager.preFlush(SingleFieldManager.java:517)
     at kodo.runtime.StateManagerImpl.preFlush(StateManagerImpl.java:2575)
     at kodo.runtime.PNewState.beforeFlush(PNewState.java:25)
     at kodo.runtime.StateManagerImpl.beforeFlush(StateManagerImpl.java:625)
     at
kodo.runtime.PersistenceManagerImpl.flushInternal(PersistenceManagerImpl.java:722)
     at
kodo.runtime.PersistenceManagerImpl.beforeCompletion(PersistenceManagerImpl.java:644)
     at kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:69)
     at
kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:416)
Any takers on what is going wrong?

The error message indicates that you're trying to take an object looked
up in PM1 and set it as a relation to an object looked up in PM2. You
can't mix objects from different persistence managers like that.

Similar Messages

  • Startup problems and many other problem... APPLE CARE DON'T FUNCTION !!!!

    Hi, and sorry for my bad english...
    I have imac 27" refurbished bought on september 2010. When startup process proceed correctly and i can use the computer, there are many many many "blocks" of normal operating: it appears the colored circle and the system is always "busy", although there are no application open!!! When skype is open, it always lost the already saved password. Safari lost all the login saved password. I can't drag files into the basket or create a folder! (message error).
    But the big problem is: startup process failure almost always!!! Startup is ok only if the computer was off during some hours. After the first startup, i can't restart (manual or automatic restart, in any case...) it appears green screen with the green apple, and the rotating cirle forever.....
    So, i have tried many solution:
    - check and repair HD using utility disk: FAILED
    - check and repair permits using utility disk: FAILED
    - format the HD using utility disk with OsX dvd: FAILED
    - reinstall OS X: FAILED
    I gave the iMac at applecare centre to repair, two times!! 2 TIMES in 1 month !!
    - first time: replaced HD
    - second time: replaced mother board
    In both times, the repairs DON'T FIX THE PROBLEMS....
    THE PROBLEMS REMAIN THE SAME (like a led zeppelin song...)
    So, i think: maybe the cause was not the HD, maybe not the mother board... WHAT'S THE PROBLEM?????
    Even the autorized apple assistance centre can't find e repair the problem, what i have to do???
    I think that Apple should replace the product or refund me...
    but, i know, APPLE THINK DIFFERENT...
    help me

    thank you den.thed!
    But, i have already called Apple Support... they say to me "deliver your mac at an apple assistance centre"... for 2 times, and tomorrow i will do it again...
    I'd like to find in this forum some answers about some little questions. I try to do it:
    1) when i try to initialize "Macintosh HD" appears this message: "Disk initialize failed - POSIX reports: The operation couldn't be completed. Cannot allocate memory". WHY? WHAT DOES IT MEAN?
    2) If i try to reinstall OS X appears. "IMPOSSIBLE TO INSTALL MAC OS X ON COMPUTER". WHY?
    Thank you very much!

  • Many small problems in Mavericks

    When user experience many small problem in daily work, I feel the design is failed.
    Memory management has a lot of problem, I feel my macbook is abnormal slow after I upgraded to Mavericks. Sometime, I need to wait for several sec to get what I want.
    I think this problem is extreme important for OS.
    When I want to start a probelm, click once, no response, click twice, pop-up 2 times after 5 sec.
    Then i change my way of work, clock one time, work on other task. 5 sec later, multi desktop switch the desktop to the starting program. Then, I don't know what I was doing.
    Another is sound problem, sound doesn't work sometime and need some kind of procedure to get it back.
    Please don't ask me do something to solve the problem everytime when it happen. It is OS task to work it properly.
    Whatever how many great feature you added is meaningless if user daily experience is bad.

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve your problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to gather information about the state of your computer. That information goes nowhere unless you choose to share it on this page. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them.
    Here's a summary of what you need to do, if you choose to proceed: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a couple of minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking  anywhere in the line. The whole line will highlight, though you may not see all of it in your browser, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; Pc () { o=`grep -v '^ *#' "$2"`; Pm "$1"; }; Pm () { [[ "$o" ]] && o=`sed '/^ *$/d; s/^ */   /' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id | grep -qw '80(admin)'; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed '8!d;s/^ *//'; o=`SP Hardware | awk '/Mem/{print $2}'`; o=$((o<4?o:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d; /[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]||0[^2]8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; for b in Thunderbolt USB; do o=`SP $b | sed -En '1d; /:$/{s/ *:$//;x;s/\n//p;}; /^ *V.* [0N].* /{s/ 0x.... //;s/[()]//g;s/\(.*: \)\(.*\)/ \(\2\)/;H;}; /Apple|SCSM/{s/.//g;h;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; d=(/ ""); D=(System User); E=; for i in 0 1; do o=`cd ${d[$i]}L*/L*/Dia* || continue; ls | while read f; do [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && e=" *" || e=; awk -F_ '!/ag$/{$NF=a[split($NF,a,".")]; print $0 "'"$e"'"}' <<< "$f"; done | tail`; Pm "${D[$i]} diagnostics"; done; [[ "$o" =~ \*$ ]] && printf $'\n* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|last value [1-9]|n Cause: -|NVDA\(|pagin|SATA W|ssert|timed? ?o' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); o=${s[2]}%; Ps "CPU usage by process \"$s\" with UID ${s[1]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); s[2]=${s[2]%[+-]}; o=$((s[2]>=25000?s[2]:0)); Ps "Mach ports used by process \"$s\" with UID ${s[1]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|post[fg]|x)/{print $3}'`; Pm "Extrinsic system jobs"; o=`launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | grep -v com\.apple\.CSConfig | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/Star*; do M; done`; Pm "Startup items"; o=`find -L /S*/L*/E* {/,}L*/{A*d,Compon,Ex,In,Keyb,Mail/B,P*P,Qu*T,Scripti,Servi,Spo}* -type d -name Contents -prune | while read d; do ID=$($PB\ :CFBundleIdentifier "$d/Info.plist") || ID="No bundle ID"; [[ "$ID" =~ ^com\.apple\.[^x]|Accusys|ArcMSR|ATTO|HDPro|HighPoint|driver\.stex|hp-fax|\.hpio|JMicron|microsoft\.MDI|print|SoftRAID ]] || printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find -L /u*/{,*/}lib -type f | while read f; do file -b "$f" | grep -qw shared && ! codesign -v "$f" && echo $f; done`; Pm "Unsigned shared libraries"; o=`for e in DYLD_INSERT_LIBRARIES DYLD_LIBRARY_PATH; do launchctl getenv $e; done`; Pm "Environment"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; Ps "DNS"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; Pc "hosts" <(grep -v 'host *$' /etc/hosts); Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`SP Fonts | egrep "Valid: N|Duplicate: Y" | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign ($) or a percent sign (%). If you get the percent sign, enter
    exec bash
    in the window and press return. You should then get a new line ending in a dollar sign.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know your password, or if you prefer not to enter it, just press return three times at the password prompt.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line "[Process completed]" to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report your results. No harm will be done.
    8. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If it happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of Apple Support Communities ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Among many other problems

    Among many other problems, itunes doesn't play music, it get stuck, quicktime doesn't load, can't desinstall quicktime and install again, I've tried every version of itunes but every time I install it it tells me something funny about quicktime(desinstall firsta and then try again) but the thing is that won't desinstall.
    Help please

    hi claudia!
    I've tried every version of itunes but every time I install it it tells me something funny about quicktime(desinstall firsta and then try again) but the thing is that won't desinstall.
    what error message are you getting on the uninstall? include error message numbers if you're getting any.
    love, b

  • IMac (27", mid 2011) slowed with many, many errors on startup...help?

    My iMac (27", mid 2011) has slowed and gives many, many errors via Console. I have Zapped the pRAM, used safe start, Etresoft check, and a complete check with TechTool. I'm running out of ideas except to reformat and start again. Here are a few lines from Console on today's startup and the results from EtreCheck. Any ideas?
    Console (a dozen lines)
    6/10/14 11:25:34.000 AM kernel[0]: Sandbox: mds_stores(188) deny file-read-data /Applications/Utilities/VoiceOver Utility.app/Contents/MacOS/VoiceOver Utility/..namedfork/rsrc
    6/10/14 11:31:24.947 AM WindowServer[139]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    6/10/14 11:31:25.135 AM WindowServer[139]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.19 seconds (server forcibly re-enabled them after 1.00 seconds)
    6/10/14 11:31:42.195 AM Finder[262]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: FileInfoBinding [0x9203] - extension: (NULL), UTI: dyn.agk80255drq, fileType: lock request size:18 scale: 1
    6/10/14 11:37:57.990 AM secd[307]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/10/14 11:37:57.990 AM secd[307]:  securityd_xpc_dictionary_handler EscrowSecurityAl[3206] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/10/14 11:49:10.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=3244[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    6/10/14 12:00:00.000 PM WindowServer[139]: CGXSetWindowListSystemAlpha: Invalid window 76 (index 0/1)
    6/10/14 12:01:03.571 PM xpcproxy[3302]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    6/10/14 12:31:14.533 PM ntpd[191]: SYNC state ignoring -0.130845 s
    6/10/14 12:34:53.048 PM WindowServer[139]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042801c0 device: 0x7fafd2c1b8e0  isBackBuffered: 1 numComp: 3 numDisp: 3
    EtreCheck version: 1.9.11 (43) - report generated June 10, 2014 at 11:16:14 AM PDT
    Hardware Information:
              iMac (27-inch, Mid 2011)
              iMac - model: iMac12,2
              1 2.7 GHz Intel Core i5 CPU: 4 cores
              16 GB RAM
    Video Information:
              AMD Radeon HD 6770M - VRAM: 512 MB
    System Software:
              OS X 10.9.2 (13C64) - Uptime: 0 days 0:28:17
    Disk Information:
              ST31000528AS disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 987.22 GB (60.78 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
                        eDrive (disk0s4) <not mounted>: 12 GB
              OPTIARC DVD RW AD-5690H 
    USB Information:
              Apple Internal Memory Card Reader
              Apple Computer, Inc. IR Receiver
              Apple Inc. FaceTime HD Camera (Built-in)
              Seagate Backup+ Desk 3 TB
                        PhotoVAULT 2013+ (disk3s1) /Volumes/PhotoVAULT 2013+: 3 TB (218.41 GB free)
              Mitsumi Electric Hub in Apple Extended USB Keyboard
                        Logitech USB-PS/2 Optical Mouse
                        Mitsumi Electric Apple Extended USB Keyboard
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [kext loaded] at.obdev.nke.LittleSnitch (4092 - SDK 10.8) Support
              [kext loaded] com.AmbrosiaSW.AudioSupport (4.1.2 - SDK 10.6) Support
              [not loaded] com.Avid.driver.AvidDX (4.9.2) Support
              [not loaded] com.SafeNet.driver.Sentinel (7.3.0) Support
              [not loaded] com.avid.driver.Avid_SCSI (1.2.0) Support
              [not loaded] com.avid.driver.Avid_SCSI_RBC (1.2.0) Support
              [not loaded] com.digidesign.fwfamily.driver (8.0.4f1) Support
              [not loaded] com.digidesign.mbox2.boot.driver (8.0.4f1) Support
              [not loaded] com.digidesign.mbox2.driver (8.0.4f1) Support
              [kext loaded] com.hzsystems.terminus.driver (4) Support
              [not loaded] com.paceap.kext.PACESupport (5.7.2b8) Support
              [not loaded] com.paceap.kext.PACESupport2 (5.7.2b8) Support
              [not loaded] com.paceap.kext.pacesupport.leopard (5.7.2b8) Support
              [not loaded] com.paceap.kext.pacesupport.master (5.7.2b8) Support
              [not loaded] com.paceap.kext.pacesupport.panther (5.7.2b8) Support
              [kext loaded] com.paceap.kext.pacesupport.snowleopard (5.7.2b8) Support
              [not loaded] com.paceap.kext.pacesupport.tiger (5.7.2b8) Support
              [not loaded] com.roxio.BluRaySupport (1.1.6) Support
              [not loaded] com.roxio.TDIXController (2.0) Support
              [not loaded] com.symantec.kext.SymAPComm (12.6f28 - SDK 10.6) Support
              [kext loaded] com.symantec.kext.internetSecurity (5.3f6) Support
              [kext loaded] com.symantec.kext.ips (3.9.1f10) Support
              [not loaded] com.wdc.driver.1394HP (1.0.11 - SDK 10.4) Support
              [not loaded] com.wdc.driver.1394_64HP (1.0.1 - SDK 10.6) Support
              [not loaded] com.wdc.driver.USBHP (1.0.11) Support
              [not loaded] com.wdc.driver.USB_64HP (1.0.0 - SDK 10.6) Support
    Startup Items:
              Digidesign Mbox 2: Path: /Library/StartupItems/Digidesign Mbox 2
              DigidesignLoader: Path: /Library/StartupItems/DigidesignLoader
              PACESupport: Path: /Library/StartupItems/PACESupport
    Launch Daemons:
              [running] at.obdev.littlesnitchd.plist Support
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.adobe.SwitchBoard.plist Support
              [loaded] com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist Support
              [running] com.autodesk.backburner_manager.plist Support
              [running] com.autodesk.backburner_server.plist Support
              [failed] com.autodesk.backburner_start.plist Support
              [running] com.digidesign.fwfamily.helper.plist Support
              [running] com.micromat.CheckmateIdleDaemon.plist Support
              [not loaded] com.micromat.CheckmateWorkerDaemon.plist Support
              [running] com.micromat.TechToolProDaemon.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [loaded] com.symantec.errorreporter-periodic.plist Support
              [loaded] com.symantec.liveupdate.daemon.ondemand.plist Support
              [loaded] com.symantec.liveupdate.daemon.plist Support
              [not loaded] com.symantec.nav.migrateqtf.plist Support
              [running] com.symantec.sharedsettings.plist Support
              [running] com.symantec.symdaemon.plist Support
              [loaded] PACESupport.plist Support
    Launch Agents:
              [running] at.obdev.LittleSnitchUIAgent.plist Support
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.adobe.CS5ServiceManager.plist Support
              [running] com.micromat.CheckmateAgent.plist Support
              [running] com.micromat.TechToolProAgent.plist Support
              [loaded] com.symantec.errorreporter-periodicagent.plist Support
              [running] com.symantec.uiagent.application.plist Support
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist Support
              [failed] com.adobe.ARM.[...].plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] ws.agile.1PasswordAgent.plist Support
    User Login Items:
              AdobeResourceSynchronizer
              1Password.agilekeychain
              Dropbox
              Google Drive
              DragThing
    Internet Plug-ins:
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
              FlashPlayer-10.6: Version: 14.0.0.125 - SDK 10.6 Support
              AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
              Flash Player: Version: 14.0.0.125 - SDK 10.6 Support
              AdobePDFViewer: Version: 10.0.0 Support
              Default Browser: Version: 537 - SDK 10.9
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.2.3 - SDK 10.6 Support
              Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0
    Safari Extensions:
              Ebay Shopping Assistant: Version: 1.1
              DoNotTrackMe: Online Privacy Protection: Version: 3.1.1064
              Amazon Shopping Assistant: Version: 1.1
              Video Converter: Version: 4.0.0
              Slick Savings: Version: 2.0
              Searchme: Version: 1.3
              1Password: Version: 4.2.1
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              Google Earth Web Plug-in: Version: 7.1 Support
    3rd Party Preference Panes:
              A Better Finder Preferences  Support
              Default Folder X  Support
              Flash Player  Support
              MenuMeters  Support
              Norton\nQuickMenu  Support
              TechTool Protection  Support
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: NO - Auto backup turned off
              Volumes being backed up:
                        Macintosh HD: Disk size: 919.42 GB Disk used: 862.81 GB
              Destinations:
                        TimeMACHINE 2013 [Local] (Last used)
                        Total size: 2 
                        Total number of backups: 36
                        Oldest backup: 2013-04-27 17:05:57 +0000
                        Last backup: 2014-05-02 19:20:57 +0000
                        Size of backup disk: Too small
                                  Backup size 2  < (Disk used 862.81 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   2%          WindowServer
                   1%          1Password 4
                   1%          PluginProcess
                   0%          fontd
                   0%          SystemUIServer
    Top Processes by Memory:
              246 MB          mds_stores
              229 MB          Safari
              213 MB          com.apple.IconServicesAgent
              115 MB          Dropbox
              98 MB          Finder
    Virtual Memory Information:
              10.65 GB          Free RAM
              3.14 GB          Active RAM
              762 MB          Inactive RAM
              1.46 GB          Wired RAM
              519 MB          Page-ins
              0 B          Page-outs
    Thanks for reading this far... ;-)
    joe holly

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the behest of a stranger. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts 51 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports 'com.autodesk.AutoCad com.evenflow.dropbox com.google.GoogleDrive' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 ` route -n get default|awk '/e:/{print $2}' ` 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n\t(%s)\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;5p;6p;8p;12p;' ' {sub(/^ +/,"")};NR==6;NR==13&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/root/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1000) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/d;/(etc|Preferences)\//s/^\.\/[^/]+//p;' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| ","||kMDItem'${p[35]}'=");sub("^.."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[9]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/ { next;} /%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]" "$1;b=b$1;} END { if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|POSIX sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ +B/{ s/.+= |(-[0-9]+)?\.s.+//g;p;} ' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / /{$0="'"${p[28]}"'"};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' 's/0/Off/p' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil PlistBuddy whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '-c Print /L*/P*/loginw*' '-c Print L*/P*/*loginit*' '-c Print L*/Saf*/*/E*.plist' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' '-c Print\ :'${p[35]}' 2>&1' '-c Print\ :Label 2>&1' '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'Beac|caug|dead[^bl]|FAIL|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,[lps]*.conf,pam.d,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}* .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' -i4TCP:0-1023 com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' );N1=${#c2[@]};for j in {0..8};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;A2 0 $((N1+1)) 2;C0;A1 0 $N1 1;C0;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A1 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D23 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D23 14 2 48 43;D13 4 5 32 1;D22 4 4 50 0;D13 14 3 49 5;D12 26 48 59 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-  
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with "Model Identifier." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Many-many mapping error

    I have 3 tables person, document, and a table that links them called
    person_document. I want to create a Person and Document, associate them
    with each other and save them. I have tried this in many different ways
    but keep getting the error below.
    Thanks,
    Doug
    KODO User Exception The mapping for field
    "com.saic.pisces.jdo.Person.personDocuments" is missing information on how
    to link the field's table to its owning class' table, or the given
    information is invalid.
    kodo.jdbc.meta.MappingInfoNotFoundException: The mapping for field
    "com.saic.pisces.jdo.Person.personDocuments" is missing information on how
    to link the field's table to its owning class' table, or the given
    information is invalid.
    at kodo.jdbc.meta.Mappings.invalidMapping(Mappings.java:134)
    at kodo.jdbc.meta.Mappings.invalidMapping(Mappings.java:120)
    at
    kodo.jdbc.meta.ReferenceFieldMapping.fromMappingInfo(ReferenceFieldMapping.java:109)
    at
    kodo.jdbc.meta.ContainerFieldMapping.fromMappingInfo(ContainerFieldMapping.java:97)
    at
    kodo.jdbc.meta.AbstractCollectionFieldMapping.fromMappingInfo(AbstractCollectionFieldMapping.java:106)
    at
    kodo.jdbc.meta.ManyToManyFieldMapping.fromMappingInfo(ManyToManyFieldMapping.java:79)
    at
    kodo.jdbc.meta.RuntimeMappingProvider.getFieldMapping(RuntimeMappingProvider.java:157)
    at
    kodo.jdbc.meta.MappingRepository.getFieldMapping(MappingRepository.java:422)
    at
    kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:911)
    at
    kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:891)
    at
    kodo.jdbc.meta.AbstractClassMapping.getMappings(AbstractClassMapping.java:854)
    at
    kodo.jdbc.meta.AbstractClassMapping.getDeclaredFieldMappings(AbstractClassMapping.java:617)
    at
    kodo.jdbc.meta.AbstractClassMapping.resolve(AbstractClassMapping.java:758)
    at
    kodo.jdbc.meta.BaseClassMapping.resolve(BaseClassMapping.java:323)
    at
    kodo.jdbc.meta.MappingRepository.resolve(MappingRepository.java:390)
    at
    kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:308)
    at
    kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:162)
    at
    kodo.jdbc.meta.MappingRepository.getMetaData(MappingRepository.java:150)
    at
    kodo.runtime.KodoHelper.getSequenceGenerator(KodoHelper.java:340)
    at com.saic.pisces.jdo.JDOTest.<init>(JDOTest.java:39)
    at com.saic.pisces.jdo.JDOTest.main(JDOTest.java:25)
    person
    person_id
    height
    weight
    etc...
    document
    document_id
    type
    number
    etc...
    person_document
    person_id
    document_id
    My Person class has:
    private long personId;
    private double height;
    private double weight;
    private Set personDocuments = new HashSet();
    Document class:
    private long documentId;
    private DocumentType documentType;
    private String documentNumber;
    private Set personDocuments = new HashSet();
    This is the mapping in package.jdo for the Person class
    <field name="personDocuments">
    <collection element-type="Document"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="many-many">
    <extension vendor-name="kodo" key="inverse-owner"
    value="personDocuments"/>
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.PERSON_DOCUMENT"/>
    <extension vendor-name="kodo" key="personId-ref-column"
    value="PERSON_ID"/>
    <extension vendor-name="kodo" key="documentId-data-column"
    value="DOCUMENT_ID"/>
    </extension>
    </field>
    This is the mapping for the Document class
    <field name="personDocuments">
    <collection element-type="Person"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="many-many">
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.PERSON_DOCUMENT"/>
    <extension vendor-name="kodo" key="documentId-ref-column"
    value="DOCUMENT_ID"/>
    <extension vendor-name="kodo" key="personId-data-column"
    value="PERSON_ID"/>
    </extension>
    </field>

    Marc Prud'hommeaux wrote:
    Doug-
    What is the "documentId-data-column" extension supposed to do? There
    isn't any "data-column" extension in Kodo. Do you mean "element-column"?I found it:
    http://www.solarmetric.com/Support/Newsgroups/news/article.php?id_article=%3C7tpu1d4t0m.fsf%40tmonk.localdomain%3E&grp_id=1
    It may be out of date now, but it is confusing and not clearly documented
    that the options are quite different if you are using application vs
    datastore identity.
    You may want to look at the example for the many-many mapping at:>
    http://solarmetric.com/Software/Documentation/3.1.0RC1/docs/manual.html#many-many
    If this doesn't help solve the problem, can you post your revised
    metadata file?
    In article <[email protected]>, Doug Emerald wrote:
    I corrected the syntax but I still get the same error message when it runs.
    By the way, this is using 3.1RC1 with 1.4.2_04.
    Stephen Kim wrote:
    the Pk-ref-column attributes should be PK_COLUMN.ref-column,
    substituting the proper column for PK_COLUMN, and similarly for
    data-column.
    >>
    Doug Emerald wrote:
    I have 3 tables person, document, and a table that links them called
    person_document. I want to create a Person and Document, associate them
    with each other and save them. I have tried this in many different ways
    but keep getting the error below.
    Thanks,
    Doug
    KODO User Exception The mapping for field
    "com.saic.pisces.jdo.Person.personDocuments" is missing information on
    how
    to link the field's table to its owning class' table, or the given
    information is invalid.
    kodo.jdbc.meta.MappingInfoNotFoundException: The mapping for field
    "com.saic.pisces.jdo.Person.personDocuments" is missing information onhow
    to link the field's table to its owning class' table, or the given
    information is invalid.
    at kodo.jdbc.meta.Mappings.invalidMapping(Mappings.java:134)
    at kodo.jdbc.meta.Mappings.invalidMapping(Mappings.java:120)
    at
    kodo.jdbc.meta.ReferenceFieldMapping.fromMappingInfo(ReferenceFieldMapping.java:109)
    at
    kodo.jdbc.meta.ContainerFieldMapping.fromMappingInfo(ContainerFieldMapping.java:97)
    at
    kodo.jdbc.meta.AbstractCollectionFieldMapping.fromMappingInfo(AbstractCollectionFieldMapping.java:106)
    at
    kodo.jdbc.meta.ManyToManyFieldMapping.fromMappingInfo(ManyToManyFieldMapping.java:79)
    at
    kodo.jdbc.meta.RuntimeMappingProvider.getFieldMapping(RuntimeMappingProvider.java:157)
    at
    kodo.jdbc.meta.MappingRepository.getFieldMapping(MappingRepository.java:422)
    at
    kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:911)
    at
    kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:891)
    at
    kodo.jdbc.meta.AbstractClassMapping.getMappings(AbstractClassMapping.java:854)
    at
    kodo.jdbc.meta.AbstractClassMapping.getDeclaredFieldMappings(AbstractClassMapping.java:617)
    at
    kodo.jdbc.meta.AbstractClassMapping.resolve(AbstractClassMapping.java:758)
    at
    kodo.jdbc.meta.BaseClassMapping.resolve(BaseClassMapping.java:323)
    at
    kodo.jdbc.meta.MappingRepository.resolve(MappingRepository.java:390)
    at
    kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:308)
    at
    kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:162)
    at
    kodo.jdbc.meta.MappingRepository.getMetaData(MappingRepository.java:150)
    at
    kodo.runtime.KodoHelper.getSequenceGenerator(KodoHelper.java:340)
    at com.saic.pisces.jdo.JDOTest.<init>(JDOTest.java:39)
    at com.saic.pisces.jdo.JDOTest.main(JDOTest.java:25)
    person
    person_id
    height
    weight
    etc...
    document
    document_id
    type
    number
    etc...
    person_document
    person_id
    document_id
    My Person class has:
    private long personId;
    private double height;
    private double weight;
    private Set personDocuments = new HashSet();
    Document class:
    private long documentId;
    private DocumentType documentType;
    private String documentNumber;
    private Set personDocuments = new HashSet();
    This is the mapping in package.jdo for the Person class
    <field name="personDocuments">
    <collection element-type="Document"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="many-many">
    <extension vendor-name="kodo" key="inverse-owner"
    value="personDocuments"/>
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.PERSON_DOCUMENT"/>
    <extension vendor-name="kodo" key="personId-ref-column"
    value="PERSON_ID"/>
    <extension vendor-name="kodo"key="documentId-data-column"
    value="DOCUMENT_ID"/>
    </extension>
    </field>
    This is the mapping for the Document class
    <field name="personDocuments">
    <collection element-type="Person"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="many-many">
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.PERSON_DOCUMENT"/>
    <extension vendor-name="kodo"key="documentId-ref-column"
    value="DOCUMENT_ID"/>
    <extension vendor-name="kodo" key="personId-data-column"
    value="PERSON_ID"/>
    </extension>
    </field>
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Error message: "Warning: unresponsive script". Afterward, the system freezes and will then crash. Crash reports have been submitted many, many times without response. I have tried the fore-mentioned solutions with either no results or very bad results

    Error message: "Warning: unresponsive script". Afterward, the system freezes and will then crash. Crash reports have been submitted many, many times without response. I have tried the fore-mentioned solutions with either no results or very bad results which I filed a report but did not receive an answer. The application to block scripts actually worsened the problem and I could not correct the situation for a while (no response from Firefox, at all). I have also been through this procedure without any one contacting me, AT ALL.
    == URL of affected sites ==
    http://http://www.facebook.com (always) and www.YouTube.com (sometimes)

    There does appear to be any support whatsoever from mighty "non caring" FIREFOX & people are getting fed up. We may as well try another system, if they can't be bothered to provide any support for their system, we can't be bothered to use their system.
    Brianeng

  • Inner Join resulting in many, many duplicates

    I ran an Inner Join but it returned many, many duplicates. Any idea why that would occur?
    One Answer from a different thread:
    Because you may be having improper Join condition what has a One to many or a Many to many relationship between the tables. We do not have the data, and hence cannot comment over it. However, since the original issue is resolved, I suggest you close this thread and ask the question in another thread.
    What do I look for to identify an improper join?

    Please don't start another discussion for the same issue.
    Continue on your existing thread where the answers and advice you've already been given can be seen, so that people don't end up giving the same advice you've already had.
    Answers on other thread: Inner Join error
    Locking this thread

  • Many-Many Relation

    I'm using Sun ONE AS 7 for deploying an EJB jar containing several entitys with relations.
    I can use the methods set<Relation> and I can see the new data in the database system, it looks goods even the tables using for the many-many relations.
    But when I use the get<Relation> method and I try to access the Collection that returns that method I always found the next error:
    WARNING: CORE3283: stderr: java.lang.IllegalStateException
    WARNING: CORE3283: stderr:      at com.sun.jdo.spi.persistence.support.ejb.cmp.E
    JBHashSet.assertInTransaction(EJBHashSet.java:352)
    WARNING: CORE3283: stderr:      at com.sun.jdo.spi.persistence.support.ejb.cmp.E
    JBHashSet.iterator(EJBHashSet.java:295)
    ...I've traced the SQL statement executed by the S1AS and that statement works fine, so the problem is not in the DB system.
    Thanks in advance for your help.

    Hello,
    I got the same problem wit a 1:* Relation, but I can't find an error in my Transactions. All of them are marked as required and I use Container Managed Persistence.
    here is my error code:
    Caught an exception:
    java.lang.IllegalStateException
    at com.sun.jdo.spi.persistence.support.ejb.cmp.EJBHashSet.a
    EJBHashSet.java:339)
    at com.sun.jdo.spi.persistence.support.ejb.cmp.EJBHashSet.s
    t.java:192)
    at util.EmployeeDetails.toString(EmployeeDetails.java:142)
    at clients.TimeRecordClient.main(TimeRecordClient.java:28)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Meth
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethod
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Delegati
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.enterprise.util.Utility.invokeApplicationMain(Ut
    5)
    at com.sun.enterprise.appclient.Main.<init>(Main.java:420)
    at com.sun.enterprise.appclient.Main.main(Main.java:92)
    Maybe someone could help me....

  • Many many many contact duplicates

    I've had a severe problem with Apple creating many, many duplicates (734 to be exact) of a single contact on my iPhone.  Other people are having this problem as well.  Although my computer Address Book only listed the contact once, my iPhone had a ridiculous amount.  iCloud syncing didn't work, iTunes synicing didn't work.  My husband was able to fix this problem and here's what he did. 
    BEFORE you do anything though, make sure all your contacts are on the computer in your Address Book or else they'll all get erased. 
    On your iPhone & your Apple computer uncheck the "Sync with iCloud" for contacts only (selecting the "remove/delete from phone" when it asks what you want to do after un-syncing). 
    Go into your computer address book and delete the one(s) that's repeating. 
    Use a web browser and log into iCloud and delete all the repeating ones (delete every one of the duplicates, don't even leave one of them or it will start creating many, many multiples). 
    Wait a moment and make sure the contacts don't magically start reappearing again (if they do, then good luck!)
    Check and make sure you have no synced contacts on your phone. 
    Go back to both your phone and your computer and resync with iCloud (now the contacts you saved on your computer will go onto your phone).
    Then you *should* be able to add the one contact that was the crazy repeater. 
    I hope this works for any of you that have had this problem, and hopefully your contacts don't get erased either!  Good luck!

    If you are syncing contacts with iCloud you should not be trying to sync contacts with iTunes too, if that's what you're doing.  This may help you resolve your problem with duplicates: http://support.apple.com/kb/TS4147.

  • Every time there's a power cut or I turn off my router, my Macbook doesn't detect the network and doesn't accept the password. Finally, after many, many attempts at solving with 'diagnostics', rebooting...the 'network changes' detected message shows.

    How can I get it to look for a network change - or find the change immediately - and speed up the process? Is there really a change? This has really frustrated me many, many times.
    I'm using 10.6.8 and see there's an update that supposedly helps airport problems but that people hatve problems with it. I'm having enough problems without those too!
    Thank you for any ideas.

    Take your battery out and reset your PMU.
    http://docs.info.apple.com/article.html?artnum=303319
    Next time you shut down, wait until the computer is totally shut down -- i.e., make sure you don't hear your fan running, the screen is black and that the light is out on the front of the computer -- before you close the lid.
    I had that exact thing happen once, and since I done the above, it's never happened since.
    -Bmer
    Mac Owners Support Group
    Join Us @ MacOSG.com
    ITMS: MacOSG Podcast
     An Apple User Group 

  • Aperture 3.4.4 quit unexpectedly (reinstalled many many times)

    Opened Aperture after 3 minutes and it quit, and I have been reinstalled Aperture from the Mac App Store many many times, and the problem does solve.

    No it is not the first time I use Aperture, and I have used the Aperture Library First Aid tools (Repair Permissions, Repair Database and Rebuild Database) as well.
    Process:         Aperture [1455]
    Path:            /Applications/Aperture.app/Contents/MacOS/Aperture
    Identifier:      com.apple.Aperture
    Version:         3.4.4 (3.4.4)
    Build Info:      Aperture-320085000000000~4
    App Item ID:     408981426
    App External ID: 14995585
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [135]
    User ID:         501
    Date/Time:       2013-05-14 20:09:21.626 +0800
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          186274 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  639 sec
    Per-App Crashes Since Last Report:   -2
    Anonymous UUID:                      B6395591-0739-FE04-232F-EAB51851BCE4
    Crashed Thread:  9  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSCFString substringToIndex:]: Range or index out of bounds'
    terminate called throwing an exception
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff888f3b06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8d9bc3f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff888f38dc +[NSException raise:format:] + 204
    3   Foundation                          0x00007fff8d613ee9 -[NSString substringToIndex:] + 97
    4   RedRock                             0x000000010db66994 +[RKFileNamingPolicy fileSafeName:] + 221
    5   RedRock                             0x000000010dd11d89 -[RKVersion(Imaging) proxyWritePath:] + 1214
    6   RedRock                             0x000000010dd11edf -[RKVersion(Imaging) absoluteProxyWritePath:] + 28
    7   RedRock                             0x000000010dd12730 -[RKVersion(Imaging) deletePreviewImage] + 34
    8   RedRock                             0x000000010dcc648f -[RKImageCache renderThumbnailForVersionAddress:force:workOrder:] + 1575
    9   RedRock                             0x000000010dcc6d03 -[RKImageCache renderThumbnailsForVersionAddressHandler:] + 154
    10  ProXTCore                           0x000000010f31bb9c -[XTList makeObjectsPerformSelector:withObject:] + 59
    11  ProXTCore                           0x000000010f31b75a -[XTDistributor distributeMessage:] + 480
    12  ProXTCore                           0x000000010f31b0fa -[XTThread handleMessage:] + 342
    13  ProXTCore                           0x000000010f337fff __42-[XTDispatchMsgQueue triggerDispatchQueue]_block_invoke_0 + 157
    14  libdispatch.dylib                   0x00007fff8b16cf01 _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                   0x00007fff8b1690b6 _dispatch_client_callout + 8
    16  libdispatch.dylib                   0x00007fff8b16a1fa _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                   0x00007fff90dbcd0b _pthread_wqthread + 404
    18  libsystem_c.dylib                   0x00007fff90da71d1 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.AppKit                        0x00007fff8ee0ccdd -[NSThemeFrame _toolbarView] + 1
    1   com.apple.AppKit                        0x00007fff8edd3df8 -[NSThemeFrame _distanceFromToolbarBaseToTitlebar] + 205
    2   com.apple.AppKit                        0x00007fff8edd3c55 -[NSThemeFrame contentRectForFrameRect:styleMask:] + 103
    3   com.apple.prokit                        0x000000010e664f72 -[NSProWindowFrame contentRect] + 113
    4   com.apple.prokit                        0x000000010e671522 -[NSProWindowFrame _resizeIndicatorRect] + 91
    5   com.apple.prokit                        0x000000010e67140f -[NSProWindowFrame resizeCornerRect] + 50
    6   com.apple.prokit                        0x000000010e671620 -[NSProWindowFrame _maxXminYResizeRect] + 29
    7   com.apple.AppKit                        0x00007fff8ee3f090 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 87
    8   com.apple.prokit                        0x000000010e6668ef -[NSProWindowFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 80
    9   com.apple.AppKit                        0x00007fff8ee3ad9d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    10  com.apple.AppKit                        0x00007fff8ee04cc3 -[NSView displayIfNeeded] + 1830
    11  com.apple.AppKit                        0x00007fff8ee041fc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    12  com.apple.AppKit                        0x00007fff8f3cf8f1 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01208 + 46
    13  com.apple.CoreFoundation                0x00007fff888ba417 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    14  com.apple.CoreFoundation                0x00007fff888ba381 __CFRunLoopDoObservers + 369
    15  com.apple.CoreFoundation                0x00007fff888957b8 __CFRunLoopRun + 728
    16  com.apple.CoreFoundation                0x00007fff888950e2 CFRunLoopRunSpecific + 290
    17  com.apple.HIToolbox                     0x00007fff8923ceb4 RunCurrentEventLoopInMode + 209
    18  com.apple.HIToolbox                     0x00007fff8923cc52 ReceiveNextEventCommon + 356
    19  com.apple.HIToolbox                     0x00007fff8923cae3 BlockUntilNextEventMatchingListInMode + 62
    20  com.apple.AppKit                        0x00007fff8ee01563 _DPSNextEvent + 685
    21  com.apple.AppKit                        0x00007fff8ee00e22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    22  com.apple.Aperture                      0x000000010d51f2f9 0x10d0a7000 + 4686585
    23  com.apple.AppKit                        0x00007fff8edf81d3 -[NSApplication run] + 517
    24  com.apple.prokit                        0x000000010e6416c5 NSProApplicationMain + 378
    25  com.apple.Aperture                      0x000000010d0b752e 0x10d0a7000 + 66862
    26  com.apple.Aperture                      0x000000010d0b6e54 0x10d0a7000 + 65108
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff863cfd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8b16bdea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8b16b9ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff863cf6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90dbcf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90dbcd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff863cf0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90dbf023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d674fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff8d674e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010f31ac5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010f319ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff8d649cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff863cf0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90dbf023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d674fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff8d674e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010f31ac5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010f319ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff8d649cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff863cf0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90dbf023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d674fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff8d674e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010f31ac5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010f319ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff8d649cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff863cf0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90dbf023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d674fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff8d674e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010f31ac5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010f319ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff8d649cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff863cf0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90dbf023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d674fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff8d674e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010f31ac5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010f319ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff8d649cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff863cf0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90dbf023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d674fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff8d674e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010f31ac5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010f319ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff8d649cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 9 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff863cf212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff90dbbb54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff90dffdce abort + 143
    3   libc++abi.dylib                         0x00007fff8566d9eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff8566b39a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8d9bc873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff895188fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff8d9bc5de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff8b1690ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff8b16a1fa _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff90dbcd0b _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 10:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib                  0x00007fff863cd686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863ccc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff88890233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff88895916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff888950e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff888a3dd1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff872c92e6 listenOnDelegatePort + 403
    7   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 11:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib                  0x00007fff863cd686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863ccc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff88890233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff88895916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff888950e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff888a3dd1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff872c9781 listenOnNotificationPort + 371
    7   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff863cf6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90dbcf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90dbcd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff863cf6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90dbcf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90dbcd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff863cf6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90dbcf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90dbcd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 15:: Dispatch queue: com.apple.photo.placemanager
    0   libsystem_kernel.dylib                  0x00007fff863cd686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863ccc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff88890233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff88895916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff888950e2 CFRunLoopRunSpecific + 290
    5   com.apple.CFNetwork                     0x00007fff91fb41af CFURLConnectionSendSynchronousRequest + 463
    6   com.apple.Foundation                    0x00007fff8d5d1cd6 +[NSURLConnection sendSynchronousRequest:returningResponse:error:] + 281
    7   com.apple.RedRock                       0x000000010dae4260 +[RKPlaceManager reverseGeocodeLatitude:longitude:] + 478
    8   com.apple.RedRock                       0x000000010dae3c25 -[RKPlaceManager lookupPlacesForLatitude:longitude:incomplete:] + 223
    9   com.apple.RedRock                       0x000000010dae3abf -[RKPlaceManager placesForLatitude:longitude:incomplete:] + 45
    10  com.apple.RedRock                       0x000000010dae39db -[RKPlaceManager geoTagVersion:] + 236
    11  com.apple.RedRock                       0x000000010dae38d5 -[RKPlaceManager geoTagOneVersion] + 269
    12  com.apple.RedRock                       0x000000010dcb4450 -[RKPlaceManager doGeoTagSomeVersions] + 109
    13  libdispatch.dylib                       0x00007fff8b16cf01 _dispatch_call_block_and_release + 15
    14  libdispatch.dylib                       0x00007fff8b1690b6 _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff8b16a47f _dispatch_queue_drain + 235
    16  libdispatch.dylib                       0x00007fff8b16a2f1 _dispatch_queue_invoke + 52
    17  libdispatch.dylib                       0x00007fff8b16a1c3 _dispatch_worker_thread2 + 249
    18  libsystem_c.dylib                       0x00007fff90dbcd0b _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff863cf6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90dbcf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90dbcd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff863cf0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90dbf023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d674fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff8d674e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010f31ac5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010f319ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff8d649cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff863cf6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90dbcf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90dbcd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 19:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff863cd686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863ccc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff88890233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff88895916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff888950e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff8d5ebb66 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff8d649cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 20:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff863cf322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff888d4f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff863cf6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90dbcf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90dbcd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff863cf6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90dbcf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90dbcd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff863cf6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90dbcf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90dbcd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 24:: Dispatch queue: Face Detection
    0   libsystem_kernel.dylib                  0x00007fff863cd6c2 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff8b16dc32 _dispatch_thread_semaphore_wait + 16
    2   libdispatch.dylib                       0x00007fff8b16da92 _dispatch_barrier_sync_f_slow + 188
    3   com.apple.RedRock                       0x000000010dd07d1b -[RKFaceDetectionWorker performJob:forWorkOrder:] + 107
    4   com.apple.proxtcore                     0x000000010f351486 -[XTWorker performJob:] + 111
    5   com.apple.proxtcore                     0x000000010f31b736 -[XTDistributor distributeMessage:] + 444
    6   com.apple.proxtcore                     0x000000010f31b0fa -[XTThread handleMessage:] + 342
    7   com.apple.proxtcore                     0x000000010f337fff __42-[XTDispatchMsgQueue triggerDispatchQueue]_block_invoke_0 + 157
    8   libdispatch.dylib                       0x00007fff8b16cf01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                       0x00007fff8b1690b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff8b16a47f _dispatch_queue_drain + 235
    11  libdispatch.dylib                       0x00007fff8b16a2f1 _dispatch_queue_invoke + 52
    12  libdispatch.dylib                       0x00007fff8b16a1c3 _dispatch_worker_thread2 + 249
    13  libsystem_c.dylib                       0x00007fff90dbcd0b _pthread_wqthread + 404
    14  libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 25:: Dispatch queue: Preview Scheduling
    0   libsystem_kernel.dylib                  0x00007fff863cd6c2 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff8b16dc32 _dispatch_thread_semaphore_wait + 16
    2   libdispatch.dylib                       0x00007fff8b16da92 _dispatch_barrier_sync_f_slow + 188
    3   com.apple.RedRock                       0x000000010dcb8126 -[PreviewSchedulingWorkOrder askDelegateForItemOfInterestSuggesting:] + 341
    4   com.apple.RedRock                       0x000000010dcb8e2b -[PreviewSchedulingWorker performJob:forWorkOrder:] + 597
    5   com.apple.proxtcore                     0x000000010f351486 -[XTWorker performJob:] + 111
    6   com.apple.proxtcore                     0x000000010f31b736 -[XTDistributor distributeMessage:] + 444
    7   com.apple.proxtcore                     0x000000010f31b0fa -[XTThread handleMessage:] + 342
    8   com.apple.proxtcore                     0x000000010f337fff __42-[XTDispatchMsgQueue triggerDispatchQueue]_block_invoke_0 + 157
    9   libdispatch.dylib                       0x00007fff8b16cf01 _dispatch_call_block_and_release + 15
    10  libdispatch.dylib                       0x00007fff8b1690b6 _dispatch_client_callout + 8
    11  libdispatch.dylib                       0x00007fff8b16a47f _dispatch_queue_drain + 235
    12  libdispatch.dylib                       0x00007fff8b16a2f1 _dispatch_queue_invoke + 52
    13  libdispatch.dylib                       0x00007fff8b16a1c3 _dispatch_worker_thread2 + 249
    14  libsystem_c.dylib                       0x00007fff90dbcd0b _pthread_wqthread + 404
    15  libsystem_c.dylib                       0x00007fff90da71d1 start_wqthread + 13
    Thread 26:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff863cf386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff90e44800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff90e44717 usleep + 54
    3   com.apple.AppKit                        0x00007fff8efe6868 -[NSUIHeartBeat _heartBeatThread:] + 543
    4   com.apple.Foundation                    0x00007fff8d649cd2 __NSThread__main__ + 1345
    5   libsystem_c.dylib                       0x00007fff90dba7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff90da71e1 thread_start + 13
    Thread 9 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x000000011beafcd8  rdx: 0x0000000000000000
      rdi: 0x000000000000aa07  rsi: 0x0000000000000006  rbp: 0x000000011beafd00  rsp: 0x000000011beafcd8
       r8: 0x00007fff76be8278   r9: 0x0000000000000015  r10: 0x0000000030000000  r11: 0x0000000000000206
      r12: 0x000000011beafe60  r13: 0x00007fff75f75d48  r14: 0x000000011beb0000  r15: 0x000000011beafd40
      rip: 0x00007fff863cf212  rfl: 0x0000000000000206  cr2: 0x00007fff76be1ff0
    Logical CPU: 0
    Binary Images:
           0x10d0a7000 -        0x10d804ff7  com.apple.Aperture (3.4.4 - 3.4.4) <7C43FF75-DA6F-3613-AF60-ACAFBB73D673> /Applications/Aperture.app/Contents/MacOS/Aperture
           0x10da28000 -        0x10da31ff7  com.apple.PhotoFoundation (1.0 - 20.12) <9E3EA726-0AE7-3A40-AF03-EA7BDF21C099> /Applications/Aperture.app/Contents/Frameworks/PhotoFoundation.framework/Versio ns/A/PhotoFoundation
           0x10daa9000 -        0x10e007fff  com.apple.RedRock (1.9.4 - 321.1) <EAD3BDC5-3A3E-3246-B69F-DB2E39695403> /Applications/Aperture.app/Contents/Frameworks/RedRock.framework/Versions/A/Red Rock
           0x10e33d000 -        0x10e3c0ff7  com.apple.iLifePageLayoutCore (1.0 - 210.38) <BC05B804-298B-38CD-9647-1CDAD4F714E8> /Applications/Aperture.app/Contents/Frameworks/iLifePageLayoutCore.framework/Ve rsions/A/iLifePageLayoutCore
           0x10e41f000 -        0x10e424ff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <9D62897F-2817-3C68-8EDF-A52539B11EE7> /Applications/Aperture.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fr amework/Versions/A/iLifePhotoStreamConfiguration
           0x10e432000 -        0x10e463fff  com.apple.iLifeAssetManagement (2.7 - 45.19) <EBF43BAB-B1EF-3A26-8C17-F5A8AD4F1923> /Applications/Aperture.app/Contents/Frameworks/iLifeAssetManagement.framework/V ersions/A/iLifeAssetManagement
           0x10e498000 -        0x10e4a5fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <EA624F78-C441-3514-9A77-362F96B84A94> /Applications/Aperture.app/Contents/Frameworks/AccountConfigurationPlugin.frame work/Versions/A/AccountConfigurationPlugin
           0x10e4b8000 -        0x10e55bff7  com.apple.MobileMe (13 - 1.0.4) <78787555-A65F-3F23-8473-E9CEBCD14BF3> /Applications/Aperture.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mo bileMe
           0x10e5d9000 -        0x10e5e6ff7  com.apple.PluginManager (1.7.6 - 55) <9C4EFFC0-1CDC-360B-9294-57E710B2912A> /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
           0x10e5f9000 -        0x10e60afff  com.apple.AERegistration (1.2 - 401) <17EFD8F0-87B5-3189-9FDA-4510279D5B35> /Applications/Aperture.app/Contents/Frameworks/AERegistration.framework/Version s/A/AERegistration
           0x10e623000 -        0x10e899ff7  com.apple.prokit (7.3.2 - 1944.10) <41FA1781-64AA-37C2-8CBF-9D72CFD705C0> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
           0x10ea35000 -        0x10edd9fff  com.apple.iLifeSlideshow (3.1 - 1151.4) <6AE8C8C0-9B04-3AA6-9600-F536F8104B64> /Applications/Aperture.app/Contents/Frameworks/iLifeSlideshow.framework/Version s/A/iLifeSlideshow
           0x10ef5c000 -        0x10ef73ff7  com.apple.iLifeFaceRecognition (1.0 - 30.11) <097EDA03-9287-358F-9962-B8009A676610> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/iLifeFaceRecognition
           0x10ef88000 -        0x10efc1fff  com.apple.fayray.PrintServices (920121212 - 11.7) <DC591C90-2028-3CC9-8B99-0E631160D751> /Applications/Aperture.app/Contents/Frameworks/PrintServices.framework/Versions /A/PrintServices
           0x10effa000 -        0x10f02eff7  com.apple.ProUtils (1.1 - 220.17) <8768EBB7-58BE-3F75-914E-DA488BEAA828> /Applications/Aperture.app/Contents/Frameworks/ProUtils.framework/Versions/A/Pr oUtils
           0x10f04d000 -        0x10f246ff7  com.apple.geode (1.5.3 - 280.22) <6C000034-D863-3022-A36D-3754EDE789F5> /Applications/Aperture.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
           0x10f316000 -        0x10f391fff  com.apple.proxtcore (1.4.1 - 270.13) <A2D53FDF-C510-3A57-9C21-20AE9B631AFD> /Applications/Aperture.app/Contents/Frameworks/ProXTCore.framework/Versions/A/P roXTCore
           0x10f3fc000 -        0x10f517fff  com.apple.iLifeSQLAccess (1.7.1 - 70.30) <7D154ED6-7BD3-345C-9BC1-614017DAB6C6> /Applications/Aperture.app/Contents/Frameworks/iLifeSQLAccess.framework/Version s/A/iLifeSQLAccess
           0x10f582000 -        0x10f584fff  com.apple.ExceptionHandling (1.5 - 10) <47FF83ED-0C07-308C-A375-2A2189DB1056> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
           0x10f58e000 -        0x10f5b6fff  com.apple.iPhoto.Tellus (1.3 - 90.10) <E124C420-0AE4-36BB-98E0-A38D2B280F11> /Applications/Aperture.app/Contents/Frameworks/Tellus.framework/Versions/A/Tell us
           0x10f5df000 -        0x10f608fff  com.apple.iPhoto.Tessera (1.1 - 90.10) <6252DE02-ED5D-364B-8DAD-E67917478A86> /Applications/Aperture.app/Contents/Frameworks/Tessera.framework/Versions/A/Tes sera
           0x10f626000 -        0x10f62eff7  com.apple.AEProfiling (1.2 - 23) <AF1D815F-B5F7-316B-91C1-9C4FCAF13BBF> /Applications/Aperture.app/Contents/Frameworks/AEProfiling.framework/Versions/A /AEProfiling
           0x10f63c000 -        0x10f63ffff  com.apple.LibraryRepair (1.0 - 1) <14701E47-E2B2-309F-A04E-96D260E83B54> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
           0x10f648000 -        0x10f64afff +eOkaoCom.dylib (1) <393F340C-3AD1-C89B-6C37-9D8ABF4BFFD9> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoCom.dylib
           0x10f64f000 -        0x10f676ff2 +eOkaoPt.dylib (1) <E6500FB8-157F-57B5-FE25-2A3A1CB3574C> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoPt.dylib
           0x10f67f000 -        0x10f6b4fe7 +eOkaoDt.dylib (1) <7A74253D-8930-6FF1-B513-0929C4E111A2> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoDt.dylib
           0x10f6c1000 -        0x10f829fef +eOkaoFr.dylib (1) <510E837E-135A-92C8-9AC0-465691EA43D2> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoFr.dylib
           0x10f82e000 -        0x10f889fff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <7E92057A-2C05-31D1-A7AC-8323606AF300> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
           0x116f15000 -        0x116f3eff7  com.apple.prokit.LionPanels (7.3.2 - 1944.10) <0203CE91-E926-32CC-80A3-94D8C1C558A1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
           0x116f88000 -        0x117146fff  GLEngine (8.7.25) <8398B57C-EE2D-3006-940C-CECE8E719D3B> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11717d000 -        0x1172edfff  libGLProgrammability.dylib (8.7.25) <EE2DD8AF-C6C3-303D-976E-87B4AABF8371> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x117325000 -        0x117332fff  libGPUSupport.dylib (8.7.25) <F884DCD6-8234-3D23-BEC6-4EC4CE5101EF> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x1173bc000 -        0x117753ff7  com.apple.driver.AppleIntelHDGraphicsGLDriver (8.10.44 - 8.1.0) <B42A1921-2D3F-33DE-B3A0-5E597CA7C2F0> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
           0x11787f000 -        0x1178aafff  GLRendererFloat (8.7.25) <BB54593F-07F0-392A-8993-CA844F4A20E8> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x1178b3000 -        0x1178bcfe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x117d65000 -        0x117d6dfff  com.apple.Aperture.TaskView (1.1 - 1.0) <86BD1732-359D-3A6F-B3A6-D3049B8F5DBD> /Applications/Aperture.app/Contents/PlugIns/TaskView.bundle/Contents/MacOS/Task View
           0x119195000 -        0x11919aff7  libFontRegistryUI.dylib (100) <9F172961-DB6F-3A82-9F90-28F9A233F755> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x119208000 -        0x11920dff7  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <051DB4A3-7D17-3289-9328-77D5B5512EC2> /Applications/Aperture.app/Contents/PlugIns/Facebook.accountconfigplugin/Conten ts/MacOS/Facebook
           0x119215000 -        0x119219fff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <556E3A54-B1CA-3CD0-A439-AB46B45A4BE0> /Applications/Aperture.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents /MacOS/Flickr
           0x11b64b000 -        0x11b704ff7  ColorSyncDeprecated.dylib (400) <7CE58F6E-D2C8-39FB-8EE0-28CC6EC6D04F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x11b768000 -        0x11b770fff  com.apple.proapps.mrcheckpro (1.4 - 397) <DEB9E6D4-E4A9-3F32-8477-C9AD48C37A69> /Applications/Aperture.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/ MRCheckPro
           0x11c065000 -        0x11c06bff7  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <FDCA4A8F-C649-365F-8FE5-22418FB03EE2> /Applications/Aperture.app/Contents/PlugIns/MobileMe.accountconfigplugin/Conten ts/MacOS/MobileMe
           0x11c556000 -        0x11c57efff  com.apple.iPhoto.FacebookPublisher (1.2 - 1.2) <91BFD72D-C43A-38F3-8038-7D845A679E79> /Applications/Aperture.app/Contents/PlugIns/FacebookPublisher.publisher/Content s/MacOS/FacebookPublisher
           0x11c59e000 -        0x11c5beff7  com.apple.iPhoto.FlickrPublisher (1.2 - 1.2) <7B77737F-75F5-371C-AA23-B855A4D0935E> /Applications/Aperture.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/ MacOS/FlickrPublisher
           0x11c5d8000 -        0x11c60dff7  com.apple.iPhoto.MobileMePublisher (1.2 - 1.2) <E74B9FD4-6162-352D-9010-0C4E5575AC37> /Applications/Aperture.app/Contents/PlugIns/MobileMePublisher.publisher/Content s/MacOS/MobileMePublisher
           0x11c633000 -        0x11c649fff  com.apple.iPhoto.SharedPhotoStreamPublisher (1.0 - 1.0) <5AECD4B4-26E6-3C43-A17A-913A5D2C7A8C> /Applications/Aperture.app/Contents/PlugIns/SharedPhotoStreamPublisher.publishe r/Contents/MacOS/SharedPhotoStreamPublisher
           0x11d29e000 -        0x11d29fffb +cl_kernels (???) <3DEBD126-B4E5-489A-98F2-C165A669C527> cl_kernels
           0x11d2ac000 -        0x11d2acff9 +cl_kernels (???) <67974FC7-6E71-4CCF-BEBA-8CA52CAFFED1> cl_kernels
           0x11d2ae000 -        0x11d348ff7  unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x200000000 -        0x20092dff7  com.apple.GeForceGLDriver (8.10.44 - 8.1.0) <3851C869-C1CF-3EFE-A08C-025318833871> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff6cca7000 -     0x7fff6ccdb93f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff85413000 -     0x7fff8543afff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8543b000 -     0x7fff855e9fff  com.apple.QuartzCore (1.8 - 304.2) <234EABE1-067C-3DAE-BEAC-674526E232C2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff855ea000 -     0x7fff85620fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff85621000 -     0x7fff85669fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff8566a000 -     0x7fff8568fff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff85690000 -     0x7fff85710ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff85711000 -     0x7fff85726fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff85727000 -     0x7fff860b76ff  com.apple.CoreGraphics (1.600.0 - 331.0.4) <4953961C-96DC-39D7-ADF5-B767F2A7E4E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff860b8000 -     0x7fff860d9fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff860da000 -     0x7fff860e8ff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff860e9000 -     0x7fff8613aff7  com.apple.iCalendar (6.0 - 126.5) <3C743E01-70DB-341C-89EC-13B5EA70EEE2> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff8613b000 -     0x7fff86148fff  com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff86149000 -     0x7fff86150fff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff86151000 -     0x7fff8626afff  com.apple.ImageIO.framework (3.2.0 - 849) <C52AED41-A7C2-300B-91FA-5AF73718D243> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8626b000 -     0x7fff863bcfff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <C680EE1A-B4ED-3E77-A08C-DC47922ACA33> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff863bd000 -     0x7fff863d8ff7  libsystem_kernel.dylib (2050.22.13) <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
        0x7fff863d9000 -     0x7fff863ebff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff863ec000 -     0x7fff863f4fff  com.apple.AOSNotification (1.7.0 - 636.3) <C96C3AB4-BF49-3DB7-9E9B-934CD579F63B> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff863f5000 -     0x7fff86553fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff86554000 -     0x7fff86586fff  com.apple.framework.Admin (12.0 - 12.0) <21E02DE3-B255-3A55-8F55-7FC9EE864C06> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff86913000 -     0x7fff86b93ff7  com.apple.AOSKit (1.05 - 152.2) <43361229-45F3-3946-A11A-CC0FF2129F06> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff86b94000 -     0x7fff86bd7ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff86bd8000 -     0x7fff86bf3ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff86bf4000 -     0x7fff86df4fff  libicucore.A.dylib (491.11.2) <FD6282D8-DF3F-3842-8C2E-CF478D2B9669> /usr/lib/libicucore.A.dylib
        0x7fff86df5000 -     0x7fff86e01fff  libCSync.A.dylib (331.0.4) <C7043BB7-284D-3B9F-A5CB-78ADE691B2D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff86e02000 -     0x7fff86e16fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff86e17000 -     0x7fff87072ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff87073000 -     0x7fff870aefff  com.apple.LDAPFramework (2.4.28 - 194.5) <67FBDB29-3B9F-309A-BA7C-AA5921D9A4FB> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff870af000 -     0x7fff870b2ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff870b3000 -     0x7fff870bcff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff87101000 -     0x7fff8719cfff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8719d000 -     0x7fff871c9fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff871ca000 -     0x7fff87238fff  com.apple.framework.IOKit (2.0.1 - 755.22.5) <1547DA6F-9793-30A2-8E92-7368DE84D46C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff87239000 -     0x7fff87240fff  libGFXShared.dylib (8.7.25) <869580B2-39CB-30C3-B76E-73BB4894B6B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff872a1000 -     0x7fff872adfff  com.apple.CrashReporterSupport (10.8.3 - 417) <48EDDDF3-5720-39D6-B51F-D9AFB93327B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff872ae000 -     0x7fff872b4ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff872b5000 -     0x7fff87426ff7  com.apple.QTKit (7.7.1 - 2599.24) <A2153722-268B-3293-B9E3-CB59273CDE41> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff87427000 -     0x7fff87436ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff87437000 -     0x7fff87441fff  libcsfde.dylib (296.16) <DE03E28D-7979-3C31-9F46-2A7337CE0DBA> /usr/lib/libcsfde.dylib
        0x7fff87442000 -     0x7fff8746efff  com.apple.framework.Apple80211 (8.3.2 - 832.18.1) <5D601780-9AD9-31C9-9AB5-716D8634CB78> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff87477000 -     0x7fff87479fff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8747a000 -     0x7fff87491fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff874a3000 -     0x7fff874a9fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff87538000 -     0x7fff875a7fff  com.apple.WhitePagesFramework (10.7.0 - 141.0) <65B30FD8-DEC0-31D4-8E7F-CBCB987D7A48> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff875f0000 -     0x7fff87dd5fff  libclh.dylib (4.0.3 - 4.0.3) <4562B69C-9097-352B-A179-6E7017618562> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
        0x7fff87dd6000 -     0x7fff87e25ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff87e37000 -     0x7fff87e37fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff87e4f000 -     0x7fff87e5afff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff87e5b000 -     0x7fff87eb8fff  com.apple.ExchangeWebServices (3.0 - 157) <58BFD72E-27F3-3F22-A421-B883FACA0E19> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff87eb9000 -     0x7fff87ebdfff  libCGXType.A.dylib (331.0.4) <251D4D2D-92B9-3D56-B348-CD67397F71FE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff87ebe000 -     0x7fff87f0dff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff87f0e000 -     0x7fff87fcbff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff87fcc000 -     0x7fff8806aff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8806b000 -     0x7fff88072fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff88073000 -     0x7fff88074fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8812e000 -     0x7fff8824efff  com.apple.desktopservices (1.7.3 - 1.7.3) <707F77D2-EC0E-3431-840F-B984BD7ABDD6> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8824f000 -     0x7fff8824ffff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff88302000 -     0x7fff88306fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff88357000 -     0x7fff88393fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff88394000 -     0x7fff883a1ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff883a2000 -     0x7fff883e2ff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff883e3000 -     0x7fff8840aff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8840b000 -     0x7fff88847fff  com.apple.VideoToolbox (1.0 - 926.87) <7319477A-4A3D-3233-AAD1-31F9C9429DA7> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff88848000 -     0x7fff88856fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff88859000 -     0x7fff88859fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8885a000 -     0x7fff8885ffff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff88860000 -     0x7fff88a4aff7  com.apple.CoreFoundation (6.8 - 744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff88a4b000 -     0x7fff88a50fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff88a51000 -     0x7fff88b2bfff  com.apple.backup.framework (1.4.2 - 1.4.2) <0B557393-CD2A-3076-BED2-F28D02E1EC1D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff88b7e000 -     0x7fff88b88fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff88b93000 -     0x7fff88f8cfe7  com.apple.MediaToolbox (1.0 - 926.87) <8346DAFC-88E5-350E-90E1-C98B180488C2> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff891dd000 -     0x7fff8950dfff  com.apple.HIToolbox (2.0 - 62

  • Fireworks CS6 opens with many many files, and then stops. time after time. What to do now?

    Suddenly my Fireworks CS 6 will not open, that is, it opens and then starts to open many many .png files I worked on before (really I think it opens more then 40 + very fast and then the program quites with an error.
    Before I never had problems with this software and I need it because of a deadline (of course)

    Suddenly my Fireworks CS 6 will not open, that is, it opens and then starts to open many many .png files I worked on before (really I think it opens more then 40 + very fast and then the program quites with an error.
    Before I never had problems with this software and I need it because of a deadline (of course)

  • Collection content and many-many relation

    I have a collection mapped on an intermediate table with the many-many
    system.
    when I read the content of the collection, I find all the expected entries
    but also container of the collection.
    for example, if a person contains a collection of cars, in the collection I
    find all the cars of the person but also the person.
    Is there any explanation for that ?

    First of all, I do not understand how it could be possible for a JDO
    implementation to provide a heterogeneous collection whereas it is defined
    in the jdo file that it is not heterogeneous.
    In this case, I've defined in the metadata that the collection contains Cars
    and Kodo return Cars and Persons.
    My database is fully consistent and I do not understand how it could not be
    consistent in such cases.
    The same application is also used on other JDO implementations ( LiDO ) for
    my tests and everything works well.
    The differences between the application with LiDO and Kodo in this
    application are only located in the settings and the mapping.
    Here is my mapping, I think my setting are not involved in the problem :
    <class name="Car">
    <jdbc-class-map type="base" table="CARS"/>
    <field name="id">
    <jdbc-field-map type="value" column="ID"/>
    </field>
    <field name="name">
    <jdbc-field-map type="value" column="NAME"/>
    </field>
    </class>
    <class name="Person">
    <jdbc-class-map type="base" table="PERSONS"/>
    <field name="cars">
    <jdbc-field-map type="many-many" element-column.ID="CAR_ID"
    ref-column.ID="PERS_ID" table="PERS_CARS"/>
    </field>
    <field name="id">
    <jdbc-field-map type="value" column="ID"/>
    </field>
    </class>
    Unfortunately it is not possible to send my application nor to invest time
    creating test-cases.
    If you have some test-cases, I would be please to compare them to my
    application.
    Thx
    "Abe White" <[email protected]> a __crit dans le message de
    news:[email protected]...
    Do the owner class and the collection's element type share a common
    ancestor? If so, then have you checked to be sure that the database's
    data doesn't have the owner in the collection, and Kodo isn't just
    reading the data as-is?
    Either way, I would check your application logic first. We have lots
    and lots of customers using m-m relations, and no one has ever reported
    an error like this. It also hasn't shown up in any of our internal m-m
    tests. So my first guesses are that either your database's data has the
    owner within the collection, or you are putting the owner in the
    collection in your application logic.
    If you find that this is not the case and can reproduce the problem,
    please send your test case to [email protected] and we'll be
    happy to check it out.

  • Playback speed in Sample Editor window many, many times faster than track (at correct speed) in arrange area. How do I sync Sample Editor playback speed to correct speed/tempo in arrange area? Track is spoken word.

    Playback speed in Sample Editor window many, many times faster than track (at correct speed) in arrange area. How do I sync Sample Editor playback speed to correct speed/tempo in arrange area? Track is spoken word. Sample Editor playback sounds like Alvin on a meth binge. Spoken phrase is generated from Textspeech. Textspeech can export files as WAV files or MP3 files. Perhaps a clue?:   When exported Textspeech WAV file is dragged and dropped into track in arrange area of new project, it exhibits same supersonic speed. When Textspeech file is exported as MP3 file and dragged and dropped in arrange area track, it plays at correct speed.

    Thanks Erik,
    If nothing else, this huge list of updates and fixes, shows clearly that the Logic Dev team is working hard on fixing and improving LPX to a major degree.... and from the list of fixes done.. show they do read the bug reports submitted!
    As an aside....
    I recall how all the 'naysayers' prior to LPX (and in some cases, since...)  were proclaiming how Logic was dead, the team was being disbanded, we won't see any further development, the Dev team doesn't listen or care... and so on....... I wonder where those people are now?

Maybe you are looking for

  • Pictures no longer recognized by iPhoto

    My wife has an old iBook G4 that she used for many years.  During that time she imported hundreds of photos into iPhoto.  Recently, she bought a new MacBook Pro, and I transferred her data from the iBook to it.  We noticed shortly after the transfer

  • HT3775 Is the Codec listed adjacent to the file format the Codec used with that file format?

    Is the Codec listed adjacent to the file format the Codec used with that file format?

  • JTable custom cell editor focus problem

    Hi I have created a JTable (using Java 1.4.2) and have three cell Editors, one is a JFormattedTextField, one is a JComboBox and one is a custom cell editor. When I press tab I can select the cell with the JFormattedTextField and when I start typing t

  • CRM 5.0 Agent Inbox - Unable to open a certain email

    Hi guys Theres one email under our inbox that we're not able to edit or interact with When I try to open it i get an "info" message ast the top saying  "Cannot determine if buttons are to be disabled for selected inbox item" Any reason why this is ha

  • How COPA datasource is loaded with data?

    Hi all, I'm very new to COPA extraction. I tried to extract data from COPA. So I created Costing based COPA datasource. Do we need to do anything to fill the data? Or Is there any initialization step as in LO? How the COPA tables are filled with data