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
| This file contains any messages produced by compilers while | |
| running configure, to aid debugging if configure makes a mistake. | |
| It was created by Gource configure 0.32, which was | |
| generated by GNU Autoconf 2.61. Invocation command line was | |
| $ ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/gource/0.32 --disable-sdltest --disable-freetypetest | |
| ## --------- ## | |
| ## Platform. ## |
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
| /usr/bin is in your PATH before Homebrew's bin. This means that system- | |
| provided programs will be used before Homebrew-provided ones. This is an | |
| issue if you install, for instance, Python. | |
| Consider editing your .bashrc to put: | |
| /usr/local/bin | |
| ahead of /usr/bin in your $PATH. | |
| Some brews install binaries to sbin instead of bin, but Homebrew's | |
| sbin was not found in your path. |
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
| var libraries = session.CreateQuery("SELECT id, Name FROM LibraryControl") | |
| .Future<object[]>() | |
| .Select(x => new KeyValuePair<int, string>(Convert.ToInt32(x[0]), Convert.ToString(x[1]))); |
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
| References(x => x.Program, "ProgramId") | |
| .ForeignKey("CompPgmBasisId") | |
| .Fetch.Join(); |
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
| 677e683 HEAD@{9}: merge drop-tables: Fast-forward | |
| 18efb65 HEAD@{10}: checkout: moving from drop-tables to master | |
| 677e683 HEAD@{11}: commit: Remove all references to PumpTest and ValveTest | |
| 9488a30 HEAD@{12}: commit: Drop unused tables | |
| 18efb65 HEAD@{13}: checkout: moving from 18efb65bbe990acaf658d855326dc3a0d2aac17f to drop-tables | |
| 18efb65 HEAD@{14}: checkout: moving from master to 18efb65bbe990acaf658d855326dc3a0d2aac17f^0 |
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
| Tue Apr 26 23:45:05 2011 | |
| panic(cpu 0 caller 0x2aab59): Kernel trap at 0x002347db, type 14=page fault, registers: | |
| CR0: 0x80010033, CR2: 0x14e25000, CR3: 0x666bf000, CR4: 0x00000668 | |
| EAX: 0x00000000, EBX: 0x00000004, ECX: 0x14e25000, EDX: 0x0367607c | |
| CR2: 0x14e25000, EBP: 0x58b628b8, ESI: 0x00000004, EDI: 0x0b0b0c00 | |
| EFL: 0x00010202, EIP: 0x002347db, CS: 0x00000008, DS: 0x00000010 | |
| Error code: 0x00000000 | |
| Backtrace (CPU 0), Frame : Return Address (4 potential args on stack) | |
| 0x58b62648 : 0x21b510 (0x5d9514 0x58b6267c 0x223978 0x0) |
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
| [09:17:58]: Step 5/6: Machine.Specifications (MSpec) (57s) | |
| [09:18:50]: [Step 5/6] Property value not found | |
| Valid property list format is (name( )*=( )*'escaped_value'( )*)* where escape simbol is "|" | |
| [09:18:55]: [Step 5/6] Process exited with code -3 | |
| [09:18:55]: [Step 5/6] Step Machine.Specifications (MSpec) failed |
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
| Error: Fatal error: System.InvalidOperationException: Sequence contains more than one element | |
| at System.Linq.Enumerable.SingleOrDefault[TSource](IEnumerable`1 source) | |
| at Machine.Specifications.Factories.BehaviorFactory.EnsureAllBehaviorFieldsAreInContext(Type behaviorType, Object behaviorInstance, Context context) in d:\BuildAgent-01\work\9f23de4d4da9eb12\Source\Machine.Specifications\Factories\BehaviorFactory.cs:line 66 | |
| at Machine.Specifications.Factories.BehaviorFactory.CreateBehaviorFrom(FieldInfo behaviorField, Context context) in d:\BuildAgent-01\work\9f23de4d4da9eb12\Source\Machine.Specifications\Factories\BehaviorFactory.cs:line 46 | |
| at Machine.Specifications.Factories.ContextFactory.CreateSpecificationsFromBehaviors(IEnumerable`1 itShouldBehaveLikeFieldInfos, Context context) in d:\BuildAgent-01\work\9f23de4d4da9eb12\Source\Machine.Specifications\Factories\ContextFactory.cs:line 146 | |
| at Machine.Specifications.Factories.ContextFactory.CreateContextFrom(Object instance, IEnumerable`1 accepte |
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
| [svn-remote "svn"] | |
| url = http://svnserver/svn/ProjectDev | |
| fetch = trunk:refs/remotes/trunk | |
| branches = branches/*:refs/remotes/* | |
| tags = tags/*:refs/remotes/tags/* |
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
| public static void CloseStatus() | |
| { | |
| statusForm.Update("Changes Applied!", 100); | |
| Application.DoEvents(); | |
| System.Threading.Thread.Sleep(1500); | |
| statusForm.Update("good bye", 1000); | |
| Application.DoEvents(); | |
| } |