generated from arras-energy/gridlabd-old
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David P. Chassin
authored
Sep 22, 2023
0 parents
commit b92e990
Showing
3,990 changed files
with
5,518,193 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Set default line endings for text files to be lf | ||
* text eol=lf | ||
|
||
# Denote all files that are truly binary and should not be modified | ||
*.d binary | ||
*.slo binary | ||
*.lo binary | ||
*.o binary | ||
*.obj binary | ||
*.gch binary | ||
*.pch binary | ||
*.so binary | ||
*.dylib binary | ||
*.dll binary | ||
*.mod binary | ||
*.smod binary | ||
*.lai binary | ||
*.la binary | ||
*.a binary | ||
*.lib binary | ||
*.exe binary | ||
*.out binary | ||
*.app binary | ||
*.bin binary | ||
*.ko binary | ||
*.elf binary | ||
*.so.* binary | ||
*.i*86 binary | ||
*.x86_64 binary | ||
*.hex binary | ||
*.su binary | ||
*.dSYM binary | ||
*.jar binary | ||
*.aps binary | ||
*.png binary | ||
*.jpg binary | ||
*.PNG binary | ||
*.zip binary | ||
*.ppt binary | ||
*.ncb binary | ||
*.pdf binary | ||
*.tar.gz binary | ||
*.docx binary | ||
*.doc binary | ||
*.xls binary | ||
*.xlsx binary | ||
*.mdb binary | ||
*.tif binary | ||
.circleci/config.yml merge=ours |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Enhancement request | ||
about: Suggest an enhancement idea for this project | ||
title: "(Provide a one-line synopsis of your enhancement request)" | ||
labels: enhancement | ||
assignees: dchassin | ||
|
||
--- | ||
|
||
## Background | ||
(Write a clear and concise description of what the problem is. For example, "it's difficult to..." or "I can't...") | ||
|
||
## Proposed solution | ||
(Suggest a clear and concise description of what you want to happen.) | ||
|
||
## Alternatives | ||
(Describe a clear and concise description of any alternative solutions you've tried or considered.) | ||
|
||
## Additional context | ||
(Add any other context, supporting information, or screenshots about the proposed change request here.) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
name: Problem report | ||
about: Report a problem for us to resolve | ||
title: "(Provide a one-line synopsis of the problem)" | ||
labels: bug | ||
assignees: dchassin | ||
|
||
--- | ||
|
||
## Problem description | ||
|
||
(Write a clear and concise description of what the bug is.) | ||
|
||
## Steps to reproduce | ||
|
||
(Explain how to reproduce the behavior, e.g.,) | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
## Expected behavior | ||
|
||
(Provide a clear and concise description of what you expected to happen.) | ||
|
||
## System information | ||
|
||
* GridLAB-D version: (Insert output of `gridlabd --version=all` here) | ||
* Operating system: (Insert output of `uname -a` here) | ||
|
||
## Supporting information | ||
|
||
(Add any other context about the problem here.) | ||
|
||
## Attachments | ||
|
||
(If applicable, attach screenshots, supporting files, and other data need to help explain and reproduce the problem. If you encountered a program fault or internal error, and you have built GridLAB-D with `-O0 -g`, then on Linux systems you can attach the output of the following command:) | ||
~~~ | ||
bash$ ulimit -c unlimited | ||
bash$ gridlabd <your command options...> | ||
... crash dumps core ... | ||
bash$ gdb -batch -ex "backtrace" $(gridlabd --version=install) ./core | ||
~~~ | ||
|
||
(If you are running on macOS, you must use `lldb` to do the following.) | ||
~~~ | ||
bash$ ulimit -c unlimited | ||
bash$ ls -lt /cores # find the most recent core dump | ||
bash$ lldb -c /cores/core.<number> | ||
(lldb) bt -- backtrace | ||
~~~ |
Oops, something went wrong.