This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ 83.163161] ---[ end trace da227214a82491ba ]--- | |
| [ 83.241599] ------------[ cut here ]------------ | |
| [ 83.241629] WARNING: at fs/btrfs/extent-tree.c:4282 btrfs_free_block_groups+0x1ec/0x2a4() | |
| [ 83.241660] Modules linked in: | |
| [ 83.241721] [<c0014bb8>] (unwind_backtrace+0x0/0x11c) from [<c007dce8>] (warn_slowpath_common+0x4c/0x64) | |
| [ 83.241782] [<c007dce8>] (warn_slowpath_common+0x4c/0x64) from [<c007dd18>] (warn_slowpath_null+0x18/0x1c) | |
| [ 83.241812] [<c007dd18>] (warn_slowpath_null+0x18/0x1c) from [<c0237890>] (btrfs_free_block_groups+0x1ec/0x2a4) | |
| [ 83.241873] [<c0237890>] (btrfs_free_block_groups+0x1ec/0x2a4) from [<c0242d78>] (open_ctree+0x128c/0x13fc) | |
| [ 83.241934] [<c0242d78>] (open_ctree+0x128c/0x13fc) from [<c021d234>] (btrfs_mount+0x488/0x888) | |
| [ 83.241965] [<c021d234>] (btrfs_mount+0x488/0x888) from [<c013c614>] (mount_fs+0x10/0xb0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Microsoft Error Reporting log version: 2.0 | |
| Error Signature: | |
| Exception: EXC_BAD_ACCESS | |
| Date/Time: 2013-11-07 14:51:33 +0000 | |
| Application Name: Microsoft Lync | |
| Application Bundle ID: com.microsoft.Lync | |
| Application Signature: UCCP | |
| Application Version: 14.0.6.130930 | |
| Crashed Module Name: libcorecrypto.dylib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| registerApp.service('alertService', function($rootScope, $timeout) { | |
| var alertService = {}; | |
| $rootScope.alerts = []; | |
| alertService.add = function(type, msg) { | |
| $rootScope.alerts.push({'type': type, 'msg': msg, 'close': function() { | |
| alertService.closeAlert(this); | |
| } | |
| }); | |
| //console.log("alert length " + $rootScope.alerts.length + " " + $rootScope.alerts[0].msg); | |
| $timeout(function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| app.directive('bsSelectbox', function ($parse) { | |
| return { | |
| restrict: 'A', | |
| priority: 100, | |
| transclude: true, | |
| scope: { | |
| //themodel: '=ngModel', | |
| myModel: '=', | |
| thearray: '@ngOptions', | |
| defaultval: '@bsSelectbox' |