Odd crash behaviour

A crash I haven't seen before. I did a Save As and InDesign crashed.
I restarted it and it couldn't find the file it had just saved for automatic recovery.
The file was listed in Explorer as bpr200803.in87215449203
I tried an Open With from Explorer and CS3 wasn't listed - although it was open at the time, so that may be the cause there.
I dragged the crashed file into the InDesign window and it opened perfectly. I could then Save As the correct file name.
I pushed it out through INX and after 15 minutes of being on the verge of completing a reopen I ended InDesign through
Task Manager.
A second attempt at opening the INX file seems to have been successful.
k

1. It's possible that the settings may be in the catalog. Normally I'd recommend sending them into one of the engineers, but I believe he is off for 2 weeks now.
2. In order to prevent Lightroom grinding to a halt to write every instruction as you tweak, XMP is written during idle time. If you were working constantly, then it may not have all been written when the crash happened.
3. Yes.
4. I've no definite answer for this. A crash while Lightroom is writing to the Preferences file could corrupt it. If you want, you could potentially copy a working version and when the preferences corrupt, replace them with the copy. I've never heard of anyone doing that though.

Similar Messages

  • 10.6.5 update - 27" iMac, Radeon 5750 odd graphics behaviours?

    I updated my new iMac 27" to OS 10.6.5 today and have seen some odd graphics behaviours.
    1. Dock icon for Activity Monitor becomes transparent. Running AM, hidden showing CPU history
    2. White rectangle at bottom of expanding folder (list view)
    3. OK Button blue/white check mark pattern when configuring VPN. GUI feels "slow"
    I updated using the Software Update tool; noticed these issues and re-updated using the Combo Installer; no change.
    Any ideas or suggestions? Is this just me? I have a MacBook -- no probems at all!

    N Gallagher,
    I had the problem earluer, but it got far worse with 10.6.5, however, I fixed it by updating my wacom tablet driver.
    It wasn't the system update, but an old driver causing the problem.
    Resetting PRAM, SMC and permissions and all the other standard drivel people post is nice sentiments, but it should be clear that the problem is something else because that solution hasn't solved the problem for anyone.
    I have the sneaky suspicion that it's old flash and old drivers for most people.
    See my original post here: http://discussions.apple.com/thread.jspa?messageID=12570261#12570261
    BUT. If you have a Wacom tablet, for to their website and download the latest driver from September 10, 2010.
    That's all it took for all my graphics problems to go away.

  • Odd software behaviour Lumia 720

    I'm the proud owner of a Lumia 720 since July. I'm facing some odd software behaviour recently though. Without notice or any pattern, the current app changes to another one, sometimes four or five times while my phone vibrates like mad. It happens two, or three times a week, and there's no significant pattern but this weird "phone on speed" behaviour always ends in the Bing app. I thought rebooting was the answer but it doesn't. Does someone has any clue?

    Ugura,
    Thanks for your reply. I adjusted the touch sensitivity but that did not do the trick. Last night, I was already sleeping, suddenly my Lumina 720 played a song that I played before many weeks ago. That was quite odd too. With my phone connected to the charger, me asleep and there was that terrible noise from an old U2-song... And I could not stop it, nor could I lower the volume so I had to turn on my computer to find the keys to a soft reset and it was in the middle of the night.
    So I waited till this morning to reset my phone to it's factory-settings. Much to my annoyance- without any external app loaded, the phone went on nuts again. This time, while vibrating taking numerous screen shots... It's like my phone is haunted. A little poltergeist in it. I need some high-tec exorcism I'm afraid.
    Hope someone can help me further!

  • Really Odd Crash

    There's a really odd bug / crash that happens under these very specific circumstances.  Unfortunately I can't upload an FLA here, so I've provided a download link from a 3rd party site.  If you don't feel comfortable with that, I've listed the steps to recreate the error below.
    (Note: Don't click the giant download buttons, click where it says "Save file to your PC: click here")
    http://www.2shared.com/file/qJWkGney/PrivateVideoChat.html
    http://www.2shared.com/file/M5tNwwRL/PrivateVideoChatExample.html
    If you don't feel comfortable with that, here's a description on how to recreate the error:
    1. Create a new AS3 FLA
    2. Under AS3 Settings -> Library Path, import the flash only player 10 AFCSFlash.swc
    3. Import rpc.swc from the FLEX sdk into the library path
    4. Create a movie clip and put text object in it.  Don't put it on the stage -- leave it in the library.
    And then to make it work with the document class...
    5. Add a Button component and name the instance connectButton
    6. Add a TextInput component and name the instance connectSessionID
    7. Add another TextInput component and name the instance myCSessionID
    8. Create the document class and link it to the FLA
    9. Add your developer credentials (where the constants are defined)
    The document class is this:
    package {
        import com.adobe.rtc.authentication.AdobeHSAuthenticator;
        import com.adobe.rtc.collaboration.AudioPublisher;
        import com.adobe.rtc.collaboration.AudioSubscriber;
        import com.adobe.rtc.collaboration.WebcamPublisher;
        import com.adobe.rtc.collaboration.WebcamSubscriber;
        import com.adobe.rtc.events.SessionEvent;
        import com.adobe.rtc.session.ConnectSession;
        import fl.controls.Button;
        import fl.controls.TextInput;
        import flash.display.Sprite;
        import flash.events.MouseEvent;
        public class PrivateVideoChatExample extends Sprite {
            protected const USERNAME:String = "";
            protected const PASSWORD:String = "";
            protected const ROOM_URL:String = "";
            protected var _cSession:ConnectSession = new ConnectSession();
            protected var _webcamPublisher:WebcamPublisher = new WebcamPublisher();
            protected var _localWebcamSubscriber:WebcamSubscriber = new WebcamSubscriber();
            protected var _audioPublisher:AudioPublisher = new AudioPublisher();
            protected var _audioSubscriber:AudioSubscriber;
            public var connectButton:Button;
            public var connectSessionID:TextInput;
            public var myCSessionID:TextInput;
            public function PrivateVideoChatExample() {
                var authenticator = new AdobeHSAuthenticator();
                authenticator.userName = this.USERNAME;
                authenticator.password = this.PASSWORD;
                this._cSession.roomURL = this.ROOM_URL;
                this._cSession.authenticator = authenticator;
                this._cSession.login();
                this._cSession.addEventListener(SessionEvent.SYNCHRONIZATION_CHANGE, this.onLogin);
                this.connectButton.addEventListener(MouseEvent.CLICK, this.connectTo);
            protected function connectTo(event:MouseEvent) {
                if(this._cSession.userManager.getUserDescriptor(this.connectSessionID.text)) {
                    this.createNewPrivateChat(this.connectSessionID.text);
            public function onLogin(event:SessionEvent):void {
                this.myCSessionID.text = this._cSession.userManager.myUserID;
                this._audioPublisher.publish();
                this._webcamPublisher.publish();
                this._localWebcamSubscriber.subscribe();
            public function createNewPrivateChat(userID:String) {
                this._audioSubscriber = new AudioSubscriber();
                trace("Hasn't crashed yet....!");
                this._audioSubscriber.subscribe();
                this._audioSubscriber.publisherIDs = new Array(userID);
                trace("Aaaaannnndddd...boom.");
    You'll notice if you do any of the following it'll work fine:
    1. Replace the player 10 AFCSFlash.swc with the player 9 AFCSFlash.swc in the library path
    2. Remove the rpc.swc from the library path
    3. Remove the MovieClip with the text object in it
    4. Comment out the line "this._audioSubscriber.publisherIDs = new Array(userID);"
    Edit: Oh yeah, and to use the application you copy your session ID (from the myCSessionID TextInput) and paste it into the the connectSessionID TextInput in another instance of the swf file (or into the same one -- you get the same results).
    I was able to replicate this on another computer using the files above, so I don't think it's my environment that's causing the error.
    I have this version of Flash installed: 10,1,53,64

    REast wrote:
    > As a workaround, I have installed Firefox addon
    "Flashblock"
    > (https://addons.mozilla.org/en-US/firefox/addon/433)
    which prevents all flash
    > content from starting unless I want it to. Kind of
    annoying to have to do this,
    > but it means that the debug flash player is less likely
    to crash my browser
    > straight away.
    >
    >
    All,
    This looks like a bug with Flash player debug plugin.
    Please download the Flash player latest version of debug
    plugin 9.0.115
    from the location
    http://www.adobe.com/support/flashplayer/downloads.html
    The link should show - 12/3/2007 - Update Linux Debugger
    versions (aka
    debug players or content debuggers)... Download the linux
    debugger and
    standalone players.
    You dont need standalone player though it comes bundled
    together. After
    you untar the folder you will see /plugin/ directory which
    contains
    libflashplayer.so
    copy this to your $HOME/.mozilla/plugins/ directory... for
    root users it
    is /usr/lib/firefox* ...
    Relaunch the browser and confirm if you are running Debug
    version of FP
    - by visiting this URL
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15507
    Thanks
    Arun

  • Odd SocketPermission behaviour

    Hi,
    I've been trying to use SocketPermissions to restrict the IP addresses from which a ServerSocket will accept a connection and am getting some wierd behaviour.
    The ServerSocket will reject and close the first connection attempt from a disallowed address. Subsequent connections from the same host (using telnet) are not rejected/accepted or closed - they just 'hang there'.
    The SecurityManager is also really slow at deciding whether a connection can be accepted or rejected.
    Is this usual ? Or is there a way to setup SecurityManager to behave 'nicely' ?
    regards
    Tony Seebregts

    Just spent about an hour playing around with various things and now it seems to have resolved itself. Odd... Marking this topic as answered now.

  • Odd Quicklook behaviour

    Running mavericks 10.9.2 have noticed a small quirk in the behaviour on one of my installs.
    Selecting a group of images (mostly jpegs, sometimes tiffs) and opening quicklook. scrollling through
    and quite randomly some of the images will momentarily flash up then turn blank, if you cycle through to the start and continue
    sometimes those that didn't show, will show and vice versa. if you select the grid option then all will show.
    all images are in either sRGB or RGB in the most part 8 bit, and all without layers or alpha channels.
    there is another hard drive on my machine that has the same version of mavericks
    and does not display this behaviour
    I have also removed the quick look preferences from the users library and restarted but the behaviour continues.
    so i was wondering if anyone has come across this and if they have any ideas as to why this might be happening
    any known issues with third party apps etc.
    any advice would be gratefully received
    thanks in advance.

    Just spent about an hour playing around with various things and now it seems to have resolved itself. Odd... Marking this topic as answered now.

  • Odd return behaviour

    okay, consider the following example:
    public class Oops {
         public static void main(String args[]){
    1:          String oops;
    2:          return;
    3:          System.out.println(oops);
    }we get compile error at 3 saying unreachable statement .. fair enough.
    now, consider this:
    public class Oops {
         public static void main(String args[]){
    1:          String oops;
    2:          if(true) return;
    3:          System.out.println(oops);
    }we have modified two and now there is no errors whats-so-ever.
    However, the odd behaviour hecomes obvious if we comment out line 2 where we will get "variable oops might not have been initialized." ... so it would seem that it can recognize that if(true) return; will not let the program reach 3 and hence doesn't care if oops is initialized but why don't we get a similiar error as in example one?

    I don't see anything bizarre about this question. What
    are you referring to?Perhaps 'bizarre' was a poor choice of words. It's just that I recall silkm posting a rather similar question before (a question about how the compiler/jvm handles thing rather than what API can one use to make foo.
    No, that's not a possibility. The JLS explains exactly
    why this behavior occurs:
    http://java.sun.com/docs/books/jls/second_edition/html/
    tatements.doc.html#236365
    The reason that the second example compiles is so that
    you can have code that is conditionally compiled such
    as debugging statements. It's not bizarre at all, it's
    entirely pragmatic and practical.Yes, of course, makes sense. (Although the possibility of a compiler optimizing it out is flashed there.)

  • Odd SOAMANAGER behaviour

    Ok, I just managed to get my old Dell D610 replaced, but this new laptop has some odd behaviour with some Solman transactions.  I can get into Solman Web Workcenter no problem, but when I try to open SOAMANAGER, I get one blank IE8 window (looks like it's supposed to be hidden), and then a few seconds later a second normal looking IE8 window opens, with a partial URL.  This appears to be a problem with my local profile - I can log in to someone else's machine and it'll work, and a coworker can log into my laptop and it'll also work.
    This is the URL it directs the second window to.. https://<server>.<domain>.com/sap/public/myssocntl?sap-client=100
    whereas this is where it should be going.  https://<server.domain>.com/sap/bc/webdynpro/sap/appl_soap_management?sap-client=100&sap-language=EN
    Anyone have any ideas here?  If I call my help desk they're going to be clueless on this one..  lol..
    thanks.
    bk

    Maybe you can rename your home folder in c:\documents and settings and login again - thereby recreating your local profile.

  • Odd JMS Behaviour

    With our application deployed to a client, we have been experiencing some odd behaviour with JMS in Oracle 10g (OC4J 9.0.4).
    The application posts multiple non-transactional messages (roughly 400-500Kb per message) to a queue, which an MDB processes correctly everywhere but the client site. At the client site, only the first message in retrieved from the queue by the MDB, as if to suggest the queue was only capable of holding one message and the other messages are not being added or are being dumped. No exceptions are being thrown, which isn't helpnig diagnose the problem.
    The client site has a similar environment to our internal dev/qa environments - Red Hat AS 3.0 server, v1.4.2 jvm, same OC4J and application config.
    Has anyone else experienced this kind of behaviour with JMS?

    Just spent about an hour playing around with various things and now it seems to have resolved itself. Odd... Marking this topic as answered now.

  • Odd gmail behaviour when using mail.app

    Hello there,
    Ever since upgrading to Mavericks, I've been experiencing odd behaviour when sending messages from my gmail account in mail.app. I send a message and up to ten copies of the message appear in mail.app's trash.
    Does anyone know what might be the cause of this?
    many thanks,
    Chidi

    this is a setting in gmail that interfer with mail.app
    the setting is that mail.app is that when you type a mail it will auto save it while you are typing. and gmail will delete the saved onece and the mail.app will create a new all the time
    duno how to turn this off, try by rebuilding the mailbox in mail.app

  • Odd crash (kind of) wouldn't start issue

    Ok...
    3ghz 2meg ram x1900 etc
    Bootcamp partition on system drive Fat32 windows runs fine.
    reFIT (I think that's what it's called) is used to switch Mac/Doz on start up.
    Had it a month and rock solid - both sides.
    SO --
    I'm sitting here last night (after hours for AppleCare and with my laptop at work (which becomes important later...)) and working in AfterEffects on the Mac side. It may or may not be important, but I haven't booted to Windows in maybe a week or more. And I'm noticing that I'm getting some very slow responses and ... wait... my Right Click isn't working. Wait... now I can't click close a window... what? QUIT!! nope... apple-Q isn't working either... won't force quit from dock... I'm still in AE and I apple-option-esc to force quit and then SHUT DOWN from the finder.
    Mac shuts down fine.
    Wow - that was odd.
    I power back on after about 30 seconds or so and all I get is a grey screen. Remember, I haven't rebooted my machine in a good week or maybe two. But 2 minutes go by and still a grey screen -- no reFIT (if that's what it's called) nothing... just the grey screen.
    I force power off and try again. Same thing. Power pushes once and monitor comes on... but no other power pushes to force drives or whatever.
    Crud! I know where to LOOK for all those special hold this down key combination, but I can't remember... well - maybe I remember.
    Mouse Button - Grey screen/Drawer opens (insert disc 1 from install set) still grey screen so
    C key - Grey screen no spinning from optical drive
    D key - grey screen no spinning from optical drive (hardware check)
    At this point I unplug EVERYTHING for 10 minutes (I timed it!!)
    Apple-S - Grey screen etc.
    Shift - Grey screen
    Now, sometimes I'm getting the reFit showing up on the grey screen, sometimes not.
    Ok... so I reach over to my G4 sitting under the desk to turn it on and get online. I press power and NOTHING... NOTHING!!! Brick!!!
    Go running to my wife... "Did we have any power spikes today?" Nope.
    So I unplug everything and go have dinner.
    I opened up the box and pressed some little white button on the mother board that kind of looked like something kind of like a PMU switch...
    I still can't boot to the install disc but I finally get single user working. I do fsck -y /sbin/fsck -y etc
    It gives me 5 lines of "code" and that's it. Ok, maybe everything's fine?
    So I "reboot" --
    I get an APPLE on my Grey screen now!!!!
    5 -- 5!! minutes later it boots up and I'm getting a warning saying the disk I've inserted is unreadable by this computer. What? My install disc??? So I reboot again...
    5 minutes later, same warning -- But wait!! As before, the install disc is actually there... but my 500 gig SATA drive I installed after Macworld isn't... is THIS the disk it's talking about??
    So I reformat and all "seems" to be good.
    Is it?
    The drive didn't have anything on it... was sitting there empty but formatted.
    Are these exclusive problems related to something worse? Am I good for another month?
    Thoughts?????
    Thanks!
    CaptM

    Is it?
    Unfortunately only your Mac Pro's going to know that. It really depends on what went wrong in the first place. This sort of behaviour is quite typical of a drive corruption so be sure to Verify/Repair both drives in Disk Utility from the Installation DVD 1.
    Are these exclusive problems related to something worse? Am I good for another month?
    Personally, I'd spend the time to zero the drive in Disk Utility and also be sure that it's using the GUID Partition Table.

  • Odd gc behaviour?

    Hi,
    I'm working on a web application (Jetty, running inside JBoss 3.2.1, Redhat Linux, dual Xeon CPUs, hotspot 1.4.2_04 or sometimes 1.4.2_05) whose gc behaviour seems rather odd. I have been watching visualgc while the application is under load and have observed the following:
    Using the default collector:
    * I have turned off explicit GCs
    * Eden is about 400M and is collected whenever it fills up. Under the load test I've been looking at this occurs about every 30 seconds This collection occurs very quickly (normally a few milliseconds). There will normally be around 2M of garbage at the end of that collection which goes straight into the old generation (maybe via s0 and s1, depending on the settings I'm using)
    * The old generation is also about 400M. However, collections of the old generation happen almost every time that a collection Eden occurs, even though the old generation is very far from full. (In the test I've been looking it seems to have a "steady state" of around 100M). Collections of old take a relatively long time, normally around 1 or 2 seconds. This is an unacceptably long time for our application.
    This seems very odd to me as I wouldn't expect the old generation to be collected every time Eden fills up. For our application it would be perfectly acceptable for the old generation to fill up slowly each time Eden is collected, and then for one big GC to occur once that filled up (which would once every hour or two). But re-collecting the same bit of memory in the old generation twice a minute (at a couple of times per minute) is just no good. I don't understand why the old generation is collected whenever Eden is collected.
    I have tried the concurrent old-generation collector and this only made the problem worse. I also tried setting the old-generation threshold for the concurrent collector to 90% and this made no different - the old generation was still collected every time that Eden filled up.
    Strangely enough, when using the parallel (high throughput) collector for Eden, the problem almost went away. I say "almost" because although no collections occured in the old generation occurred until the old generation had filled completely, the very first old generation collection (which sent it back to its "natural" 100M ") seemed to send it back to its old habits: an old generation collection for every Eden collection.
    Does anybody have any idea what might be going on? Could there be something weird about our application? Am I missing some crucial GC option? Have I stumbled across a GC bug? Do I just not understand hwo this stuff all works?
    Any pointers much appreciated, thanks for your time.
    David

    Hi,
    Thanks for responding.
    I started the vm with the following options:
    -Dsun.net.client.defaultConnectTimeout=15000 -Dsun.net.client.defaultReadTimeout=15000 -XX:+DisableExplicitGC -XX:+UsePerfData -Xmn512m -Xms1024m -Xmx1024m -XX:PermSize=64m -XX:MaxPermSize=128m -XX:MaxTenuringThreshold=0 -XX:+PrintHeapAtGC -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -XX:+PrintTenuringDistribution
    (Note that I've set -XX:MaxTenuringThreshold=0 for this test so I could reproduce the problem more quickly. If I set it to something smaller then the problem still occurs, just less frequently).
    I've got loads and loads of output from the GC trace (I ran a load test on it) so I'll just include an excerpt containing some of the full GCs that I am not expecting. Watching the proceedings in visualgc, I noted that most of the GCs I've included below involved a collection of the old generation (for reasons I cannot fathom). However, they are not noted as "Full GC" in the trace. Any help in understanding this much appreciated:
    722.391: [GC  {Heap before GC invocations=72:
    Heap
    def new generation   total 471872K, used 419455K [0x44950000, 0x64950000, 0x64950000)
      eden space 419456K,  99% used [0x44950000, 0x5e2efff8, 0x5e2f0000)
      from space 52416K,   0% used [0x5e2f0000, 0x5e2f0000, 0x61620000)
      to   space 52416K,   0% used [0x61620000, 0x61620000, 0x64950000)
    tenured generation   total 524288K, used 103760K [0x64950000, 0x84950000, 0x84950000)
       the space 524288K,  19% used [0x64950000, 0x6aea4338, 0x6aea4400, 0x84950000)
    compacting perm gen  total 65536K, used 26031K [0x84950000, 0x88950000, 0x8c950000)
       the space 65536K,  39% used [0x84950000, 0x862bbdb0, 0x862bbe00, 0x88950000)
    722.392: [DefNew
    Desired survivor size 26836992 bytes, new threshold 0 (max 0)
    : 419455K->0K(471872K), 0.0272900 secs] 523216K->105143K(996160K) Heap after GC invocations=73:
    Heap
    def new generation total 471872K, used 0K [0x44950000, 0x64950000, 0x64950000)
    eden space 419456K, 0% used [0x44950000, 0x44950000, 0x5e2f0000)
    from space 52416K, 0% used [0x61620000, 0x61620000, 0x64950000)
    to space 52416K, 0% used [0x5e2f0000, 0x5e2f0000, 0x61620000)
    tenured generation total 524288K, used 105143K [0x64950000, 0x84950000, 0x84950000)
    the space 524288K, 20% used [0x64950000, 0x6affdfc8, 0x6affe000, 0x84950000)
    compacting perm gen total 65536K, used 26031K [0x84950000, 0x88950000, 0x8c950000)
    the space 65536K, 39% used [0x84950000, 0x862bbdb0, 0x862bbe00, 0x88950000)
    } , 0.0280260 secs]
    734.030: [GC  {Heap before GC invocations=73:
    Heap
    def new generation   total 471872K, used 419456K [0x44950000, 0x64950000, 0x64950000)
      eden space 419456K, 100% used [0x44950000, 0x5e2f0000, 0x5e2f0000)
      from space 52416K,   0% used [0x61620000, 0x61620000, 0x64950000)
      to   space 52416K,   0% used [0x5e2f0000, 0x5e2f0000, 0x61620000)
    tenured generation   total 524288K, used 105143K [0x64950000, 0x84950000, 0x84950000)
       the space 524288K,  20% used [0x64950000, 0x6affdfc8, 0x6affe000, 0x84950000)
    compacting perm gen  total 65536K, used 26033K [0x84950000, 0x88950000, 0x8c950000)
       the space 65536K,  39% used [0x84950000, 0x862bc538, 0x862bc600, 0x88950000)
    734.031: [DefNew: 419456K->419456K(471872K), 0.0000370 secs]734.031: [Tenured: 105143K->106385K(524288K), 1.2275840 secs] 524599K->106385K(996160K) Heap after GC invocations=74:
    Heap
    def new generation total 471872K, used 0K [0x44950000, 0x64950000, 0x64950000)
    eden space 419456K, 0% used [0x44950000, 0x44950000, 0x5e2f0000)
    from space 52416K, 0% used [0x61620000, 0x61620000, 0x64950000)
    to space 52416K, 0% used [0x5e2f0000, 0x5e2f0000, 0x61620000)
    tenured generation total 524288K, used 106385K [0x64950000, 0x84950000, 0x84950000)
    the space 524288K, 20% used [0x64950000, 0x6b134458, 0x6b134600, 0x84950000)
    compacting perm gen total 65536K, used 26033K [0x84950000, 0x88950000, 0x8c950000)
    the space 65536K, 39% used [0x84950000, 0x862bc538, 0x862bc600, 0x88950000)
    } , 1.2283850 secs]
    747.317: [GC  {Heap before GC invocations=74:
    Heap
    def new generation   total 471872K, used 419455K [0x44950000, 0x64950000, 0x64950000)
      eden space 419456K,  99% used [0x44950000, 0x5e2efff0, 0x5e2f0000)
      from space 52416K,   0% used [0x61620000, 0x61620000, 0x64950000)
      to   space 52416K,   0% used [0x5e2f0000, 0x5e2f0000, 0x61620000)
    tenured generation   total 524288K, used 106385K [0x64950000, 0x84950000, 0x84950000)
       the space 524288K,  20% used [0x64950000, 0x6b134458, 0x6b134600, 0x84950000)
    compacting perm gen  total 65536K, used 26033K [0x84950000, 0x88950000, 0x8c950000)
       the space 65536K,  39% used [0x84950000, 0x862bc718, 0x862bc800, 0x88950000)
    747.317: [DefNew: 419455K->419455K(471872K), 0.0000380 secs]747.317: [Tenured: 106385K->107602K(524288K), 1.2445540 secs] 525841K->107602K(996160K) Heap after GC invocations=75:
    Heap
    def new generation total 471872K, used 0K [0x44950000, 0x64950000, 0x64950000)
    eden space 419456K, 0% used [0x44950000, 0x44950000, 0x5e2f0000)
    from space 52416K, 0% used [0x61620000, 0x61620000, 0x64950000)
    to space 52416K, 0% used [0x5e2f0000, 0x5e2f0000, 0x61620000)
    tenured generation total 524288K, used 107602K [0x64950000, 0x84950000, 0x84950000)
    the space 524288K, 20% used [0x64950000, 0x6b2649f8, 0x6b264a00, 0x84950000)
    compacting perm gen total 65536K, used 26033K [0x84950000, 0x88950000, 0x8c950000)
    the space 65536K, 39% used [0x84950000, 0x862bc718, 0x862bc800, 0x88950000)
    } , 1.2453910 secs]
    761.940: [GC  {Heap before GC invocations=75:
    Heap
    def new generation   total 471872K, used 419456K [0x44950000, 0x64950000, 0x64950000)
      eden space 419456K, 100% used [0x44950000, 0x5e2f0000, 0x5e2f0000)
      from space 52416K,   0% used [0x61620000, 0x61620000, 0x64950000)
      to   space 52416K,   0% used [0x5e2f0000, 0x5e2f0000, 0x61620000)
    tenured generation   total 524288K, used 107602K [0x64950000, 0x84950000, 0x84950000)
       the space 524288K,  20% used [0x64950000, 0x6b2649f8, 0x6b264a00, 0x84950000)
    compacting perm gen  total 65536K, used 26033K [0x84950000, 0x88950000, 0x8c950000)
       the space 65536K,  39% used [0x84950000, 0x862bc7a8, 0x862bc800, 0x88950000)
    761.941: [DefNew: 419456K->419456K(471872K), 0.0000370 secs]761.941: [Tenured: 107602K->109018K(524288K), 1.2185450 secs] 527058K->109018K(996160K) Heap after GC invocations=76:
    Heap
    def new generation total 471872K, used 0K [0x44950000, 0x64950000, 0x64950000)
    eden space 419456K, 0% used [0x44950000, 0x44950000, 0x5e2f0000)
    from space 52416K, 0% used [0x61620000, 0x61620000, 0x64950000)
    to space 52416K, 0% used [0x5e2f0000, 0x5e2f0000, 0x61620000)
    tenured generation total 524288K, used 109018K [0x64950000, 0x84950000, 0x84950000)
    the space 524288K, 20% used [0x64950000, 0x6b3c6960, 0x6b3c6a00, 0x84950000)
    compacting perm gen total 65536K, used 26033K [0x84950000, 0x88950000, 0x8c950000)
    the space 65536K, 39% used [0x84950000, 0x862bc7a8, 0x862bc800, 0x88950000)
    } , 1.2193330 secs]
    777.527: [GC  {Heap before GC invocations=76:
    Heap
    def new generation   total 471872K, used 419456K [0x44950000, 0x64950000, 0x64950000)
      eden space 419456K, 100% used [0x44950000, 0x5e2f0000, 0x5e2f0000)
      from space 52416K,   0% used [0x61620000, 0x61620000, 0x64950000)
      to   space 52416K,   0% used [0x5e2f0000, 0x5e2f0000, 0x61620000)
    tenured generation   total 524288K, used 109018K [0x64950000, 0x84950000, 0x84950000)
       the space 524288K,  20% used [0x64950000, 0x6b3c6960, 0x6b3c6a00, 0x84950000)
    compacting perm gen  total 65536K, used 26034K [0x84950000, 0x88950000, 0x8c950000)
       the space 65536K,  39% used [0x84950000, 0x862bc998, 0x862bca00, 0x88950000)
    777.527: [DefNew: 419456K->419456K(471872K), 0.0000390 secs]777.527: [Tenured: 109018K->93469K(524288K), 1.4284740 secs] 528474K->93469K(996160K) Heap after GC invocations=77:
    Heap
    def new generation total 471872K, used 0K [0x44950000, 0x64950000, 0x64950000)
    eden space 419456K, 0% used [0x44950000, 0x44950000, 0x5e2f0000)
    from space 52416K, 0% used [0x61620000, 0x61620000, 0x64950000)
    to space 52416K, 0% used [0x5e2f0000, 0x5e2f0000, 0x61620000)
    tenured generation total 524288K, used 93469K [0x64950000, 0x84950000, 0x84950000)
    the space 524288K, 17% used [0x64950000, 0x6a497778, 0x6a497800, 0x84950000)
    compacting perm gen total 65536K, used 26032K [0x84950000, 0x88950000, 0x8c950000)
    the space 65536K, 39% used [0x84950000, 0x862bc1a8, 0x862bc200, 0x88950000)
    } , 1.4292680 secs]
    Thanks for your help,
    David

  • Files Uploaded using Mapped Drive (UNC) to SharePoint Document library Putting a copy in Recycle Bin , odd SharePoint Behaviour

    Hello All,
    One of my client reported a strange behaviour.
    Client mapped SharePoint document library to local share(UNC, NetWork Map Drive). Opened MS Word on local machine ,saved it to the share on his local machine. The document is saved successfully to SharePoint document library. But at the same time he can
    see a file with same name in Recycle bin and the size of the document in Recycle bin is <1k.
    Does any one know whether it is expected behaviour, why SharePoint putting this 1k file in Recycle bin?
    I tried the same thing on my Dev Environment for both SharePoint 2010 and 2013, in both environments the behaviour is same as my client experience.
    I have seen in forums some other people also experiencing this odd behaviour, but no one knows why.
    any info on this much appreciated.
    Regards,
    Andrew

    Hi Andrew,
    i tried in my environment for 2010 and 2013. The issue doesn't occur.
    Here is what i did.
    1, Create a new mapped drive(\\servername\DavWWWRoot\Shared Documents) for document library
    2, New a Word doc and input some string, save in the mapped drive.
    3, The doc exists in the document library, but no file in Recycle Bin.
    Did i miss something?
    Regards,
    Tom
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to
    other community members reading the thread.

  • Odd display behaviour

    I just had something odd happen to my macbook display and I'm wondering if it's a defect in Leopard, the display hardware or some weird interplay between my programs.
    I had nine open applications at the time: firefox, thunderbird, terminal, finder, preview, aquamacs, active timer, slife and MS word for mac. While I was reading a pdf in preview, i noticed a small light pink circle (only noticable against the bright white empty margin of the pdf paper I was reading), about 1 cm in diameter. At first I thought it was a smudge on the screen (from what, I don't know), because when i scrolled it stayed put. so i tried to wipe it away, and then I realized it wasn't on the surface of the screen. It also remained when I switched into firefox and there was white background on the webpage that was up. Then, when I switched into thunderbird, where there is a blue tinted background to the folder tree, the pinkish circle disappeared, and in it's place was a tiny white rectangle, about 2mm by 3mm.
    At first I worried it was a dead pixel spot on my display, since it seemed to remain in the same place no matter which programs I switched into, unless it was covered with a white spot (then it reverted back to a pinkish circle). I put my macbook to sleep and woke it up again (hoping it would reset my display). I was just contemplating rebooting my macbook when I noticed the tiny rectangle "jump". It jumped about an inch everytime my mouse cursor got near it. After jumping several times (while I tried to click on it) it eventually disappeared altogether, and I haven't seen it in the past hour or so.
    I'm new to mac, but I've been using PCs for a while, and were this a pc, I'd be immediately convinced I had a virus. But I understand that macs are not subject to most if not all viruses. So, does anyone know what might have just happened to me?

    Cisco has finally figured out the issue.
    The problem was in description tag there was an ampersand sign "R&D1" and "R&D2" when we removed it the phones started working fine.
    I feel like I'm Cisco's beta tester on a daily basis. These are mature devices running on mature software, how do things like this slip through there cracks?!

  • Odd hyperlink behaviour in Firefox

    I wonder if anyone else is experiencing problems with hyperlinks in webhelp running on Firefox?
    I have created a new webhelp system - nothing clever such as merging - just 70 or so topics.The help contains hyperlinks to other topics in the webhelp - these are left to page default (the intention being that they should open and replace the current page).
    I have published the help to my C drive and am running it from there. When I select a link to another topic, the target topic opens for a second, then the help jumps to the parent folder for that topic. I just tried another webhelp system that I created a week ago (and was fine then) and it shows the same behaviour.
    When I do exactly the same in IE, it works as expected.
    I'm using Robohelp 7, Firefox 3.6 (it was the same with Firefox 3.5.7 so  I tried upgrading) and Vista (though I tried on a Mac and it's the same, so I've ruled out an operating system quirk).
    I'm guessing this is down to a recent Firefox update...or have I just done something daft?

    Well, curious indeed! It now seems to be fixed.
    The sample file was fine, so that put paid to my Firefox ranting.
    I was checking the generate settings for anything that might be relevant, and noticed that it was set to synch TOC automatically. I changed this to synch manually and published again - it worked fine in Firefox. I then set it back to synch automatically and generated again, and it is still fine.
    I then repeated the above with an older webhelp system that was OK last week but not today, and it seems to have fixed that too.
    Thus my highly technical conclusion is that the TOC got its knickers in a twist.
    Many thanks for your help Peter - I now have the sample files in case of future turmoil...

Maybe you are looking for

  • Lightroom 5.2 won't open after "successfully installed" - can anybody please help me understand why?

    Hi everyone I've bought and downloaded Adobe Lightroom 5 for a new iMac 27" intel core 5 3,4 GHz. The machine is only three days old and no more updates are to be found when searching for it. However; after the message that "lightroom 5 has successfu

  • Airport random disconect

    Hi, I just got my MacBook Pro with Mac osx, 10.6.6 and my airport disconects randomly iphone and pc working fine with the network Already tried deleting the network, and the keychain log. and restarting. please help or give a phone number to call in

  • 11.1: Sun Quad FastEthernet card hampers Solaris 11.1 to boot

    Hi, running a Solaris 11 system on x86 with a working Sun Quad FastEthernet card (hme0 - hme3): root@mother:/home/p009929# modinfo -w -i 199 Id Loadaddr Size Info Rev Module Name 199 fffffffff895c000 6930 175 1 hme (Sun HME 10/100 Mb Ethernet) root@m

  • TCrpe compoent is slow on Vista system

    Post Author: judhra CA Forum: General Hi all, We are using Delphi 2007 and TCrpe Componet to preview crystal report. On vista system report preview takes more time to execute. When we compare on Vista system and Xp system, in vista system, report pre

  • Sap pp -MRP-area

    Hello SAP-Guruu2019s Pls tell me the Procedure/steps/Details to maintain MRP-area for a Vendor & also for a Sub-Contractor. Any comments welcome   & Thanks in advanc