Parent Issue: autowarefoundation/autoware#6852
PR: autowarefoundation/autoware#6851
Branch: ci/new-docker
Status: Open
Stats: +1215 lines, 0 deletions, 13 new files, 36 commits
GCC's built-in coverage tool. When you compile with --coverage, GCC instruments the binary and produces:
.gcnofiles ("notes") at compile time — which lines/branches exist.gcdafiles ("data") at runtime — which lines actually executed
gcov reads both and outputs per-file .gcov text files showing hit counts per line.
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
| [/Script/Engine.Engine] | |
| bSmoothFrameRate=false | |
| SmoothedFrameRateRange=(LowerBound=(Type="ERangeBoundTypes::Inclusive",Value=22),UpperBound=(Type="ERangeBoundTypes::Exclusive",Value=120)) | |
| [/Script/HardwareTargeting.HardwareTargetingSettings] | |
| TargetedHardwareClass=Desktop | |
| AppliedTargetedHardwareClass=Desktop | |
| DefaultGraphicsPerformance=Maximum | |
| AppliedDefaultGraphicsPerformance=Maximum |
This file has been truncated, but you can view the full file.
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
| <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | |
| <!DOCTYPE boost_serialization> | |
| <boost_serialization signature="serialization::archive" version="9"> | |
| <tracklets class_id="0" tracking_level="0" version="0"> | |
| <count>1</count> | |
| <item_version>1</item_version> | |
| <item class_id="1" tracking_level="0" version="1"> | |
| <objectType>Car</objectType> | |
| <h>1.651000</h> | |
| <w>1.778000</w> |
This is a tutorial to realize following video: https://www.youtube.com/watch?v=PBiOGvJRPqg
- Android phone Marsmallow or higher or Apple phone (for google assistant)
- IFTTT app
- Blynk app
- Arduino UNO
- ESP8266 Wifi module
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
| // Jyt is a REPL for C++ | |
| // You can write code interactively | |
| // Highlight some code and press alt-enter to execute it | |
| // For example: | |
| auto x = "hello world"; | |
| // Now you can query the value in the terminal on the right | |
| // e.g. "x" |
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
| civsBombardTower = ["Byzantines", | |
| "Chinese", | |
| "Italians", | |
| "Koreans", | |
| "Spanish", | |
| "Teutons", | |
| "Turks"] | |
| civs = ["Aztecs", |
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
| DataTable dt = new DataTable(); | |
| myDataGridView.DataSource = dt; | |
| dt.Columns.Add("Time Column", typeof (DateTime)); | |
| dt.Rows.Add(DateTime.Now); | |
| /* | |
| I need to show it on dataGridView through | |
| DateTime.ToString("dd/MMM/yyyy") format | |
| but how? |
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
| class TheClass | |
| { | |
| public int Val1; | |
| public int Val2; | |
| public int Val3; | |
| public TheClass Old; | |
| public void Remember() | |
| { | |
| Old = new TheClass(); |
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
| class TheClass | |
| { | |
| public int Val1; | |
| public TheClass Old; | |
| public void Remember() | |
| { | |
| Old = (TheClass)MemberwiseClone(); | |
| } | |
| } |
NewerOlder