Unnamed: 0
int64 0
832k
| id
float64 2.49B
32.1B
| type
stringclasses 1
value | created_at
stringlengths 19
19
| repo
stringlengths 5
112
| repo_url
stringlengths 34
141
| action
stringclasses 3
values | title
stringlengths 1
855
| labels
stringlengths 4
721
| body
stringlengths 1
261k
| index
stringclasses 13
values | text_combine
stringlengths 96
261k
| label
stringclasses 2
values | text
stringlengths 96
240k
| binary_label
int64 0
1
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
558,677
| 16,540,347,719
|
IssuesEvent
|
2021-05-27 16:02:27
|
CredentialEngine/CredentialRegistry
|
https://api.github.com/repos/CredentialEngine/CredentialRegistry
|
closed
|
Getting a count of total results in SPARQL is extremely slow
|
Blocker High Priority
|
What we're seeing currently:
- Queries like "all of the credentials with a given SOC code" take about 45 seconds
- I took the query apart into its two pieces, "all credentials" and "things with a given SOC code", and:
- "all credentials" takes about a full minute(!) to execute
- "things with a given SOC code" takes about 18 seconds
That first one is really surprising, and a problem. Even if I:
- Remove the only traversal in the query (the one that fetches the payload for each match)
- Remove the part of the query that gets a count of all matches
- Add a global limit of 5 items to the very end of the query, outside all of its scopes
It still takes over 50 seconds.
If I add a limit of 5 to the inner query, then I can get the results back in ~2-4 seconds, but that also breaks the total results count (as it will never show a total greater than 5 since SPARQL stops counting when it hits that inner limit).
In previous versions of how this stuff gets built, I had tried running two queries (one for the data and one for the count, but otherwise identical) as separate but simultaneous requests. It seemed like one slowed the other down so there was no meaningful difference in the time it took to do that (but that was in an earlier SPARQL engine version). It seems the problem is in the way the total number of results is fetched.
Out of curiosity, I tried running the same query but just returning the count (no results) - it took almost a minute and a half.
The queries in question:
"Get all of the credentials for a given SOC code":
```
PREFIX credreg: <https://credreg.net/> PREFIX ceterms: <https://purl.org/ctdl/terms/> SELECT ?totalResults ?id ?searchResultPayload ?relevance_score WITH { SELECT DISTINCT ?id ?searchResultPayload (SUM(COALESCE(?relevance_points_947cd59921884436aef740734d208937, 0)) AS ?relevance_score) WHERE { <http://aws.amazon.com/neptune/vocab/v01/QueryHints#Query> <http://aws.amazon.com/neptune/vocab/v01/QueryHints#joinOrder> 'Ordered' . ?id ceterms:ctid ?anyValue . { { VALUES ?360084717ea14cb1bfecf727052ae9c4 { ceterms:ApprenticeshipCertificate ceterms:AssociateDegree ceterms:BachelorDegree ceterms:Badge ceterms:Certificate ceterms:CertificateOfCompletion ceterms:Certification ceterms:Degree ceterms:DigitalBadge ceterms:Diploma ceterms:DoctoralDegree ceterms:GeneralEducationDevelopment ceterms:JourneymanCertificate ceterms:License ceterms:MasterCertificate ceterms:MasterDegree ceterms:MicroCredential ceterms:OpenBadge ceterms:ProfessionalDoctorate ceterms:QualityAssuranceCredential ceterms:ResearchDoctorate ceterms:SecondarySchoolDiploma } ?id a ?360084717ea14cb1bfecf727052ae9c4 . } { ?id ( (ceterms:occupationType/^credreg:__graph?) | (credreg:__graph?/^ceterms:occupationType) ) ?0911544d1a2647d482503b4fc3940725 . { ?0911544d1a2647d482503b4fc3940725 ( ceterms:codedNotation__tokenData ) ?tokens_e65b9c7f82554b03ac58637e89c62216 . { { ?tokens_e65b9c7f82554b03ac58637e89c62216 ( credreg:__tokenFullNormalized ) ?normalized_ee32d46bee8b4e79af50bab0a1b92ae2 . BIND(IF(REGEX(?normalized_ee32d46bee8b4e79af50bab0a1b92ae2, '13|20'),IF(REGEX(?normalized_ee32d46bee8b4e79af50bab0a1b92ae2, '13 20'), 1250, IF(REGEX(?normalized_ee32d46bee8b4e79af50bab0a1b92ae2, ''), 125, IF(REGEX(?normalized_ee32d46bee8b4e79af50bab0a1b92ae2, '13'), 4, 0) + IF(REGEX(?normalized_ee32d46bee8b4e79af50bab0a1b92ae2, '20'), 4, 0))), 0) AS ?relevance_points_947cd59921884436aef740734d208937) FILTER(?relevance_points_947cd59921884436aef740734d208937 > 0) } } } } } ?id credreg:__payload ?searchResultPayload . } GROUP BY ?id ?searchResultPayload ?relevance_score } AS %mainQuery WHERE { { SELECT (COUNT(DISTINCT ?id) AS ?totalResults) WHERE { INCLUDE %mainQuery } } UNION { SELECT ?id ?searchResultPayload ?relevance_score ?recordDate WHERE { INCLUDE %mainQuery } ORDER BY DESC(?relevance_score) OFFSET 0 LIMIT 5 } } ORDER BY DESC(?relevance_score)
```
"Get all of the credentials":
```
PREFIX credreg: <https://credreg.net/> PREFIX ceterms: <https://purl.org/ctdl/terms/> SELECT ?totalResults ?id ?searchResultPayload ?relevance_score WITH { SELECT DISTINCT ?id ?searchResultPayload WHERE { <http://aws.amazon.com/neptune/vocab/v01/QueryHints#Query> <http://aws.amazon.com/neptune/vocab/v01/QueryHints#joinOrder> 'Ordered' . ?id ceterms:ctid ?anyValue . { { VALUES ?c9fa2af5263b4d019c53f582f70e6d30 { ceterms:ApprenticeshipCertificate ceterms:AssociateDegree ceterms:BachelorDegree ceterms:Badge ceterms:Certificate ceterms:CertificateOfCompletion ceterms:Certification ceterms:Degree ceterms:DigitalBadge ceterms:Diploma ceterms:DoctoralDegree ceterms:GeneralEducationDevelopment ceterms:JourneymanCertificate ceterms:License ceterms:MasterCertificate ceterms:MasterDegree ceterms:MicroCredential ceterms:OpenBadge ceterms:ProfessionalDoctorate ceterms:QualityAssuranceCredential ceterms:ResearchDoctorate ceterms:SecondarySchoolDiploma } ?id a ?c9fa2af5263b4d019c53f582f70e6d30 . } } ?id credreg:__payload ?searchResultPayload . } } AS %mainQuery WHERE { { SELECT (COUNT(DISTINCT ?id) AS ?totalResults) WHERE { INCLUDE %mainQuery } } UNION { SELECT ?id ?searchResultPayload ?relevance_score ?recordDate WHERE { INCLUDE %mainQuery } ORDER BY DESC(?id) OFFSET 0 LIMIT 5 } } ORDER BY DESC(?id)
```
"Get all of the things with a given SOC code":
```
PREFIX credreg: <https://credreg.net/> PREFIX ceterms: <https://purl.org/ctdl/terms/> SELECT ?totalResults ?id ?searchResultPayload ?relevance_score WITH { SELECT DISTINCT ?id ?searchResultPayload (SUM(COALESCE(?relevance_points_51f0d3ec663b4d67a1cf28c679b88b63, 0)) AS ?relevance_score) WHERE { <http://aws.amazon.com/neptune/vocab/v01/QueryHints#Query> <http://aws.amazon.com/neptune/vocab/v01/QueryHints#joinOrder> 'Ordered' . ?id ceterms:ctid ?anyValue . { { ?id ( (ceterms:occupationType/^credreg:__graph?) | (credreg:__graph?/^ceterms:occupationType) ) ?b676cdb35aeb4f8cb7dd25ab1305199f . { ?b676cdb35aeb4f8cb7dd25ab1305199f ( ceterms:codedNotation__tokenData ) ?tokens_a5f00c8fde3847b3be16352bc05851d2 . { { ?tokens_a5f00c8fde3847b3be16352bc05851d2 ( credreg:__tokenFullNormalized ) ?normalized_91c056153e864b1e963de812893e362b . BIND(IF(REGEX(?normalized_91c056153e864b1e963de812893e362b, '13|20'),IF(REGEX(?normalized_91c056153e864b1e963de812893e362b, '13 20'), 1250, IF(REGEX(?normalized_91c056153e864b1e963de812893e362b, ''), 125, IF(REGEX(?normalized_91c056153e864b1e963de812893e362b, '13'), 4, 0) + IF(REGEX(?normalized_91c056153e864b1e963de812893e362b, '20'), 4, 0))), 0) AS ?relevance_points_51f0d3ec663b4d67a1cf28c679b88b63) FILTER(?relevance_points_51f0d3ec663b4d67a1cf28c679b88b63 > 0) } } } } } ?id credreg:__payload ?searchResultPayload . } GROUP BY ?id ?searchResultPayload ?relevance_score } AS %mainQuery WHERE { { SELECT (COUNT(DISTINCT ?id) AS ?totalResults) WHERE { INCLUDE %mainQuery } } UNION { SELECT ?id ?searchResultPayload ?relevance_score ?recordDate WHERE { INCLUDE %mainQuery } ORDER BY DESC(?relevance_score) OFFSET 0 LIMIT 5 } } ORDER BY DESC(?relevance_score)
```
By far, the slowest part of it seems to be the COUNT(), even when there are no traversals. That seems odd to me.
|
1.0
|
Getting a count of total results in SPARQL is extremely slow - What we're seeing currently:
- Queries like "all of the credentials with a given SOC code" take about 45 seconds
- I took the query apart into its two pieces, "all credentials" and "things with a given SOC code", and:
- "all credentials" takes about a full minute(!) to execute
- "things with a given SOC code" takes about 18 seconds
That first one is really surprising, and a problem. Even if I:
- Remove the only traversal in the query (the one that fetches the payload for each match)
- Remove the part of the query that gets a count of all matches
- Add a global limit of 5 items to the very end of the query, outside all of its scopes
It still takes over 50 seconds.
If I add a limit of 5 to the inner query, then I can get the results back in ~2-4 seconds, but that also breaks the total results count (as it will never show a total greater than 5 since SPARQL stops counting when it hits that inner limit).
In previous versions of how this stuff gets built, I had tried running two queries (one for the data and one for the count, but otherwise identical) as separate but simultaneous requests. It seemed like one slowed the other down so there was no meaningful difference in the time it took to do that (but that was in an earlier SPARQL engine version). It seems the problem is in the way the total number of results is fetched.
Out of curiosity, I tried running the same query but just returning the count (no results) - it took almost a minute and a half.
The queries in question:
"Get all of the credentials for a given SOC code":
```
PREFIX credreg: <https://credreg.net/> PREFIX ceterms: <https://purl.org/ctdl/terms/> SELECT ?totalResults ?id ?searchResultPayload ?relevance_score WITH { SELECT DISTINCT ?id ?searchResultPayload (SUM(COALESCE(?relevance_points_947cd59921884436aef740734d208937, 0)) AS ?relevance_score) WHERE { <http://aws.amazon.com/neptune/vocab/v01/QueryHints#Query> <http://aws.amazon.com/neptune/vocab/v01/QueryHints#joinOrder> 'Ordered' . ?id ceterms:ctid ?anyValue . { { VALUES ?360084717ea14cb1bfecf727052ae9c4 { ceterms:ApprenticeshipCertificate ceterms:AssociateDegree ceterms:BachelorDegree ceterms:Badge ceterms:Certificate ceterms:CertificateOfCompletion ceterms:Certification ceterms:Degree ceterms:DigitalBadge ceterms:Diploma ceterms:DoctoralDegree ceterms:GeneralEducationDevelopment ceterms:JourneymanCertificate ceterms:License ceterms:MasterCertificate ceterms:MasterDegree ceterms:MicroCredential ceterms:OpenBadge ceterms:ProfessionalDoctorate ceterms:QualityAssuranceCredential ceterms:ResearchDoctorate ceterms:SecondarySchoolDiploma } ?id a ?360084717ea14cb1bfecf727052ae9c4 . } { ?id ( (ceterms:occupationType/^credreg:__graph?) | (credreg:__graph?/^ceterms:occupationType) ) ?0911544d1a2647d482503b4fc3940725 . { ?0911544d1a2647d482503b4fc3940725 ( ceterms:codedNotation__tokenData ) ?tokens_e65b9c7f82554b03ac58637e89c62216 . { { ?tokens_e65b9c7f82554b03ac58637e89c62216 ( credreg:__tokenFullNormalized ) ?normalized_ee32d46bee8b4e79af50bab0a1b92ae2 . BIND(IF(REGEX(?normalized_ee32d46bee8b4e79af50bab0a1b92ae2, '13|20'),IF(REGEX(?normalized_ee32d46bee8b4e79af50bab0a1b92ae2, '13 20'), 1250, IF(REGEX(?normalized_ee32d46bee8b4e79af50bab0a1b92ae2, ''), 125, IF(REGEX(?normalized_ee32d46bee8b4e79af50bab0a1b92ae2, '13'), 4, 0) + IF(REGEX(?normalized_ee32d46bee8b4e79af50bab0a1b92ae2, '20'), 4, 0))), 0) AS ?relevance_points_947cd59921884436aef740734d208937) FILTER(?relevance_points_947cd59921884436aef740734d208937 > 0) } } } } } ?id credreg:__payload ?searchResultPayload . } GROUP BY ?id ?searchResultPayload ?relevance_score } AS %mainQuery WHERE { { SELECT (COUNT(DISTINCT ?id) AS ?totalResults) WHERE { INCLUDE %mainQuery } } UNION { SELECT ?id ?searchResultPayload ?relevance_score ?recordDate WHERE { INCLUDE %mainQuery } ORDER BY DESC(?relevance_score) OFFSET 0 LIMIT 5 } } ORDER BY DESC(?relevance_score)
```
"Get all of the credentials":
```
PREFIX credreg: <https://credreg.net/> PREFIX ceterms: <https://purl.org/ctdl/terms/> SELECT ?totalResults ?id ?searchResultPayload ?relevance_score WITH { SELECT DISTINCT ?id ?searchResultPayload WHERE { <http://aws.amazon.com/neptune/vocab/v01/QueryHints#Query> <http://aws.amazon.com/neptune/vocab/v01/QueryHints#joinOrder> 'Ordered' . ?id ceterms:ctid ?anyValue . { { VALUES ?c9fa2af5263b4d019c53f582f70e6d30 { ceterms:ApprenticeshipCertificate ceterms:AssociateDegree ceterms:BachelorDegree ceterms:Badge ceterms:Certificate ceterms:CertificateOfCompletion ceterms:Certification ceterms:Degree ceterms:DigitalBadge ceterms:Diploma ceterms:DoctoralDegree ceterms:GeneralEducationDevelopment ceterms:JourneymanCertificate ceterms:License ceterms:MasterCertificate ceterms:MasterDegree ceterms:MicroCredential ceterms:OpenBadge ceterms:ProfessionalDoctorate ceterms:QualityAssuranceCredential ceterms:ResearchDoctorate ceterms:SecondarySchoolDiploma } ?id a ?c9fa2af5263b4d019c53f582f70e6d30 . } } ?id credreg:__payload ?searchResultPayload . } } AS %mainQuery WHERE { { SELECT (COUNT(DISTINCT ?id) AS ?totalResults) WHERE { INCLUDE %mainQuery } } UNION { SELECT ?id ?searchResultPayload ?relevance_score ?recordDate WHERE { INCLUDE %mainQuery } ORDER BY DESC(?id) OFFSET 0 LIMIT 5 } } ORDER BY DESC(?id)
```
"Get all of the things with a given SOC code":
```
PREFIX credreg: <https://credreg.net/> PREFIX ceterms: <https://purl.org/ctdl/terms/> SELECT ?totalResults ?id ?searchResultPayload ?relevance_score WITH { SELECT DISTINCT ?id ?searchResultPayload (SUM(COALESCE(?relevance_points_51f0d3ec663b4d67a1cf28c679b88b63, 0)) AS ?relevance_score) WHERE { <http://aws.amazon.com/neptune/vocab/v01/QueryHints#Query> <http://aws.amazon.com/neptune/vocab/v01/QueryHints#joinOrder> 'Ordered' . ?id ceterms:ctid ?anyValue . { { ?id ( (ceterms:occupationType/^credreg:__graph?) | (credreg:__graph?/^ceterms:occupationType) ) ?b676cdb35aeb4f8cb7dd25ab1305199f . { ?b676cdb35aeb4f8cb7dd25ab1305199f ( ceterms:codedNotation__tokenData ) ?tokens_a5f00c8fde3847b3be16352bc05851d2 . { { ?tokens_a5f00c8fde3847b3be16352bc05851d2 ( credreg:__tokenFullNormalized ) ?normalized_91c056153e864b1e963de812893e362b . BIND(IF(REGEX(?normalized_91c056153e864b1e963de812893e362b, '13|20'),IF(REGEX(?normalized_91c056153e864b1e963de812893e362b, '13 20'), 1250, IF(REGEX(?normalized_91c056153e864b1e963de812893e362b, ''), 125, IF(REGEX(?normalized_91c056153e864b1e963de812893e362b, '13'), 4, 0) + IF(REGEX(?normalized_91c056153e864b1e963de812893e362b, '20'), 4, 0))), 0) AS ?relevance_points_51f0d3ec663b4d67a1cf28c679b88b63) FILTER(?relevance_points_51f0d3ec663b4d67a1cf28c679b88b63 > 0) } } } } } ?id credreg:__payload ?searchResultPayload . } GROUP BY ?id ?searchResultPayload ?relevance_score } AS %mainQuery WHERE { { SELECT (COUNT(DISTINCT ?id) AS ?totalResults) WHERE { INCLUDE %mainQuery } } UNION { SELECT ?id ?searchResultPayload ?relevance_score ?recordDate WHERE { INCLUDE %mainQuery } ORDER BY DESC(?relevance_score) OFFSET 0 LIMIT 5 } } ORDER BY DESC(?relevance_score)
```
By far, the slowest part of it seems to be the COUNT(), even when there are no traversals. That seems odd to me.
|
priority
|
getting a count of total results in sparql is extremely slow what we re seeing currently queries like all of the credentials with a given soc code take about seconds i took the query apart into its two pieces all credentials and things with a given soc code and all credentials takes about a full minute to execute things with a given soc code takes about seconds that first one is really surprising and a problem even if i remove the only traversal in the query the one that fetches the payload for each match remove the part of the query that gets a count of all matches add a global limit of items to the very end of the query outside all of its scopes it still takes over seconds if i add a limit of to the inner query then i can get the results back in seconds but that also breaks the total results count as it will never show a total greater than since sparql stops counting when it hits that inner limit in previous versions of how this stuff gets built i had tried running two queries one for the data and one for the count but otherwise identical as separate but simultaneous requests it seemed like one slowed the other down so there was no meaningful difference in the time it took to do that but that was in an earlier sparql engine version it seems the problem is in the way the total number of results is fetched out of curiosity i tried running the same query but just returning the count no results it took almost a minute and a half the queries in question get all of the credentials for a given soc code prefix credreg id credreg payload searchresultpayload group by id searchresultpayload relevance score as mainquery where select count distinct id as totalresults where include mainquery union select id searchresultpayload relevance score recorddate where include mainquery order by desc relevance score offset limit order by desc relevance score get all of the credentials prefix credreg prefix ceterms select totalresults id searchresultpayload relevance score with select distinct id searchresultpayload where ordered id ceterms ctid anyvalue values ceterms apprenticeshipcertificate ceterms associatedegree ceterms bachelordegree ceterms badge ceterms certificate ceterms certificateofcompletion ceterms certification ceterms degree ceterms digitalbadge ceterms diploma ceterms doctoraldegree ceterms generaleducationdevelopment ceterms journeymancertificate ceterms license ceterms mastercertificate ceterms masterdegree ceterms microcredential ceterms openbadge ceterms professionaldoctorate ceterms qualityassurancecredential ceterms researchdoctorate ceterms secondaryschooldiploma id a id credreg payload searchresultpayload as mainquery where select count distinct id as totalresults where include mainquery union select id searchresultpayload relevance score recorddate where include mainquery order by desc id offset limit order by desc id get all of the things with a given soc code prefix credreg id credreg payload searchresultpayload group by id searchresultpayload relevance score as mainquery where select count distinct id as totalresults where include mainquery union select id searchresultpayload relevance score recorddate where include mainquery order by desc relevance score offset limit order by desc relevance score by far the slowest part of it seems to be the count even when there are no traversals that seems odd to me
| 1
|
509,143
| 14,713,799,564
|
IssuesEvent
|
2021-01-05 10:55:37
|
wso2/devstudio-tooling-ei
|
https://api.github.com/repos/wso2/devstudio-tooling-ei
|
closed
|
Validations are not working when creating a new API with a swagger definition
|
Priority/High Severity/Major Swagger Type/Bug
|
**Description:**
In the Integration Studio, we can create an API with a swagger definition. However, it throws NPE if the swagger definition is not in the correct format. We need to handle this tooling itself. Also, in **Create new API** wizard we can create an API without pointing a swagger definition file. It always enables the **Finish** button in the wizard to create an API.
**Suggested Labels:**
Type/Bug
|
1.0
|
Validations are not working when creating a new API with a swagger definition - **Description:**
In the Integration Studio, we can create an API with a swagger definition. However, it throws NPE if the swagger definition is not in the correct format. We need to handle this tooling itself. Also, in **Create new API** wizard we can create an API without pointing a swagger definition file. It always enables the **Finish** button in the wizard to create an API.
**Suggested Labels:**
Type/Bug
|
priority
|
validations are not working when creating a new api with a swagger definition description in the integration studio we can create an api with a swagger definition however it throws npe if the swagger definition is not in the correct format we need to handle this tooling itself also in create new api wizard we can create an api without pointing a swagger definition file it always enables the finish button in the wizard to create an api suggested labels type bug
| 1
|
589,848
| 17,761,839,143
|
IssuesEvent
|
2021-08-29 21:00:25
|
ClinGen/clincoded
|
https://api.github.com/repos/ClinGen/clincoded
|
closed
|
Case/Seg - guidance text for selecting evidence source type
|
priority: high VCI colleague request requires specification dependency
|
Add in guidance text for selecting evidence source type in Case/Seg tab.

|
1.0
|
Case/Seg - guidance text for selecting evidence source type - Add in guidance text for selecting evidence source type in Case/Seg tab.

|
priority
|
case seg guidance text for selecting evidence source type add in guidance text for selecting evidence source type in case seg tab
| 1
|
153,817
| 5,903,993,436
|
IssuesEvent
|
2017-05-19 08:36:15
|
metasfresh/metasfresh
|
https://api.github.com/repos/metasfresh/metasfresh
|
closed
|
HU Transform - split out some TUs from LU does not work correctly with custom LUs
|
priority:high release:candidate status:integrated type:bug
|
### Is this a bug or feature request?
Bug
### What is the current behavior?
#### Which are the steps to reproduce?
Consider following setup and test case (you can have it with different numbers):
* have a product which has the CU-TU capacity: 7 Kg per TU
* receive an LU with 10 TUs each of the TU shall have 10 Kg (and NOT 7Kg as the standard says)
* use HU Transform process to take out 2 TUs
You will get:
* 3 TUs instead of 2 TUs
** TU1 : 7Kg
** TU2: 7Kg
** TU3: 6Kg
That's because the BL considered the standard TU capacity when splitting out.
But when the BL calculated how much Qty CU in total shall be splitted out, it used 2x10Kg=20Kg
### What is the expected or desired behavior?
We shall get 2 TUs, each of them having 10Kg.
|
1.0
|
HU Transform - split out some TUs from LU does not work correctly with custom LUs - ### Is this a bug or feature request?
Bug
### What is the current behavior?
#### Which are the steps to reproduce?
Consider following setup and test case (you can have it with different numbers):
* have a product which has the CU-TU capacity: 7 Kg per TU
* receive an LU with 10 TUs each of the TU shall have 10 Kg (and NOT 7Kg as the standard says)
* use HU Transform process to take out 2 TUs
You will get:
* 3 TUs instead of 2 TUs
** TU1 : 7Kg
** TU2: 7Kg
** TU3: 6Kg
That's because the BL considered the standard TU capacity when splitting out.
But when the BL calculated how much Qty CU in total shall be splitted out, it used 2x10Kg=20Kg
### What is the expected or desired behavior?
We shall get 2 TUs, each of them having 10Kg.
|
priority
|
hu transform split out some tus from lu does not work correctly with custom lus is this a bug or feature request bug what is the current behavior which are the steps to reproduce consider following setup and test case you can have it with different numbers have a product which has the cu tu capacity kg per tu receive an lu with tus each of the tu shall have kg and not as the standard says use hu transform process to take out tus you will get tus instead of tus that s because the bl considered the standard tu capacity when splitting out but when the bl calculated how much qty cu in total shall be splitted out it used what is the expected or desired behavior we shall get tus each of them having
| 1
|
487,892
| 14,061,025,708
|
IssuesEvent
|
2020-11-03 07:20:35
|
bryntum/support
|
https://api.github.com/repos/bryntum/support
|
closed
|
Export to MSP - Add support for version MSP 2019
|
bug high-priority resolved
|
Reference: https://github.com/bryntum/support/issues/1250
- [x] Make work for version MSP 2019
- [x] Export Assignments with percent work complete
- [x] Export CalendarUID for resources
Version 2013:

Version 2019:

XML File Generated:
[Launch SaaS Product.xml.zip](https://github.com/bryntum/support/files/5295305/Launch.SaaS.Product.xml.zip)
|
1.0
|
Export to MSP - Add support for version MSP 2019 - Reference: https://github.com/bryntum/support/issues/1250
- [x] Make work for version MSP 2019
- [x] Export Assignments with percent work complete
- [x] Export CalendarUID for resources
Version 2013:

Version 2019:

XML File Generated:
[Launch SaaS Product.xml.zip](https://github.com/bryntum/support/files/5295305/Launch.SaaS.Product.xml.zip)
|
priority
|
export to msp add support for version msp reference make work for version msp export assignments with percent work complete export calendaruid for resources version version xml file generated
| 1
|
197,066
| 6,952,042,980
|
IssuesEvent
|
2017-12-06 16:14:56
|
vmware/vic-product
|
https://api.github.com/repos/vmware/vic-product
|
opened
|
Clarify NFS docs
|
component/vic-engine kind/user-doc priority/high pub/vsphere
|
Per Slack chat with @zjs, @jooskim, @matthewavery:
- The API is just a passthrough to the library, but the UI seems to have a dropdown for selecting a datastore (which is a good thing), but no way to turn that into a free-form text box to supply an NFS server. I think it's an easy thing to add post-1.3
- nfs volumes should show up
- in my dev environment i have one nfs volume attached to a cluster, for which i get an entry under the dropdown
- we haven’t made significant changes to the way we fetch datastores so it should be showing up
- NFS datastores show up, but only in the same way that other datastores do. It looks like there's a lot more flexibility when configuring NFS on the command-line:
- so i thought that once you’ve selected a cluster, one of the hosts under the cluster should have the nfs volume available
- NFS datastores show up, but there's no way to specify an NFS server that isn't a datastore or configure NFS-specific settings (which might be a gap in the API as well).
- no the nfs volume store does not need to be backed by an nfs datastore. An NFS datastore is actually a datastore that is backed by a sharepoint.
- Sounds like we'll have to file issues to fix this in the API and CLI, and have a note directing the user to the command-line for 1.3
- For this reason, the nfs volumestore target is not intended to be a datastore(atleast for now). But rather a sharepoint. If you do use an nfs datastore as the target then we will make vmdks on it, which are not shareable.
So, for 1.3, we need to document that if your NFS sharepoint is not an NFS datastore, you need to do `vic-machine configure` after deployment, to add it. @zjs @matthewavery is this accurate?
|
1.0
|
Clarify NFS docs - Per Slack chat with @zjs, @jooskim, @matthewavery:
- The API is just a passthrough to the library, but the UI seems to have a dropdown for selecting a datastore (which is a good thing), but no way to turn that into a free-form text box to supply an NFS server. I think it's an easy thing to add post-1.3
- nfs volumes should show up
- in my dev environment i have one nfs volume attached to a cluster, for which i get an entry under the dropdown
- we haven’t made significant changes to the way we fetch datastores so it should be showing up
- NFS datastores show up, but only in the same way that other datastores do. It looks like there's a lot more flexibility when configuring NFS on the command-line:
- so i thought that once you’ve selected a cluster, one of the hosts under the cluster should have the nfs volume available
- NFS datastores show up, but there's no way to specify an NFS server that isn't a datastore or configure NFS-specific settings (which might be a gap in the API as well).
- no the nfs volume store does not need to be backed by an nfs datastore. An NFS datastore is actually a datastore that is backed by a sharepoint.
- Sounds like we'll have to file issues to fix this in the API and CLI, and have a note directing the user to the command-line for 1.3
- For this reason, the nfs volumestore target is not intended to be a datastore(atleast for now). But rather a sharepoint. If you do use an nfs datastore as the target then we will make vmdks on it, which are not shareable.
So, for 1.3, we need to document that if your NFS sharepoint is not an NFS datastore, you need to do `vic-machine configure` after deployment, to add it. @zjs @matthewavery is this accurate?
|
priority
|
clarify nfs docs per slack chat with zjs jooskim matthewavery the api is just a passthrough to the library but the ui seems to have a dropdown for selecting a datastore which is a good thing but no way to turn that into a free form text box to supply an nfs server i think it s an easy thing to add post nfs volumes should show up in my dev environment i have one nfs volume attached to a cluster for which i get an entry under the dropdown we haven’t made significant changes to the way we fetch datastores so it should be showing up nfs datastores show up but only in the same way that other datastores do it looks like there s a lot more flexibility when configuring nfs on the command line so i thought that once you’ve selected a cluster one of the hosts under the cluster should have the nfs volume available nfs datastores show up but there s no way to specify an nfs server that isn t a datastore or configure nfs specific settings which might be a gap in the api as well no the nfs volume store does not need to be backed by an nfs datastore an nfs datastore is actually a datastore that is backed by a sharepoint sounds like we ll have to file issues to fix this in the api and cli and have a note directing the user to the command line for for this reason the nfs volumestore target is not intended to be a datastore atleast for now but rather a sharepoint if you do use an nfs datastore as the target then we will make vmdks on it which are not shareable so for we need to document that if your nfs sharepoint is not an nfs datastore you need to do vic machine configure after deployment to add it zjs matthewavery is this accurate
| 1
|
190,698
| 6,821,649,267
|
IssuesEvent
|
2017-11-07 17:23:12
|
vmware/vic
|
https://api.github.com/repos/vmware/vic
|
closed
|
Implement IP lookup for VCH create endpoint
|
area/ui priority/high team/lifecycle
|
**Details:**
We need to implement the findings from this issue https://github.com/vmware/vic/issues/6551 regarding the H5C VCH wizard being able find the correct IP of vic-machine-service.
**Acceptance Criteria:**
Demonstrate ability to deploy OVA with vic-machine-service and have the H5C vch wizard be able to find the correct API endpoint and get a successful response.
|
1.0
|
Implement IP lookup for VCH create endpoint - **Details:**
We need to implement the findings from this issue https://github.com/vmware/vic/issues/6551 regarding the H5C VCH wizard being able find the correct IP of vic-machine-service.
**Acceptance Criteria:**
Demonstrate ability to deploy OVA with vic-machine-service and have the H5C vch wizard be able to find the correct API endpoint and get a successful response.
|
priority
|
implement ip lookup for vch create endpoint details we need to implement the findings from this issue regarding the vch wizard being able find the correct ip of vic machine service acceptance criteria demonstrate ability to deploy ova with vic machine service and have the vch wizard be able to find the correct api endpoint and get a successful response
| 1
|
218,262
| 7,330,874,043
|
IssuesEvent
|
2018-03-05 11:27:04
|
wso2/product-apim
|
https://api.github.com/repos/wso2/product-apim
|
closed
|
Exclude httpclient_4.3.1.wso2v2.jar from the product and add the updated version : httpclient_4.3.6.wso2v1.jar
|
2.2.0 Priority/Highest Resolution/Fixed Type/Task
|
**Description:**
Release an **openid4java** orbit bundle by fixing the import version range and exclude httpclient_4.3.1.wso2v2.jar from the product.
And then remove the exclusion of httpclient_4.3.6.wso2v1.jar to make it available in the product to make available the latest fixes to the httpclient.
**Suggested Labels:**
<!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees:**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
**Affected Product Version:**
**OS, DB, other environment details and versions:**
**Steps to reproduce:**
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
|
1.0
|
Exclude httpclient_4.3.1.wso2v2.jar from the product and add the updated version : httpclient_4.3.6.wso2v1.jar - **Description:**
Release an **openid4java** orbit bundle by fixing the import version range and exclude httpclient_4.3.1.wso2v2.jar from the product.
And then remove the exclusion of httpclient_4.3.6.wso2v1.jar to make it available in the product to make available the latest fixes to the httpclient.
**Suggested Labels:**
<!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees:**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
**Affected Product Version:**
**OS, DB, other environment details and versions:**
**Steps to reproduce:**
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
|
priority
|
exclude httpclient jar from the product and add the updated version httpclient jar description release an orbit bundle by fixing the import version range and exclude httpclient jar from the product and then remove the exclusion of httpclient jar to make it available in the product to make available the latest fixes to the httpclient suggested labels suggested assignees affected product version os db other environment details and versions steps to reproduce related issues
| 1
|
553,872
| 16,384,354,961
|
IssuesEvent
|
2021-05-17 08:31:50
|
MathiasReker/Delfinen
|
https://api.github.com/repos/MathiasReker/Delfinen
|
closed
|
Create Discipline
|
feature request high priority required
|
Feature Request
- [x] Create Discpline class
Includes:
Style
Distance
- [x] Enum for Style
Various swimming styles
- [x] Enum for Distance
various Distances in swimming
|
1.0
|
Create Discipline - Feature Request
- [x] Create Discpline class
Includes:
Style
Distance
- [x] Enum for Style
Various swimming styles
- [x] Enum for Distance
various Distances in swimming
|
priority
|
create discipline feature request create discpline class includes style distance enum for style various swimming styles enum for distance various distances in swimming
| 1
|
796,982
| 28,134,225,098
|
IssuesEvent
|
2023-04-01 07:09:56
|
AY2223S2-CS2113-T15-4/tp
|
https://api.github.com/repos/AY2223S2-CS2113-T15-4/tp
|
closed
|
[PE-D][Tester C] Ability to quit the queue of flashcards when giving empty inputs
|
type.Bug priority.High severity.Medium
|

When the user does not type in 'y' or 'n' during the review of the flashcard, the flashcard is not added to the back of the review queue for the day, instead, the user is able to skip through all the flashcards and the gets a false message of " Congrats! You have reviewed all the flashcards due today!" when the user has not done so.
Steps to reproduce: Type "review", press enter, then continue to press enter every time you are prompted to give a 'y' or 'n'
Expected: Some error message, and continues to prompt the user whether he is done reviewing with the flashcard or not
Actual: Exits the review for the day and outputs "Congrats! You have reviewed all the flashcards due today!" when the user has not done so."
<!--session: 1680252405098-9e85e652-f0de-43e6-b248-5a883a5bc5ba-->
<!--Version: Web v3.4.7-->
-------------
Labels: `severity.Low` `type.FunctionalityBug`
original: denzelcjy/ped#1
|
1.0
|
[PE-D][Tester C] Ability to quit the queue of flashcards when giving empty inputs - 
When the user does not type in 'y' or 'n' during the review of the flashcard, the flashcard is not added to the back of the review queue for the day, instead, the user is able to skip through all the flashcards and the gets a false message of " Congrats! You have reviewed all the flashcards due today!" when the user has not done so.
Steps to reproduce: Type "review", press enter, then continue to press enter every time you are prompted to give a 'y' or 'n'
Expected: Some error message, and continues to prompt the user whether he is done reviewing with the flashcard or not
Actual: Exits the review for the day and outputs "Congrats! You have reviewed all the flashcards due today!" when the user has not done so."
<!--session: 1680252405098-9e85e652-f0de-43e6-b248-5a883a5bc5ba-->
<!--Version: Web v3.4.7-->
-------------
Labels: `severity.Low` `type.FunctionalityBug`
original: denzelcjy/ped#1
|
priority
|
ability to quit the queue of flashcards when giving empty inputs when the user does not type in y or n during the review of the flashcard the flashcard is not added to the back of the review queue for the day instead the user is able to skip through all the flashcards and the gets a false message of congrats you have reviewed all the flashcards due today when the user has not done so steps to reproduce type review press enter then continue to press enter every time you are prompted to give a y or n expected some error message and continues to prompt the user whether he is done reviewing with the flashcard or not actual exits the review for the day and outputs congrats you have reviewed all the flashcards due today when the user has not done so labels severity low type functionalitybug original denzelcjy ped
| 1
|
175,762
| 6,553,740,163
|
IssuesEvent
|
2017-09-06 00:39:03
|
minio/minio
|
https://api.github.com/repos/minio/minio
|
closed
|
Multipart Upload Regression between RELEASE.2017-07-24T18-27-35Z and RELEASE.2017-08-05T00-00-53Z
|
priority: high triage working as intended
|
## Expected Behavior
Multipart uploads should complete successfully.
## Current Behavior
A MalformedXML error is returned when complete_upload is called.
## Possible Solution
It looks like there was a major change to multipart in this release, hopefully this is a simple request parsing bug that can be easily fixed.
## Steps to Reproduce (for bugs)
1. Install boto (tested on both 2.40 and 2.48)
2. Launch minio with docker:
`docker run -d --net host --name minio-test -e "MINIO_ACCESS_KEY=testAccessKey" -e "MINIO_SECRET_KEY=testSecretKey" minio/minio:RELEASE.2017-08-05T00-00-53Z server /export`
3. Run the code in this gist:
https://gist.github.com/godfoder/3b6eb57b1f4d268edf8869384810f257
## Context
We use minio on travis via docker to provide a lightweight s3 environment to run our test code against for our project. Our production systems are a large Ceph cluster, and this code works against production.
## Your Environment
* Version used (`minio version`): Minio RELEASE.2017-08-05T00-00-53Z docker tag
* Environment name and version (e.g. nginx 1.9.1): Python 2.7.11, Boto 2.48
* Server type and version: (not sure what this is asking for)
* Operating System and version (`uname -a`): Ubuntu Trusty environment on travis, also on an Ubuntu Xenial desktop
* Link to your project: https://github.com/idigbio/idb-backend
|
1.0
|
Multipart Upload Regression between RELEASE.2017-07-24T18-27-35Z and RELEASE.2017-08-05T00-00-53Z - ## Expected Behavior
Multipart uploads should complete successfully.
## Current Behavior
A MalformedXML error is returned when complete_upload is called.
## Possible Solution
It looks like there was a major change to multipart in this release, hopefully this is a simple request parsing bug that can be easily fixed.
## Steps to Reproduce (for bugs)
1. Install boto (tested on both 2.40 and 2.48)
2. Launch minio with docker:
`docker run -d --net host --name minio-test -e "MINIO_ACCESS_KEY=testAccessKey" -e "MINIO_SECRET_KEY=testSecretKey" minio/minio:RELEASE.2017-08-05T00-00-53Z server /export`
3. Run the code in this gist:
https://gist.github.com/godfoder/3b6eb57b1f4d268edf8869384810f257
## Context
We use minio on travis via docker to provide a lightweight s3 environment to run our test code against for our project. Our production systems are a large Ceph cluster, and this code works against production.
## Your Environment
* Version used (`minio version`): Minio RELEASE.2017-08-05T00-00-53Z docker tag
* Environment name and version (e.g. nginx 1.9.1): Python 2.7.11, Boto 2.48
* Server type and version: (not sure what this is asking for)
* Operating System and version (`uname -a`): Ubuntu Trusty environment on travis, also on an Ubuntu Xenial desktop
* Link to your project: https://github.com/idigbio/idb-backend
|
priority
|
multipart upload regression between release and release expected behavior multipart uploads should complete successfully current behavior a malformedxml error is returned when complete upload is called possible solution it looks like there was a major change to multipart in this release hopefully this is a simple request parsing bug that can be easily fixed steps to reproduce for bugs install boto tested on both and launch minio with docker docker run d net host name minio test e minio access key testaccesskey e minio secret key testsecretkey minio minio release server export run the code in this gist context we use minio on travis via docker to provide a lightweight environment to run our test code against for our project our production systems are a large ceph cluster and this code works against production your environment version used minio version minio release docker tag environment name and version e g nginx python boto server type and version not sure what this is asking for operating system and version uname a ubuntu trusty environment on travis also on an ubuntu xenial desktop link to your project
| 1
|
23,344
| 2,658,361,183
|
IssuesEvent
|
2015-03-18 15:14:58
|
IQSS/dataverse
|
https://api.github.com/repos/IQSS/dataverse
|
closed
|
File Download: Downloading tabular data always results in .tab regardless of what is selected.
|
Component: File Upload & Handling Priority: High Status: QA Type: Bug
|
When downloading from tabular data menu, whether zip, rdata, original file, always gets .tab
|
1.0
|
File Download: Downloading tabular data always results in .tab regardless of what is selected. -
When downloading from tabular data menu, whether zip, rdata, original file, always gets .tab
|
priority
|
file download downloading tabular data always results in tab regardless of what is selected when downloading from tabular data menu whether zip rdata original file always gets tab
| 1
|
530,610
| 15,434,718,723
|
IssuesEvent
|
2021-03-07 05:03:39
|
vignette-project/vignette
|
https://api.github.com/repos/vignette-project/vignette
|
closed
|
Evaluate CNTK or Tensorflow for Tracking Backend
|
enhancement help wanted priority:high
|
Unfortunately, our Tracking Backend, which is FaceRecognitionDotNet, which uses DLib and OpenCV, didn't turn out as performant as expected. The delta is too high to make a significant data, and the models currently perform poorly. In light of that, I will have to make a backend we can control directly instead of relying on others' work which we're not sure that has any quality.
Right now we're looking at CNTK and Tensorflow. While CNTK is from Microsoft, there is more laywork on Tensorflow, so we'll have to decide on this.
|
1.0
|
Evaluate CNTK or Tensorflow for Tracking Backend - Unfortunately, our Tracking Backend, which is FaceRecognitionDotNet, which uses DLib and OpenCV, didn't turn out as performant as expected. The delta is too high to make a significant data, and the models currently perform poorly. In light of that, I will have to make a backend we can control directly instead of relying on others' work which we're not sure that has any quality.
Right now we're looking at CNTK and Tensorflow. While CNTK is from Microsoft, there is more laywork on Tensorflow, so we'll have to decide on this.
|
priority
|
evaluate cntk or tensorflow for tracking backend unfortunately our tracking backend which is facerecognitiondotnet which uses dlib and opencv didn t turn out as performant as expected the delta is too high to make a significant data and the models currently perform poorly in light of that i will have to make a backend we can control directly instead of relying on others work which we re not sure that has any quality right now we re looking at cntk and tensorflow while cntk is from microsoft there is more laywork on tensorflow so we ll have to decide on this
| 1
|
661,179
| 22,042,583,926
|
IssuesEvent
|
2022-05-29 15:28:59
|
RAF-SI-2021/Banka-Back
|
https://api.github.com/repos/RAF-SI-2021/Banka-Back
|
closed
|
Kreiranje računa
|
priority/high area/backend
|
Potrebno je uraditi sledeće:
* Korisniku po default-u napraviti keš račun koji će koristiti za poslovanje (račun može imati sredstva na početku kako bi olakšalo testiranje)
* Račun treba da sadrži:
* broj računa (može se automatski generisati)
* tip računa (da li je keš ili margins)
* Za osnovnu valutu računa uzeti RSD, nije potrebno omogućiti menjanje osnovne valute računa. Osnovna valuta će se koristiti za preračune limita.
|
1.0
|
Kreiranje računa - Potrebno je uraditi sledeće:
* Korisniku po default-u napraviti keš račun koji će koristiti za poslovanje (račun može imati sredstva na početku kako bi olakšalo testiranje)
* Račun treba da sadrži:
* broj računa (može se automatski generisati)
* tip računa (da li je keš ili margins)
* Za osnovnu valutu računa uzeti RSD, nije potrebno omogućiti menjanje osnovne valute računa. Osnovna valuta će se koristiti za preračune limita.
|
priority
|
kreiranje računa potrebno je uraditi sledeće korisniku po default u napraviti keš račun koji će koristiti za poslovanje račun može imati sredstva na početku kako bi olakšalo testiranje račun treba da sadrži broj računa može se automatski generisati tip računa da li je keš ili margins za osnovnu valutu računa uzeti rsd nije potrebno omogućiti menjanje osnovne valute računa osnovna valuta će se koristiti za preračune limita
| 1
|
779,536
| 27,356,782,805
|
IssuesEvent
|
2023-02-27 13:24:05
|
ClockGU/clock-frontend
|
https://api.github.com/repos/ClockGU/clock-frontend
|
opened
|
Dependabot loader-utils - Fix
|
high priority
|
Dependabot kann nicht automatisch einen fix für die alerts zu `loader-utils` fixen.
Soweit ich das [hier](https://github.com/ClockGU/clock-frontend/security/dependabot/75) verstehe muss `@vue/cli-service` geupdated werden.
|
1.0
|
Dependabot loader-utils - Fix - Dependabot kann nicht automatisch einen fix für die alerts zu `loader-utils` fixen.
Soweit ich das [hier](https://github.com/ClockGU/clock-frontend/security/dependabot/75) verstehe muss `@vue/cli-service` geupdated werden.
|
priority
|
dependabot loader utils fix dependabot kann nicht automatisch einen fix für die alerts zu loader utils fixen soweit ich das verstehe muss vue cli service geupdated werden
| 1
|
795,647
| 28,080,451,322
|
IssuesEvent
|
2023-03-30 05:45:30
|
AY2223S2-CS2113-T12-4/tp
|
https://api.github.com/repos/AY2223S2-CS2113-T12-4/tp
|
opened
|
[User Story Feature] Data Storage for Gamification
|
type.Story priority.High
|
**User Story**
Users will want their XP points to be saved and restored the next time they return to WellNUS++.
**Is your feature request related to a problem? Please describe.**
Gamification feature resets the XP points when the application quits at the moment.
**Describe the solution you'd like**
Every time XP points are changed during the application, save the latest XP points to storage. When WellNUS++ is started, load the XP points from storage to restore the user's gamification progress.
|
1.0
|
[User Story Feature] Data Storage for Gamification - **User Story**
Users will want their XP points to be saved and restored the next time they return to WellNUS++.
**Is your feature request related to a problem? Please describe.**
Gamification feature resets the XP points when the application quits at the moment.
**Describe the solution you'd like**
Every time XP points are changed during the application, save the latest XP points to storage. When WellNUS++ is started, load the XP points from storage to restore the user's gamification progress.
|
priority
|
data storage for gamification user story users will want their xp points to be saved and restored the next time they return to wellnus is your feature request related to a problem please describe gamification feature resets the xp points when the application quits at the moment describe the solution you d like every time xp points are changed during the application save the latest xp points to storage when wellnus is started load the xp points from storage to restore the user s gamification progress
| 1
|
254,581
| 8,075,464,544
|
IssuesEvent
|
2018-08-07 05:50:37
|
sondre99v/ShutEye
|
https://api.github.com/repos/sondre99v/ShutEye
|
opened
|
Add functionality to export the most-significant-channel for each selection
|
FeaturePriorityHigh
|
Each selection has an optional marker for which channel the selected feature is most prominent in. This information also needs to be exported to the output file.
|
1.0
|
Add functionality to export the most-significant-channel for each selection - Each selection has an optional marker for which channel the selected feature is most prominent in. This information also needs to be exported to the output file.
|
priority
|
add functionality to export the most significant channel for each selection each selection has an optional marker for which channel the selected feature is most prominent in this information also needs to be exported to the output file
| 1
|
542,087
| 15,838,555,091
|
IssuesEvent
|
2021-04-06 22:44:02
|
cch5ng/job_tracker
|
https://api.github.com/repos/cch5ng/job_tracker
|
closed
|
creating a company (followup)
|
high priority
|
creating a company should be one step in creating a job
but don't want duplicate companies so it should create a new record in the company table
when creating a job, should have the option to select from a list of existing companies or creating a new company
|
1.0
|
creating a company (followup) - creating a company should be one step in creating a job
but don't want duplicate companies so it should create a new record in the company table
when creating a job, should have the option to select from a list of existing companies or creating a new company
|
priority
|
creating a company followup creating a company should be one step in creating a job but don t want duplicate companies so it should create a new record in the company table when creating a job should have the option to select from a list of existing companies or creating a new company
| 1
|
229,926
| 7,601,126,223
|
IssuesEvent
|
2018-04-28 10:00:52
|
buttercup/buttercup-desktop
|
https://api.github.com/repos/buttercup/buttercup-desktop
|
closed
|
DEB + RPM builds and updating do not work
|
Effort: High Priority: High Status: Available Type: Bug
|
Fix the update procedure for these preferred installation types.
|
1.0
|
DEB + RPM builds and updating do not work - Fix the update procedure for these preferred installation types.
|
priority
|
deb rpm builds and updating do not work fix the update procedure for these preferred installation types
| 1
|
597,965
| 18,217,474,822
|
IssuesEvent
|
2021-09-30 06:59:06
|
ballerina-platform/ballerina-lang
|
https://api.github.com/repos/ballerina-platform/ballerina-lang
|
closed
|
Payload not resolved when resource function is declared inside a service class
|
Type/Bug Priority/High Team/CompilerFE Points/0.5
|
**Description:**
$subject
**Steps to reproduce:**
Sample code
```ballerina
import ballerina/http;
import ballerina/io;
service class DispatcherService {
isolated resource function post events(@http:Payload GenericEventWrapperEvent payload) returns error? {
io:println("payload received");
}
}
service on new CustomListener() {}
class CustomListener {
private http:Listener httpListener;
public isolated function init() returns error? {
self.httpListener = check new (8090);
}
public isolated function attach(service object {} serviceRef, () attachPoint) returns @tainted error? {
check self.httpListener.attach(new DispatcherService(), attachPoint);
}
public isolated function detach(service object {} s) returns error? {
return self.httpListener.detach(s);
}
public isolated function 'start() returns error? {
return self.httpListener.'start();
}
public isolated function gracefulStop() returns @tainted error? {
return self.httpListener.gracefulStop();
}
public isolated function immediateStop() returns error? {
return self.httpListener.immediateStop();
}
}
public type GenericEventWrapperEvent record {
string token;
EventType event;
};
public type EventType record {
string 'type;
};
```
Response when invoked :
```
Status code - 400 Bad request
no query param value found for 'payload'
```
The payload is resolved when service is declared inline without a class and a custom listener
```
service / on new http:Listener(8090) {
isolated resource function post events(@http:Payload GenericEventWrapperEvent payload) returns error? {
io:println("payload received");
}
}
```
**Affected Versions:**
Swan lake beta 3
|
1.0
|
Payload not resolved when resource function is declared inside a service class - **Description:**
$subject
**Steps to reproduce:**
Sample code
```ballerina
import ballerina/http;
import ballerina/io;
service class DispatcherService {
isolated resource function post events(@http:Payload GenericEventWrapperEvent payload) returns error? {
io:println("payload received");
}
}
service on new CustomListener() {}
class CustomListener {
private http:Listener httpListener;
public isolated function init() returns error? {
self.httpListener = check new (8090);
}
public isolated function attach(service object {} serviceRef, () attachPoint) returns @tainted error? {
check self.httpListener.attach(new DispatcherService(), attachPoint);
}
public isolated function detach(service object {} s) returns error? {
return self.httpListener.detach(s);
}
public isolated function 'start() returns error? {
return self.httpListener.'start();
}
public isolated function gracefulStop() returns @tainted error? {
return self.httpListener.gracefulStop();
}
public isolated function immediateStop() returns error? {
return self.httpListener.immediateStop();
}
}
public type GenericEventWrapperEvent record {
string token;
EventType event;
};
public type EventType record {
string 'type;
};
```
Response when invoked :
```
Status code - 400 Bad request
no query param value found for 'payload'
```
The payload is resolved when service is declared inline without a class and a custom listener
```
service / on new http:Listener(8090) {
isolated resource function post events(@http:Payload GenericEventWrapperEvent payload) returns error? {
io:println("payload received");
}
}
```
**Affected Versions:**
Swan lake beta 3
|
priority
|
payload not resolved when resource function is declared inside a service class description subject steps to reproduce sample code ballerina import ballerina http import ballerina io service class dispatcherservice isolated resource function post events http payload genericeventwrapperevent payload returns error io println payload received service on new customlistener class customlistener private http listener httplistener public isolated function init returns error self httplistener check new public isolated function attach service object serviceref attachpoint returns tainted error check self httplistener attach new dispatcherservice attachpoint public isolated function detach service object s returns error return self httplistener detach s public isolated function start returns error return self httplistener start public isolated function gracefulstop returns tainted error return self httplistener gracefulstop public isolated function immediatestop returns error return self httplistener immediatestop public type genericeventwrapperevent record string token eventtype event public type eventtype record string type response when invoked status code bad request no query param value found for payload the payload is resolved when service is declared inline without a class and a custom listener service on new http listener isolated resource function post events http payload genericeventwrapperevent payload returns error io println payload received affected versions swan lake beta
| 1
|
349,065
| 10,456,493,360
|
IssuesEvent
|
2019-09-20 01:23:17
|
nephanim/pluralkit-switch-calendar
|
https://api.github.com/repos/nephanim/pluralkit-switch-calendar
|
opened
|
When switching to month view, incomplete cached response can be shown instead of full month
|
bug priority-high
|
Because we cache PKAPI responses using only the end date for the requested calendar range, it's possible for a scenario like the following to occur:
- User starts in the week view
- User navigates backward some number of weeks
- User switches to month view
- The month view does not issue any requests and some expected events are missing
What's happening is the cache already has the end date for that month, but it contains only a week's worth of data. The same could happen when switching from day to month view as well. Once this occurs, the only way to see that month's data is to refresh.
This was an existing defect, but wasn't noticed because we were generally working in the week and month views and would never have more than a week of data in a cache entry anyway.
To address this, we need to revisit the key used for caching.
|
1.0
|
When switching to month view, incomplete cached response can be shown instead of full month - Because we cache PKAPI responses using only the end date for the requested calendar range, it's possible for a scenario like the following to occur:
- User starts in the week view
- User navigates backward some number of weeks
- User switches to month view
- The month view does not issue any requests and some expected events are missing
What's happening is the cache already has the end date for that month, but it contains only a week's worth of data. The same could happen when switching from day to month view as well. Once this occurs, the only way to see that month's data is to refresh.
This was an existing defect, but wasn't noticed because we were generally working in the week and month views and would never have more than a week of data in a cache entry anyway.
To address this, we need to revisit the key used for caching.
|
priority
|
when switching to month view incomplete cached response can be shown instead of full month because we cache pkapi responses using only the end date for the requested calendar range it s possible for a scenario like the following to occur user starts in the week view user navigates backward some number of weeks user switches to month view the month view does not issue any requests and some expected events are missing what s happening is the cache already has the end date for that month but it contains only a week s worth of data the same could happen when switching from day to month view as well once this occurs the only way to see that month s data is to refresh this was an existing defect but wasn t noticed because we were generally working in the week and month views and would never have more than a week of data in a cache entry anyway to address this we need to revisit the key used for caching
| 1
|
236,740
| 7,752,372,031
|
IssuesEvent
|
2018-05-30 20:04:40
|
vtyulb/BSA-Analytics
|
https://api.github.com/repos/vtyulb/BSA-Analytics
|
closed
|
UTC времена для транзиентов и пульсаров.
|
High priority
|
Оформить как-нибудь выдачу максимума пика транзиента и пульсара в виде:
UTC-дата UTC-время
В названии выходного файла должно отражаться название пульсара.
|
1.0
|
UTC времена для транзиентов и пульсаров. - Оформить как-нибудь выдачу максимума пика транзиента и пульсара в виде:
UTC-дата UTC-время
В названии выходного файла должно отражаться название пульсара.
|
priority
|
utc времена для транзиентов и пульсаров оформить как нибудь выдачу максимума пика транзиента и пульсара в виде utc дата utc время в названии выходного файла должно отражаться название пульсара
| 1
|
212,357
| 7,236,179,340
|
IssuesEvent
|
2018-02-13 05:23:42
|
yanis333/SOEN341_Website
|
https://api.github.com/repos/yanis333/SOEN341_Website
|
closed
|
Create Jquery function to validate textboxes (if empty or not).
|
High value Priority3 Risk2 feature sprint 2
|
[sp] = 1
This is a feature for issue #59
|
1.0
|
Create Jquery function to validate textboxes (if empty or not). - [sp] = 1
This is a feature for issue #59
|
priority
|
create jquery function to validate textboxes if empty or not this is a feature for issue
| 1
|
265,395
| 8,353,777,639
|
IssuesEvent
|
2018-10-02 11:13:26
|
handsontable/handsontable-pro
|
https://api.github.com/repos/handsontable/handsontable-pro
|
closed
|
[Multi-column sorting] Click on the top-left overlay will throw an exception
|
Priority: high Regression Status: Released Type: Bug
|
### Description
As the title says, when the `multiColumnSorting` plugin is enabled.

### Your environment
* Handsontable version: 6.0.0
|
1.0
|
[Multi-column sorting] Click on the top-left overlay will throw an exception - ### Description
As the title says, when the `multiColumnSorting` plugin is enabled.

### Your environment
* Handsontable version: 6.0.0
|
priority
|
click on the top left overlay will throw an exception description as the title says when the multicolumnsorting plugin is enabled your environment handsontable version
| 1
|
783,171
| 27,521,009,707
|
IssuesEvent
|
2023-03-06 15:02:37
|
fractal-analytics-platform/fractal-server
|
https://api.github.com/repos/fractal-analytics-platform/fractal-server
|
closed
|
Update common after new validators
|
High Priority
|
See https://github.com/fractal-analytics-platform/fractal-common/issues/18 (and partly #525).
The idea here is that fractal-common should be the only source for the Pydantic schemas that we use to encode endpoint requests and responses. Note that using Pydantic validators (instead of more advanced typing, e.g. using `min_length=1` for strings or [Constrained Types](https://docs.pydantic.dev/usage/types/#constrained-types)) should allow us to provide more detailed (and customizable) error messages.
The goal of this issue (together with https://github.com/fractal-analytics-platform/fractal-common/issues/18) is also to reduce as much as possible multiple definitions of validators, which would otherwise also appear the web client - see e.g. https://github.com/fractal-analytics-platform/fractal-web/issues/13.
|
1.0
|
Update common after new validators - See https://github.com/fractal-analytics-platform/fractal-common/issues/18 (and partly #525).
The idea here is that fractal-common should be the only source for the Pydantic schemas that we use to encode endpoint requests and responses. Note that using Pydantic validators (instead of more advanced typing, e.g. using `min_length=1` for strings or [Constrained Types](https://docs.pydantic.dev/usage/types/#constrained-types)) should allow us to provide more detailed (and customizable) error messages.
The goal of this issue (together with https://github.com/fractal-analytics-platform/fractal-common/issues/18) is also to reduce as much as possible multiple definitions of validators, which would otherwise also appear the web client - see e.g. https://github.com/fractal-analytics-platform/fractal-web/issues/13.
|
priority
|
update common after new validators see and partly the idea here is that fractal common should be the only source for the pydantic schemas that we use to encode endpoint requests and responses note that using pydantic validators instead of more advanced typing e g using min length for strings or should allow us to provide more detailed and customizable error messages the goal of this issue together with is also to reduce as much as possible multiple definitions of validators which would otherwise also appear the web client see e g
| 1
|
461,312
| 13,228,302,908
|
IssuesEvent
|
2020-08-18 05:50:43
|
hazelcast/hazelcast
|
https://api.github.com/repos/hazelcast/hazelcast
|
closed
|
SQL math expressions
|
Estimation: S Internal breaking change Module: SQL Priority: High Source: Internal Team: Core Type: Enhancement
|
We need to implement base math expressions:
1. `COS`/`SIN`/`TAN`/`COT`/`ACOS`/`ASIN`/`ATAN`
1. `EXP`/`LN`/`LOG10`
1. `RAND`
1. `ABS`
1. `SIGN`
1. `DEGREES`/`RADIANS`
1. `ROUND`/`TRUNCATE`
1. `CEIL`/`FLOOR`
|
1.0
|
SQL math expressions - We need to implement base math expressions:
1. `COS`/`SIN`/`TAN`/`COT`/`ACOS`/`ASIN`/`ATAN`
1. `EXP`/`LN`/`LOG10`
1. `RAND`
1. `ABS`
1. `SIGN`
1. `DEGREES`/`RADIANS`
1. `ROUND`/`TRUNCATE`
1. `CEIL`/`FLOOR`
|
priority
|
sql math expressions we need to implement base math expressions cos sin tan cot acos asin atan exp ln rand abs sign degrees radians round truncate ceil floor
| 1
|
370,447
| 10,932,421,002
|
IssuesEvent
|
2019-11-23 17:35:56
|
collinbarrett/FilterLists
|
https://api.github.com/repos/collinbarrett/FilterLists
|
closed
|
The changes from #1124 don't seem to have gone live yet
|
bug high priority ops
|
This is most visible in how the ABP versions of *1hosts* aren't shown on the landing page, neither are any of the other new lists.
Is there any particular reason for it?
|
1.0
|
The changes from #1124 don't seem to have gone live yet - This is most visible in how the ABP versions of *1hosts* aren't shown on the landing page, neither are any of the other new lists.
Is there any particular reason for it?
|
priority
|
the changes from don t seem to have gone live yet this is most visible in how the abp versions of aren t shown on the landing page neither are any of the other new lists is there any particular reason for it
| 1
|
36,632
| 2,806,369,063
|
IssuesEvent
|
2015-05-15 01:37:28
|
duckduckgo/zeroclickinfo-spice
|
https://api.github.com/repos/duckduckgo/zeroclickinfo-spice
|
closed
|
Transit Switzerland: API not always providing platform, leads to bad result
|
Bug Priority: High
|
https://duckduckgo.com/?q=next+train+to+geneva+from+paris&ia=swisstrains
The footer in the IA shows "Platform " with no number because the API response doesn't contain one. We should check to make sure we have a platform, or show that one has not been assigned yet (I'm assuming that's the case?)
https://duckduckgo.com/js/spice/transit/switzerland/paris/geneva
/cc @tagawa @mattr555
|
1.0
|
Transit Switzerland: API not always providing platform, leads to bad result - https://duckduckgo.com/?q=next+train+to+geneva+from+paris&ia=swisstrains
The footer in the IA shows "Platform " with no number because the API response doesn't contain one. We should check to make sure we have a platform, or show that one has not been assigned yet (I'm assuming that's the case?)
https://duckduckgo.com/js/spice/transit/switzerland/paris/geneva
/cc @tagawa @mattr555
|
priority
|
transit switzerland api not always providing platform leads to bad result the footer in the ia shows platform with no number because the api response doesn t contain one we should check to make sure we have a platform or show that one has not been assigned yet i m assuming that s the case cc tagawa
| 1
|
74,419
| 3,439,718,874
|
IssuesEvent
|
2015-12-14 11:00:32
|
ceylon/ceylon-ide-eclipse
|
https://api.github.com/repos/ceylon/ceylon-ide-eclipse
|
closed
|
Eclipse unexpected behavior
|
bug on last release high priority
|
hi, I get an exception "`The ExpressionVisitor caused an exception visiting a InvocationExpression node: "com.redhat.ceylon.model.loader.ModelResolutionException: JDT reference binding without a JDT IType element : com.google.common.cache.Cache" at com.redhat.ceylon.eclipse.core.model.JDTModelLoader.toType(JDTModelLoader.java:1148)`"
when I try to run my code in eclipse, but it compiles and runs fine from the linux terminal.
I was trying to use a java html templating engine in ceylon when this happened.
To reproduce the issue, my code is below.
module.ceylon file
```ceylon
native("jvm") module cryna "1.0.0" {
import ceylon.net "1.2.0";
import "com.mitchellbosecke:pebble" "1.6.0";
import java.base "8";
}
```
package.ceylon
```ceylon
shared package cryna;
```
and finally run.ceylon
```ceylon
import ceylon.net.http.server {
newServer,
Endpoint,
startsWith
}
import java.io {
StringWriter
}
import com.mitchellbosecke.pebble {
PebbleEngine
}
import com.mitchellbosecke.pebble.loader {
FileLoader
}
import com.mitchellbosecke.pebble.template {
PebbleTemplate
}
shared void run() => newServer {
Endpoint {
path = startsWith("/");
(req, res) {
variable StringWriter wr = StringWriter();
FileLoader fl = FileLoader();
PebbleEngine engine = PebbleEngine(fl);
PebbleTemplate compiledTemplate = engine.getTemplate("/home/masood/Documents/misc/experimental/templates/home.html");
compiledTemplate.evaluate(wr);
return res.writeString(wr.string);
};
}
}.start();
```
you can put any regular html page in the engine.getTemplate
|
1.0
|
Eclipse unexpected behavior - hi, I get an exception "`The ExpressionVisitor caused an exception visiting a InvocationExpression node: "com.redhat.ceylon.model.loader.ModelResolutionException: JDT reference binding without a JDT IType element : com.google.common.cache.Cache" at com.redhat.ceylon.eclipse.core.model.JDTModelLoader.toType(JDTModelLoader.java:1148)`"
when I try to run my code in eclipse, but it compiles and runs fine from the linux terminal.
I was trying to use a java html templating engine in ceylon when this happened.
To reproduce the issue, my code is below.
module.ceylon file
```ceylon
native("jvm") module cryna "1.0.0" {
import ceylon.net "1.2.0";
import "com.mitchellbosecke:pebble" "1.6.0";
import java.base "8";
}
```
package.ceylon
```ceylon
shared package cryna;
```
and finally run.ceylon
```ceylon
import ceylon.net.http.server {
newServer,
Endpoint,
startsWith
}
import java.io {
StringWriter
}
import com.mitchellbosecke.pebble {
PebbleEngine
}
import com.mitchellbosecke.pebble.loader {
FileLoader
}
import com.mitchellbosecke.pebble.template {
PebbleTemplate
}
shared void run() => newServer {
Endpoint {
path = startsWith("/");
(req, res) {
variable StringWriter wr = StringWriter();
FileLoader fl = FileLoader();
PebbleEngine engine = PebbleEngine(fl);
PebbleTemplate compiledTemplate = engine.getTemplate("/home/masood/Documents/misc/experimental/templates/home.html");
compiledTemplate.evaluate(wr);
return res.writeString(wr.string);
};
}
}.start();
```
you can put any regular html page in the engine.getTemplate
|
priority
|
eclipse unexpected behavior hi i get an exception the expressionvisitor caused an exception visiting a invocationexpression node com redhat ceylon model loader modelresolutionexception jdt reference binding without a jdt itype element com google common cache cache at com redhat ceylon eclipse core model jdtmodelloader totype jdtmodelloader java when i try to run my code in eclipse but it compiles and runs fine from the linux terminal i was trying to use a java html templating engine in ceylon when this happened to reproduce the issue my code is below module ceylon file ceylon native jvm module cryna import ceylon net import com mitchellbosecke pebble import java base package ceylon ceylon shared package cryna and finally run ceylon ceylon import ceylon net http server newserver endpoint startswith import java io stringwriter import com mitchellbosecke pebble pebbleengine import com mitchellbosecke pebble loader fileloader import com mitchellbosecke pebble template pebbletemplate shared void run newserver endpoint path startswith req res variable stringwriter wr stringwriter fileloader fl fileloader pebbleengine engine pebbleengine fl pebbletemplate compiledtemplate engine gettemplate home masood documents misc experimental templates home html compiledtemplate evaluate wr return res writestring wr string start you can put any regular html page in the engine gettemplate
| 1
|
208,712
| 7,157,646,535
|
IssuesEvent
|
2018-01-26 20:41:39
|
status-im/status-react
|
https://api.github.com/repos/status-im/status-react
|
closed
|
App version for release build is 0.9.14d3 instead of 0.9.13
|
high-priority release
|
### Description
[comment]: # (Feature or Bug? i.e Type: Bug)
*Type*: Bug
[comment]: # (Describe the feature you would like, or briefly summarise the bug and what you did, what you expected to happen, and what actually happens. Sections below)
*Summary*:
On latest release build 70:
iOS app version: 0.9.14d3
Android app version: 0.9.13-3-g848bcaea+

Note that on release build 67 versions were as expected (0.9.13)
#### Expected behavior
[comment]: # (Describe what you expected to happen.)
iOS app version: 0.9.13
Android app version: 0.9.13
#### Actual behavior
[comment]: # (Describe what actually happened.)
iOS app version: 0.9.14d3
Android app version: 0.9.13-3-g848bcaea+
### Reproduction
[comment]: # (Describe how we can replicate the bug step by step.)
- Install Status
- Check app version:
for Android: OS Settings
for iOS: General -> iPhone Storage -> Status
* Status version: release build 70
* Operating System: Android and iOS real devices
|
1.0
|
App version for release build is 0.9.14d3 instead of 0.9.13 -
### Description
[comment]: # (Feature or Bug? i.e Type: Bug)
*Type*: Bug
[comment]: # (Describe the feature you would like, or briefly summarise the bug and what you did, what you expected to happen, and what actually happens. Sections below)
*Summary*:
On latest release build 70:
iOS app version: 0.9.14d3
Android app version: 0.9.13-3-g848bcaea+

Note that on release build 67 versions were as expected (0.9.13)
#### Expected behavior
[comment]: # (Describe what you expected to happen.)
iOS app version: 0.9.13
Android app version: 0.9.13
#### Actual behavior
[comment]: # (Describe what actually happened.)
iOS app version: 0.9.14d3
Android app version: 0.9.13-3-g848bcaea+
### Reproduction
[comment]: # (Describe how we can replicate the bug step by step.)
- Install Status
- Check app version:
for Android: OS Settings
for iOS: General -> iPhone Storage -> Status
* Status version: release build 70
* Operating System: Android and iOS real devices
|
priority
|
app version for release build is instead of description feature or bug i e type bug type bug describe the feature you would like or briefly summarise the bug and what you did what you expected to happen and what actually happens sections below summary on latest release build ios app version android app version note that on release build versions were as expected expected behavior describe what you expected to happen ios app version android app version actual behavior describe what actually happened ios app version android app version reproduction describe how we can replicate the bug step by step install status check app version for android os settings for ios general iphone storage status status version release build operating system android and ios real devices
| 1
|
561,005
| 16,608,957,208
|
IssuesEvent
|
2021-06-02 09:08:05
|
arnog/mathlive
|
https://api.github.com/repos/arnog/mathlive
|
closed
|
Arrow key navigation gets stuck
|
bug high priority
|
## Description
I typed something and then pressed the right arrow key. To my surprise, it didn't work. Instead, I only heard the "plonk" sound.

## Steps to Reproduce
1. Go to https://cortexjs.io/mathlive/
2. Paste in `\begin{equation*} x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}\R \end{equation*}`
3. Place the at the beginning and repeatedly press the right arrow key, until you get stuck just in front of the `\R`
### Actual Behavior
Caret gets stuck. I believe this happens with any instance of `\R` or `\Z` or `\N`. Funnily enough, it does not happen with `\C`
### Expected Behavior
I expected the caret to move to after the `\R`
### Environment
**MathLive version** 0.68.0
**Operating System** Windows 10
**Browser** Firefox 88, Microsoft Edge
|
1.0
|
Arrow key navigation gets stuck - ## Description
I typed something and then pressed the right arrow key. To my surprise, it didn't work. Instead, I only heard the "plonk" sound.

## Steps to Reproduce
1. Go to https://cortexjs.io/mathlive/
2. Paste in `\begin{equation*} x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}\R \end{equation*}`
3. Place the at the beginning and repeatedly press the right arrow key, until you get stuck just in front of the `\R`
### Actual Behavior
Caret gets stuck. I believe this happens with any instance of `\R` or `\Z` or `\N`. Funnily enough, it does not happen with `\C`
### Expected Behavior
I expected the caret to move to after the `\R`
### Environment
**MathLive version** 0.68.0
**Operating System** Windows 10
**Browser** Firefox 88, Microsoft Edge
|
priority
|
arrow key navigation gets stuck description i typed something and then pressed the right arrow key to my surprise it didn t work instead i only heard the plonk sound steps to reproduce go to paste in begin equation x frac b pm sqrt b r end equation place the at the beginning and repeatedly press the right arrow key until you get stuck just in front of the r actual behavior caret gets stuck i believe this happens with any instance of r or z or n funnily enough it does not happen with c expected behavior i expected the caret to move to after the r environment mathlive version operating system windows browser firefox microsoft edge
| 1
|
60,284
| 3,122,382,159
|
IssuesEvent
|
2015-09-06 13:48:38
|
HubTurbo/HubTurbo
|
https://api.github.com/repos/HubTurbo/HubTurbo
|
closed
|
New milestones cannot be used in filters unless the cache is refreshed
|
feature-milestones priority.high type.bug
|
It happened again.
`milestone:V5.51` does not capture issues assigned to it unless I refresh the cache. Note that the milestone V5.51 was created after the previous refresh of cache.
|
1.0
|
New milestones cannot be used in filters unless the cache is refreshed - It happened again.
`milestone:V5.51` does not capture issues assigned to it unless I refresh the cache. Note that the milestone V5.51 was created after the previous refresh of cache.
|
priority
|
new milestones cannot be used in filters unless the cache is refreshed it happened again milestone does not capture issues assigned to it unless i refresh the cache note that the milestone was created after the previous refresh of cache
| 1
|
383,154
| 11,351,523,125
|
IssuesEvent
|
2020-01-24 11:25:36
|
ahmedkaludi/accelerated-mobile-pages
|
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
|
closed
|
After enabling Mobile Redirection, above the tablet size non-amp pages are redirected to AMP pages
|
[Priority: HIGH] bug
|
When 'Mobile Redirection' is enabled,
- [ ] If 'Tablet' option is disabled within 'Mobile Redirection' then also non-AMP pages are automatically redirected to AMP pages for Tablet sizes
- [ ] after 768 x 1024px also non-AMP pages are automatically redirected to AMP pages.
For reference: https://wordpress.org/support/topic/amp-activating-on-desktop-screens/
|
1.0
|
After enabling Mobile Redirection, above the tablet size non-amp pages are redirected to AMP pages - When 'Mobile Redirection' is enabled,
- [ ] If 'Tablet' option is disabled within 'Mobile Redirection' then also non-AMP pages are automatically redirected to AMP pages for Tablet sizes
- [ ] after 768 x 1024px also non-AMP pages are automatically redirected to AMP pages.
For reference: https://wordpress.org/support/topic/amp-activating-on-desktop-screens/
|
priority
|
after enabling mobile redirection above the tablet size non amp pages are redirected to amp pages when mobile redirection is enabled if tablet option is disabled within mobile redirection then also non amp pages are automatically redirected to amp pages for tablet sizes after x also non amp pages are automatically redirected to amp pages for reference
| 1
|
244,495
| 7,875,690,376
|
IssuesEvent
|
2018-06-25 21:17:40
|
craftercms/craftercms
|
https://api.github.com/repos/craftercms/craftercms
|
reopened
|
[studio-ui] approval dialog should indicate when selected items have different publish items
|
CI enhancement priority: high
|
### Expected behavior
Users need a clear warning when they have selected multiple items for approval from the waiting for approval items dashboard that have different requested publish dates.
"The items you have selected for approval were submitted with different requested publish dates."
### Actual behavior
The dialog shows an error that says the user must select a date.
### Steps to reproduce the problem
* Login as author and submit several items, each scheduled on a different day
* Login as admin and select all items, click approve for publish
* Note dialog does not clearly indicate to the user that there is an issue
### Log/stack trace (use https://gist.github.com)
### Specs
#### Version
Studio Version Number: 3.0.14-SNAPSHOT-8f3578
Build Number: 8f35782f1f4e5dd31353e1994597ba91a9a15e6c
Build Date/Time: 05-30-2018 17:34:26 -0400
#### OS
N/a
#### Browser
N/a
|
1.0
|
[studio-ui] approval dialog should indicate when selected items have different publish items - ### Expected behavior
Users need a clear warning when they have selected multiple items for approval from the waiting for approval items dashboard that have different requested publish dates.
"The items you have selected for approval were submitted with different requested publish dates."
### Actual behavior
The dialog shows an error that says the user must select a date.
### Steps to reproduce the problem
* Login as author and submit several items, each scheduled on a different day
* Login as admin and select all items, click approve for publish
* Note dialog does not clearly indicate to the user that there is an issue
### Log/stack trace (use https://gist.github.com)
### Specs
#### Version
Studio Version Number: 3.0.14-SNAPSHOT-8f3578
Build Number: 8f35782f1f4e5dd31353e1994597ba91a9a15e6c
Build Date/Time: 05-30-2018 17:34:26 -0400
#### OS
N/a
#### Browser
N/a
|
priority
|
approval dialog should indicate when selected items have different publish items expected behavior users need a clear warning when they have selected multiple items for approval from the waiting for approval items dashboard that have different requested publish dates the items you have selected for approval were submitted with different requested publish dates actual behavior the dialog shows an error that says the user must select a date steps to reproduce the problem login as author and submit several items each scheduled on a different day login as admin and select all items click approve for publish note dialog does not clearly indicate to the user that there is an issue log stack trace use specs version studio version number snapshot build number build date time os n a browser n a
| 1
|
331,898
| 10,081,369,304
|
IssuesEvent
|
2019-07-25 08:39:29
|
joshsoftware/the_hunger_terminal
|
https://api.github.com/repos/joshsoftware/the_hunger_terminal
|
closed
|
Feedback and Rating
|
High Priority enhancement
|
Asking users to give feedback about their previous orders.
The users can give comments and ratings for vendors.
The users can also give ratings for individual dishes.
The users will be able to chose their criteria for the feedback on a vendor, like quality, quantity, delivery timing, taste, hygiene, etc.
Vendors list will be shown in descending order of their ratings.
|
1.0
|
Feedback and Rating - Asking users to give feedback about their previous orders.
The users can give comments and ratings for vendors.
The users can also give ratings for individual dishes.
The users will be able to chose their criteria for the feedback on a vendor, like quality, quantity, delivery timing, taste, hygiene, etc.
Vendors list will be shown in descending order of their ratings.
|
priority
|
feedback and rating asking users to give feedback about their previous orders the users can give comments and ratings for vendors the users can also give ratings for individual dishes the users will be able to chose their criteria for the feedback on a vendor like quality quantity delivery timing taste hygiene etc vendors list will be shown in descending order of their ratings
| 1
|
380,415
| 11,260,496,356
|
IssuesEvent
|
2020-01-13 10:39:23
|
WordPress/gutenberg
|
https://api.github.com/repos/WordPress/gutenberg
|
closed
|
Changing a RichText value automatically focus the RichText
|
Backwards Compatibility [Feature] Rich Text [Package] A11y [Package] Rich text [Priority] High [Status] In Progress [Type] Bug
|
**Describe the bug**
Currently, if we change a RichText value the RichText gets focused and becomes the active element event if another element was focused and rich text value is changed using a programmatic interface e.g: `wp.data.dispatch( 'core/block-editor' ).updateBlockAttributes( block.clientId, { content: '1<strong>234</strong>56789' } );`.
Previously the popover was closed when a click outside them happened; now they are closed when the focus is outside them. This change makes the rich text automatically gaining focus problem worse. For example, if we have popover with a SelectControl that allows switching the content of a paragraph between some predefined values when the select is used, the popover closes.
Another side effect is that on PR https://github.com/WordPress/gutenberg/pull/16014 that adds custom color as a format, each time we try to use the color picker the popover closes, because when we use the color picker there is a change in the format leaving to a change to the content of paragraph and making the focus go outside the popover.
I guess we should address this issue before WordPress 5.3 because this problem may affect third-party plugins that add color options or even other option in a popover.
I guess we may also have a11y related problems with moving the focus.
**To reproduce**
Steps to reproduce the behavior:
- Insert paragraph block:
```
const block = wp.blocks.createBlock( 'core/paragraph', { content: '123456789' } );
wp.data.dispatch( 'core/block-editor' ).insertBlock( block );
```
- Put the cursor inside the paragraph e.g. in the middle of the paragraph.
Focus some element on the page (and verify it gets focused):
```
document.querySelector( 'button.editor-block-navigation' ).focus();
console.log( document.activeElement );
````
- Programatically change the paragraph content and verify the paragraph becomes the active element:
```
wp.data.dispatch( 'core/block-editor' ).updateBlockAttributes( block.clientId, { content: '1<strong>234</strong>56789' } );
console.log( document.activeElement );
```

cc: @ellatrix
|
1.0
|
Changing a RichText value automatically focus the RichText - **Describe the bug**
Currently, if we change a RichText value the RichText gets focused and becomes the active element event if another element was focused and rich text value is changed using a programmatic interface e.g: `wp.data.dispatch( 'core/block-editor' ).updateBlockAttributes( block.clientId, { content: '1<strong>234</strong>56789' } );`.
Previously the popover was closed when a click outside them happened; now they are closed when the focus is outside them. This change makes the rich text automatically gaining focus problem worse. For example, if we have popover with a SelectControl that allows switching the content of a paragraph between some predefined values when the select is used, the popover closes.
Another side effect is that on PR https://github.com/WordPress/gutenberg/pull/16014 that adds custom color as a format, each time we try to use the color picker the popover closes, because when we use the color picker there is a change in the format leaving to a change to the content of paragraph and making the focus go outside the popover.
I guess we should address this issue before WordPress 5.3 because this problem may affect third-party plugins that add color options or even other option in a popover.
I guess we may also have a11y related problems with moving the focus.
**To reproduce**
Steps to reproduce the behavior:
- Insert paragraph block:
```
const block = wp.blocks.createBlock( 'core/paragraph', { content: '123456789' } );
wp.data.dispatch( 'core/block-editor' ).insertBlock( block );
```
- Put the cursor inside the paragraph e.g. in the middle of the paragraph.
Focus some element on the page (and verify it gets focused):
```
document.querySelector( 'button.editor-block-navigation' ).focus();
console.log( document.activeElement );
````
- Programatically change the paragraph content and verify the paragraph becomes the active element:
```
wp.data.dispatch( 'core/block-editor' ).updateBlockAttributes( block.clientId, { content: '1<strong>234</strong>56789' } );
console.log( document.activeElement );
```

cc: @ellatrix
|
priority
|
changing a richtext value automatically focus the richtext describe the bug currently if we change a richtext value the richtext gets focused and becomes the active element event if another element was focused and rich text value is changed using a programmatic interface e g wp data dispatch core block editor updateblockattributes block clientid content previously the popover was closed when a click outside them happened now they are closed when the focus is outside them this change makes the rich text automatically gaining focus problem worse for example if we have popover with a selectcontrol that allows switching the content of a paragraph between some predefined values when the select is used the popover closes another side effect is that on pr that adds custom color as a format each time we try to use the color picker the popover closes because when we use the color picker there is a change in the format leaving to a change to the content of paragraph and making the focus go outside the popover i guess we should address this issue before wordpress because this problem may affect third party plugins that add color options or even other option in a popover i guess we may also have related problems with moving the focus to reproduce steps to reproduce the behavior insert paragraph block const block wp blocks createblock core paragraph content wp data dispatch core block editor insertblock block put the cursor inside the paragraph e g in the middle of the paragraph focus some element on the page and verify it gets focused document queryselector button editor block navigation focus console log document activeelement programatically change the paragraph content and verify the paragraph becomes the active element wp data dispatch core block editor updateblockattributes block clientid content console log document activeelement cc ellatrix
| 1
|
467,203
| 13,443,404,207
|
IssuesEvent
|
2020-09-08 08:18:47
|
input-output-hk/cardano-wallet
|
https://api.github.com/repos/input-output-hk/cardano-wallet
|
closed
|
Listing transaction when node is still in the Byron era may fail with 500
|
BUG PRIORITY:LOW SEVERITY:HIGH
|
# Context
<!-- WHEN CREATED
Any information that is useful to understand the bug and the subsystem
it evolves in. References to documentation and or other tickets are
welcome.
-->
| Information | - |
| --- | --- |
| Version | Close to Shelley Mainnet release |
| Platform | <!-- Windows, Mac OS, Linux, Docker, All --> |
| Installation | <!-- From Source? From Github Release? --> |
With #1869, we use a `TimeInterpreter` from the node for time and slotting conversions. The conversions fails if "Past the Horizon". From genesis to close to the fork, the node will have a limited horizon.
# Steps to Reproduce
<!-- WHEN CREATED
Steps to reproduce the behavior.
-->
1. Have a node and wallet which is running Byron;Shelley, but which has not yet reached Shelley. (E.g. on Cardano mainnet when first syncing from genesis)
1. List transactions with a time range were one of the dates are far ahead of the node tip (which is continuously syncing).
## Expected behavior
<!-- WHEN CREATED
A clear and concise description of what you expected to happen.
-->
1. I get a response, or a helpful error
## Actual behavior
1. (Theorized) `500: Something went wrong`
*Note*: This shouldn't happen when the node is in Shelley.
<!-- WHEN CREATED
A clear and concise description of what you observe instead. If applicable add
screenshots to help explain your problem.
-->
---
# Resolution
<!-- WHEN IN PROGRESS
What is happening? How is this going to be fixed? Detail the approach and give,
in the form of a TODO list steps toward the resolution of the bug. Attach a PR to
each item in the list.
This may be refined as the investigation progresses.
-->
---
# QA
<!-- WHEN IN PROGRESS
How do we make sure the bug has been fixed? Give here manual steps or tests to
verify the fix. How/why could this bug slip through testing?
-->
|
1.0
|
Listing transaction when node is still in the Byron era may fail with 500 - # Context
<!-- WHEN CREATED
Any information that is useful to understand the bug and the subsystem
it evolves in. References to documentation and or other tickets are
welcome.
-->
| Information | - |
| --- | --- |
| Version | Close to Shelley Mainnet release |
| Platform | <!-- Windows, Mac OS, Linux, Docker, All --> |
| Installation | <!-- From Source? From Github Release? --> |
With #1869, we use a `TimeInterpreter` from the node for time and slotting conversions. The conversions fails if "Past the Horizon". From genesis to close to the fork, the node will have a limited horizon.
# Steps to Reproduce
<!-- WHEN CREATED
Steps to reproduce the behavior.
-->
1. Have a node and wallet which is running Byron;Shelley, but which has not yet reached Shelley. (E.g. on Cardano mainnet when first syncing from genesis)
1. List transactions with a time range were one of the dates are far ahead of the node tip (which is continuously syncing).
## Expected behavior
<!-- WHEN CREATED
A clear and concise description of what you expected to happen.
-->
1. I get a response, or a helpful error
## Actual behavior
1. (Theorized) `500: Something went wrong`
*Note*: This shouldn't happen when the node is in Shelley.
<!-- WHEN CREATED
A clear and concise description of what you observe instead. If applicable add
screenshots to help explain your problem.
-->
---
# Resolution
<!-- WHEN IN PROGRESS
What is happening? How is this going to be fixed? Detail the approach and give,
in the form of a TODO list steps toward the resolution of the bug. Attach a PR to
each item in the list.
This may be refined as the investigation progresses.
-->
---
# QA
<!-- WHEN IN PROGRESS
How do we make sure the bug has been fixed? Give here manual steps or tests to
verify the fix. How/why could this bug slip through testing?
-->
|
priority
|
listing transaction when node is still in the byron era may fail with context when created any information that is useful to understand the bug and the subsystem it evolves in references to documentation and or other tickets are welcome information version close to shelley mainnet release platform installation with we use a timeinterpreter from the node for time and slotting conversions the conversions fails if past the horizon from genesis to close to the fork the node will have a limited horizon steps to reproduce when created steps to reproduce the behavior have a node and wallet which is running byron shelley but which has not yet reached shelley e g on cardano mainnet when first syncing from genesis list transactions with a time range were one of the dates are far ahead of the node tip which is continuously syncing expected behavior when created a clear and concise description of what you expected to happen i get a response or a helpful error actual behavior theorized something went wrong note this shouldn t happen when the node is in shelley when created a clear and concise description of what you observe instead if applicable add screenshots to help explain your problem resolution when in progress what is happening how is this going to be fixed detail the approach and give in the form of a todo list steps toward the resolution of the bug attach a pr to each item in the list this may be refined as the investigation progresses qa when in progress how do we make sure the bug has been fixed give here manual steps or tests to verify the fix how why could this bug slip through testing
| 1
|
720,063
| 24,777,065,521
|
IssuesEvent
|
2022-10-23 21:21:09
|
radical-cybertools/radical.pilot
|
https://api.github.com/repos/radical-cybertools/radical.pilot
|
closed
|
make `register_mode` available on raptor's MPI worker also
|
type:enhancement priority:high comp:raptor
|
- [x] make mode signatures and return types similar to mpi worker (`out, err, ret, val` -> `out, err, ret, exc, val`)
- [x] make sure same task descriptions are accepted by both
Maybe move the default modes to the base worker and only leave the dispatch mechanism in the specialized classes?
|
1.0
|
make `register_mode` available on raptor's MPI worker also - - [x] make mode signatures and return types similar to mpi worker (`out, err, ret, val` -> `out, err, ret, exc, val`)
- [x] make sure same task descriptions are accepted by both
Maybe move the default modes to the base worker and only leave the dispatch mechanism in the specialized classes?
|
priority
|
make register mode available on raptor s mpi worker also make mode signatures and return types similar to mpi worker out err ret val out err ret exc val make sure same task descriptions are accepted by both maybe move the default modes to the base worker and only leave the dispatch mechanism in the specialized classes
| 1
|
583,401
| 17,384,729,219
|
IssuesEvent
|
2021-08-01 11:50:24
|
ihhub/fheroes2
|
https://api.github.com/repos/ihhub/fheroes2
|
closed
|
macos segmentation fault on castle seige + wrong forces disposition if attacked from own castle
|
bug crash high priority
|
I noticed regular crashes on castle seige, stack trace below. Also if you attach from your own castle enemy nearby the castle, you will see like your enemy is in your castle, but all towers will attach him.
Process: fheroes2 [43517]
Path: /Users/USER/*/fheroes2
Identifier: fheroes2
Version: 0
Code Type: X86-64 (Native)
Parent Process: bash [697]
Responsible: iTerm2 [608]
User ID: 501
Date/Time: 2021-08-01 12:56:50.298 +0300
OS Version: macOS 11.4 (20F71)
Report Version: 12
Bridge OS Version: 3.0 (14Y908)
Anonymous UUID: FA01A6BB-2021-672B-0DE2-E115343308CF
Sleep/Wake UUID: B374578D-0932-40BF-B9C4-DBE98701F7C9
Time Awake Since Boot: 290000 seconds
Time Since Wake: 12000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000003b4
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [43517]
VM Regions Near 0x3b4:
-->
__TEXT 1077ee000-107a5a000 [ 2480K] r-x/r-x SM=COW /Users/*
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 fheroes2 0x000000010786bb24 Battle::Unit::SetCustomAlpha(unsigned int) + 4
1 fheroes2 0x000000010785d526 Battle::Interface::RedrawActionSummonElementalSpell(Battle::Unit&) + 134
2 fheroes2 0x0000000107821eae Battle::Arena::ApplyActionSpellCast(Battle::Command&) + 190
3 fheroes2 0x000000010782a310 Battle::Arena::TurnTroop(Battle::Unit*, Battle::Units const&) + 736
4 fheroes2 0x000000010782abc7 Battle::Arena::Turns() + 1207
5 fheroes2 0x0000000107860d34 Battle::Loader(Army&, Army&, int) + 500
6 fheroes2 0x00000001079436de ActionToCastle(Heroes&, int) + 446
7 fheroes2 0x000000010795fb5d Heroes::MoveStep(bool) + 189
8 fheroes2 0x00000001079608b2 Heroes::Move(bool) + 226
9 fheroes2 0x0000000107914b30 Interface::Basic::HumanTurn(bool) + 2976
10 fheroes2 0x0000000107912300 Interface::Basic::StartGame() + 1088
11 fheroes2 0x0000000107911e8c Game::StartGame() + 108
12 fheroes2 0x0000000107906d48 Game::mainGameLoop(bool) + 184
13 fheroes2 0x00000001078f42b9 main + 3001
14 libdyld.dylib 0x00007fff20573f5d start + 1
Thread 1:: AMCP Logging Spool
0 libsystem_kernel.dylib 0x00007fff205232f6 semaphore_wait_trap + 10
1 com.apple.audio.caulk 0x00007fff286098da caulk::mach::semaphore::wait_or_error() + 16
2 com.apple.audio.caulk 0x00007fff285f6836 caulk::semaphore::timed_wait(double) + 110
3 com.apple.audio.caulk 0x00007fff285f6784 caulk::concurrent::details::worker_thread::run() + 30
4 com.apple.audio.caulk 0x00007fff285f6502 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*> > >(void*) + 45
5 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
6 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 2:: AudioQueue thread
0 libsystem_kernel.dylib 0x00007fff205232ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff2052362c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff20651b5f __CFRunLoopServiceMachPort + 316
3 com.apple.CoreFoundation 0x00007fff2065023f __CFRunLoopRun + 1328
4 com.apple.CoreFoundation 0x00007fff2064f64c CFRunLoopRunSpecific + 563
5 libSDL2-2.0.0.dylib 0x0000000107c21332 audioqueue_thread + 1047
6 libSDL2-2.0.0.dylib 0x0000000107baeed3 SDL_RunThread + 53
7 libSDL2-2.0.0.dylib 0x0000000107c16fdd RunThread + 9
8 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
9 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 3:
0 libsystem_kernel.dylib 0x00007fff205232f6 semaphore_wait_trap + 10
1 com.apple.audio.caulk 0x00007fff286098da caulk::mach::semaphore::wait_or_error() + 16
2 com.apple.audio.caulk 0x00007fff285f6836 caulk::semaphore::timed_wait(double) + 110
3 com.apple.audio.caulk 0x00007fff285f6784 caulk::concurrent::details::worker_thread::run() + 30
4 com.apple.audio.caulk 0x00007fff285f6502 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*> > >(void*) + 45
5 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
6 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 4:: AQConverterThread
0 libsystem_kernel.dylib 0x00007fff20525cde __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff20558e49 _pthread_cond_wait + 1298
2 libAudioToolboxUtility.dylib 0x00007fff2bde268c CADeprecated::CAGuard::Wait() + 54
3 com.apple.audio.toolbox.AudioToolbox 0x00007fff2cdd279f AQConverterManager::AQConverterThread::ConverterThreadEntry(void*) + 809
4 libAudioToolboxUtility.dylib 0x00007fff2bdc62f5 CADeprecated::CAPThread::Entry(CADeprecated::CAPThread*) + 77
5 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
6 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 5:: com.apple.audio.IOThread.client
0 libsystem_kernel.dylib 0x00007fff205232ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff2052362c mach_msg + 60
2 com.apple.audio.CoreAudio 0x00007fff2202d8f5 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 111
3 com.apple.audio.CoreAudio 0x00007fff21ed03ed invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int) + 3367
4 com.apple.audio.CoreAudio 0x00007fff2206c0c4 HALB_IOThread::Entry(void*) + 72
5 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
6 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 6:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff205232ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff2052362c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff20651b5f __CFRunLoopServiceMachPort + 316
3 com.apple.CoreFoundation 0x00007fff2065023f __CFRunLoopRun + 1328
4 com.apple.CoreFoundation 0x00007fff2064f64c CFRunLoopRunSpecific + 563
5 com.apple.AppKit 0x00007fff22fd668a _NSEventThread + 124
6 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
7 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 7:
0 libsystem_kernel.dylib 0x00007fff20525cde __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff20558e49 _pthread_cond_wait + 1298
2 libc++.1.dylib 0x00007fff204c1d72 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3 fheroes2 0x00000001077f48fb AGG::AsyncSoundManager::_workerThread(AGG::AsyncSoundManager*) + 171
4 fheroes2 0x00000001077f4e3c void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (*)(AGG::AsyncSoundManager*), AGG::AsyncSoundManager*> >(void*) + 44
5 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
6 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 8:: SDLTimer
0 libsystem_kernel.dylib 0x00007fff20525cde __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff20558e49 _pthread_cond_wait + 1298
2 libSDL2-2.0.0.dylib 0x0000000107c176e5 SDL_CondWaitTimeout_REAL + 144
3 libSDL2-2.0.0.dylib 0x0000000107c17363 SDL_SemWaitTimeout_REAL + 78
4 libSDL2-2.0.0.dylib 0x0000000107baf40a SDL_TimerThread + 457
5 libSDL2-2.0.0.dylib 0x0000000107baeed3 SDL_RunThread + 53
6 libSDL2-2.0.0.dylib 0x0000000107c16fdd RunThread + 9
7 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
8 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 9:
0 libsystem_pthread.dylib 0x00007fff20554420 start_wqthread + 0
Thread 10:
0 libsystem_pthread.dylib 0x00007fff20554420 start_wqthread + 0
Thread 11:: Dispatch queue: com.Metal.CommandQueueDispatch
0 libsystem_kernel.dylib 0x00007fff205232f6 semaphore_wait_trap + 10
1 libdispatch.dylib 0x00007fff203aec9b _dispatch_sema4_wait + 16
2 libdispatch.dylib 0x00007fff203af16d _dispatch_semaphore_wait_slow + 98
3 com.apple.Metal 0x00007fff284f0d95 -[_MTLCommandQueue _submitAvailableCommandBuffers] + 908
4 libdispatch.dylib 0x00007fff203ae806 _dispatch_client_callout + 8
5 libdispatch.dylib 0x00007fff203b11b0 _dispatch_continuation_pop + 423
6 libdispatch.dylib 0x00007fff203c1564 _dispatch_source_invoke + 2061
7 libdispatch.dylib 0x00007fff203b4493 _dispatch_lane_serial_drain + 263
8 libdispatch.dylib 0x00007fff203b50ad _dispatch_lane_invoke + 366
9 libdispatch.dylib 0x00007fff203bec0d _dispatch_workloop_worker_thread + 811
10 libsystem_pthread.dylib 0x00007fff2055545d _pthread_wqthread + 314
11 libsystem_pthread.dylib 0x00007fff2055442f start_wqthread + 15
Thread 12:
0 libsystem_pthread.dylib 0x00007fff20554420 start_wqthread + 0
Thread 13:
0 libsystem_pthread.dylib 0x00007fff20554420 start_wqthread + 0
Thread 14:: Dispatch queue: com.apple.coreanimation.imagequeue_pageoff
0 libsystem_kernel.dylib 0x00007fff205232ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff2052362c mach_msg + 60
2 com.apple.framework.IOKit 0x00007fff22d0c793 io_connect_method + 384
3 com.apple.framework.IOKit 0x00007fff22d0c5af IOConnectCallMethod + 186
4 com.apple.IOSurface 0x00007fff284b7884 IOSurfaceClientBindAccel + 141
5 com.apple.QuartzCore 0x00007fff26fc6e37 __CAImageQueueInsertImage__block_invoke + 22
6 libdispatch.dylib 0x00007fff203ad623 _dispatch_call_block_and_release + 12
7 libdispatch.dylib 0x00007fff203ae806 _dispatch_client_callout + 8
8 libdispatch.dylib 0x00007fff203b45ea _dispatch_lane_serial_drain + 606
9 libdispatch.dylib 0x00007fff203b50ad _dispatch_lane_invoke + 366
10 libdispatch.dylib 0x00007fff203bec0d _dispatch_workloop_worker_thread + 811
11 libsystem_pthread.dylib 0x00007fff2055545d _pthread_wqthread + 314
12 libsystem_pthread.dylib 0x00007fff2055442f start_wqthread + 15
Thread 15:
0 libsystem_pthread.dylib 0x00007fff20554420 start_wqthread + 0
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x000319d7eaf03201 rbx: 0x0000000000000014 rcx: 0x0000000000000000 rdx: 0x00000000000d5188
rdi: 0x0000000000000000 rsi: 0x0000000000000014 rbp: 0x00007ffee8411260 rsp: 0x00007ffee8411260
r8: 0x0000000000000224 r9: 0x00000000000f4240 r10: 0x0000000000000001 r11: 0x0000000000200247
r12: 0x00007fc983989600 r13: 0x00007fc981b37ec8 r14: 0x0000000000000000 r15: 0x0000000107aacd10
rip: 0x000000010786bb24 rfl: 0x0000000000210206 cr2: 0x00000000000003b4
Logical CPU: 6
Error Code: 0x00000006 (no mapping for user data write)
Trap Number: 14
Thread 0 instruction stream:
1c 10 0f 9c c2 48 0f 4d-d9 48 8b 0c d1 48 85 c9 .....H.M.H...H..
75 ea 48 39 c3 74 26 83-7b 1c 10 7f 20 75 06 83 u.H9.t&.{... u..
7b 24 00 75 18 bf 01 00-00 00 be 64 00 00 00 e8 {$.u.......d....
88 fc 17 00 3b 43 20 77-04 44 8b 73 24 44 89 f0 ....;C w.D.s$D..
5b 41 5e 5d c3 0f 1f 80-00 00 00 00 55 48 89 e5 [A^]........UH..
48 83 c7 28 5d e9 a2 d2-fb ff 66 90 55 48 89 e5 H..(].....f.UH..
[89]b7 b4 03 00 00 5d c3-0f 1f 40 00 55 48 89 e5 ......]...@.UH.. <==
8b 87 b4 03 00 00 5d c3-0f 1f 40 00 55 48 89 e5 ......]...@.UH..
48 83 c7 28 5d e9 92 d1-fb ff 66 90 55 48 89 e5 H..(].....f.UH..
48 83 c7 28 5d e9 72 d3-fb ff 66 90 55 48 89 e5 H..(].r...f.UH..
53 50 48 89 fb 48 83 c3-28 48 89 df e8 8b ce fb SPH..H..(H......
ff 48 89 df 48 83 c4 08-5b 5d e9 7d d3 fb ff 66 .H..H...[].}...f
Thread 0 last branch register state not available.
Binary Images:
0x1077ee000 - 0x107a59fff +fheroes2 (0) <3F2411FD-5FB6-3851-AC33-2708F79AD6F4> /Users/USER/*/fheroes2
0x107b56000 - 0x107c51fff +libSDL2-2.0.0.dylib (0) <C8F7F43F-39EC-32F9-8183-1AD47AF40911> /usr/local/opt/sdl2/lib/libSDL2-2.0.0.dylib
0x107c9f000 - 0x107cb6fff +libSDL2_mixer-2.0.0.dylib (0) <F958CFC6-000B-359C-8B44-7DCBDC50B69F> /usr/local/opt/sdl2_mixer/lib/libSDL2_mixer-2.0.0.dylib
0x107ccb000 - 0x107cd2fff +libSDL2_ttf-2.0.0.dylib (0) <515C2C46-D8A8-386E-B4C1-F43467BBDD53> /usr/local/opt/sdl2_ttf/lib/libSDL2_ttf-2.0.0.dylib
0x107ce5000 - 0x107d20fff +libmodplug.1.dylib (0) <ADAD3C9D-E429-36F9-B952-51FD924D10CC> /usr/local/opt/libmodplug/lib/libmodplug.1.dylib
0x107de6000 - 0x107dedfff +libvorbisfile.3.dylib (0) <BCF0B31F-6D9B-3391-9CBB-E01227A604AE> /usr/local/opt/libvorbis/lib/libvorbisfile.3.dylib
0x107e01000 - 0x107e24fff +libvorbis.0.dylib (0) <534D743F-4585-3843-B191-D7B3146634AF> /usr/local/opt/libvorbis/lib/libvorbis.0.dylib
0x107e34000 - 0x107e5ffff +libFLAC.8.dylib (0) <8ABB45E3-FC84-3669-B93B-6342E4AF9660> /usr/local/opt/flac/lib/libFLAC.8.dylib
0x107e77000 - 0x107e7efff +libogg.0.dylib (0) <BFDBD02C-9BDF-37A0-9C78-536077343AE6> /usr/local/opt/libogg/lib/libogg.0.dylib
0x107e8b000 - 0x107f0afff +libfreetype.6.dylib (0) <83AAF35B-E6AE-3AEB-9EE5-9614C3EA8883> /usr/local/opt/freetype/lib/libfreetype.6.dylib
0x107f2d000 - 0x107f4ffff +libpng16.16.dylib (0) <F666699A-02D5-3061-ADF9-B7A7E471C1E1> /usr/local/opt/libpng/lib/libpng16.16.dylib
0x10c32f000 - 0x10c33efff libobjc-trampolines.dylib (824) <361143B8-E66E-3402-85B5-C20893AAB9C9> /usr/lib/libobjc-trampolines.dylib
0x10c482000 - 0x10c489fff com.apple.audio.AppleHDAHALPlugIn (283.15 - 283.15) <A3A6DCDC-B5DA-33D4-AC82-3737A556DC04> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x10c4e9000 - 0x10c584fff dyld (852) <1AC76561-4F9A-34B1-BA7C-4516CACEAED7> /usr/lib/dyld
0x11049b000 - 0x110602fff com.apple.audio.units.Components (1.14 - 1.14) <6375574E-7ADB-3867-837D-5811B866554C> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x7fff20290000 - 0x7fff20291fff libsystem_blocks.dylib (79) <48AF56A9-6E42-3A5E-A213-E6AFD8F81044> /usr/lib/system/libsystem_blocks.dylib
0x7fff20292000 - 0x7fff202c7fff libxpc.dylib (2038.120.1) <5751A7F5-6DC5-3090-B7F1-D90ED71BEF1F> /usr/lib/system/libxpc.dylib
0x7fff202c8000 - 0x7fff202dffff libsystem_trace.dylib (1277.120.1) <8E243C00-BFC2-3FAA-989C-0D72314DB04D> /usr/lib/system/libsystem_trace.dylib
0x7fff202e0000 - 0x7fff2037dfff libcorecrypto.dylib (1000.120.2) <FADB19A0-1BF3-3F47-B729-87B4FA8CA677> /usr/lib/system/libcorecrypto.dylib
0x7fff2037e000 - 0x7fff203aafff libsystem_malloc.dylib (317.121.1) <CAD162A5-7367-3A30-9C15-5D036411AEDE> /usr/lib/system/libsystem_malloc.dylib
0x7fff203ab000 - 0x7fff203effff libdispatch.dylib (1271.120.2) <7B229797-1F2E-3409-9D0C-060C7EEF2E12> /usr/lib/system/libdispatch.dylib
0x7fff203f0000 - 0x7fff20429fff libobjc.A.dylib (824) <FE5AF22E-80A1-34BB-98D6-610879988BAA> /usr/lib/libobjc.A.dylib
0x7fff2042a000 - 0x7fff2042cfff libsystem_featureflags.dylib (28.60.1) <77F7F479-39BD-3111-BE3C-C74567FD120C> /usr/lib/system/libsystem_featureflags.dylib
0x7fff2042d000 - 0x7fff204b5fff libsystem_c.dylib (1439.100.3) <38F8A126-C995-349A-B909-FF831914ED2E> /usr/lib/system/libsystem_c.dylib
0x7fff204b6000 - 0x7fff2050bfff libc++.1.dylib (905.6) <B3812B86-4FCF-3A10-8866-DF67940A974C> /usr/lib/libc++.1.dylib
0x7fff2050c000 - 0x7fff20521fff libc++abi.dylib (905.6) <A0FE88B7-E157-3C9C-A29A-11D3BE3436B3> /usr/lib/libc++abi.dylib
0x7fff20522000 - 0x7fff20551fff libsystem_kernel.dylib (7195.121.3) <A4938CF5-ABC0-397B-8A6E-B7BEEFA24D0A> /usr/lib/system/libsystem_kernel.dylib
0x7fff20552000 - 0x7fff2055dfff libsystem_pthread.dylib (454.120.2) <17482C9D-061E-3769-AC9E-BE1239D33098> /usr/lib/system/libsystem_pthread.dylib
0x7fff2055e000 - 0x7fff20599fff libdyld.dylib (852) <C10CEA28-D5A0-324F-8F07-8C7CE4805412> /usr/lib/system/libdyld.dylib
0x7fff2059a000 - 0x7fff205a3fff libsystem_platform.dylib (254.80.2) <8664A4CD-EE27-3C71-B5CC-06E2B1B4F394> /usr/lib/system/libsystem_platform.dylib
0x7fff205a4000 - 0x7fff205cffff libsystem_info.dylib (542.40.3) <EA3F9C9C-3116-3DB4-A3F1-5B03172C1E72> /usr/lib/system/libsystem_info.dylib
0x7fff205d0000 - 0x7fff20a6dfff com.apple.CoreFoundation (6.9 - 1776.103) <01EFB7F8-BCE6-32DF-A0B8-02F9027F882C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff20a6e000 - 0x7fff20ca2fff com.apple.LaunchServices (1122.38 - 1122.38) <241B3D82-2C9C-3F7D-88BD-AC78A689FF04> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff20ca3000 - 0x7fff20d76fff com.apple.gpusw.MetalTools (1.0 - 1) <03202B68-E515-3CBE-AC5A-39E80A702A6F> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff20d77000 - 0x7fff20fd3fff libBLAS.dylib (1336.120.1) <44514FE9-B994-380E-8341-4ABA30DB8895> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff20fd4000 - 0x7fff21021fff com.apple.Lexicon-framework (1.0 - 86.2) <F69DF515-4980-36C8-9F5D-987B67D2AFAF> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff21022000 - 0x7fff21090fff libSparse.dylib (106) <E7F273C0-18F8-3688-9B63-C86DEB06740A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff21091000 - 0x7fff2110efff com.apple.SystemConfiguration (1.20 - 1.20) <81EDA68C-051A-3F4C-B79E-B53B365B67B1> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff2110f000 - 0x7fff21143fff libCRFSuite.dylib (50) <703BB228-D959-3009-AF3F-0015588F531A> /usr/lib/libCRFSuite.dylib
0x7fff21144000 - 0x7fff2137cfff libmecabra.dylib (929.10) <43C2A11F-7F68-31B6-AD65-31282837DED3> /usr/lib/libmecabra.dylib
0x7fff2137d000 - 0x7fff216dbfff com.apple.Foundation (6.9 - 1776.103) <3C3B967D-778D-30BF-A3F8-E734FAFD76F2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff216dc000 - 0x7fff217c4fff com.apple.LanguageModeling (1.0 - 247.3) <58ACD840-A17B-3CB0-B010-7E4493C5BC5C> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff217c5000 - 0x7fff218fbfff com.apple.CoreDisplay (237.3 - 237.3) <65322ECF-632D-362D-870D-5CE69B1B6C60> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff218fc000 - 0x7fff21b6cfff com.apple.audio.AudioToolboxCore (1.0 - 1181.68) <87BA778B-6634-30D8-BF69-678C36246242> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
0x7fff21b6d000 - 0x7fff21d52fff com.apple.CoreText (677.5.0.5 - 677.5.0.5) <C148A259-D01A-3634-9449-119EB084ABA9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff21d53000 - 0x7fff223e3fff com.apple.audio.CoreAudio (5.0 - 5.0) <E987DC18-3396-3AAD-A66A-2B755C8D242A> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff223e4000 - 0x7fff22738fff com.apple.security (7.0 - 59754.120.12) <7C3D689E-9B3E-3F73-ACF0-F40C1297D180> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff22739000 - 0x7fff22998fff libicucore.A.dylib (66112) <9957A773-012E-3ABA-9587-CFF787170AE8> /usr/lib/libicucore.A.dylib
0x7fff22999000 - 0x7fff229a2fff libsystem_darwin.dylib (1439.100.3) <BF5B5FD8-B5A3-3035-8641-466E625A6CE8> /usr/lib/system/libsystem_darwin.dylib
0x7fff229a3000 - 0x7fff22c8efff com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) <1C5425B5-0E8C-3691-99AB-44F17F357C81> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff22c8f000 - 0x7fff22ccdfff com.apple.CoreServicesInternal (476.1.1 - 476.1.1) <6CF5F363-4653-3605-A340-363C743BBEDD> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff22cce000 - 0x7fff22d08fff com.apple.CSStore (1122.38 - 1122.38) <A664672F-440D-3BA8-8851-68B4C6AB1022> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
0x7fff22d09000 - 0x7fff22db7fff com.apple.framework.IOKit (2.0.2 - 1845.120.6) <C6E70E82-8508-3515-ACE1-361E575D466A> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff22db8000 - 0x7fff22dc3fff libsystem_notify.dylib (279.40.4) <7FFECC25-FA84-3B59-9CC8-4D9DC84E6EC1> /usr/lib/system/libsystem_notify.dylib
0x7fff22dc4000 - 0x7fff22e11fff libsandbox.1.dylib (1441.120.5) <F4FF5F3E-6533-3BD5-8EF1-D298E0C954F6> /usr/lib/libsandbox.1.dylib
0x7fff22e12000 - 0x7fff23b5afff com.apple.AppKit (6.9 - 2022.50.114) <02279013-2888-3A1D-8F28-0C39A64EF5FA> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff23b5b000 - 0x7fff23da9fff com.apple.UIFoundation (1.0 - 728.8) <A901F2AB-A1C3-3BDB-A2ED-33CAEC118589> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff23daa000 - 0x7fff23dbcfff com.apple.UniformTypeIdentifiers (637 - 637) <8DEE5893-C380-335B-B3DA-DD49DA8FB037> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
0x7fff23dbd000 - 0x7fff23f47fff com.apple.desktopservices (1.20 - 1346.5.1) <E4F2E32A-6D94-35D5-B510-44C604236A64> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff24227000 - 0x7fff248adfff libnetwork.dylib (2288.121.1) <728F736C-8AB2-30C0-8E61-A84F34642B18> /usr/lib/libnetwork.dylib
0x7fff248ae000 - 0x7fff24d4cfff com.apple.CFNetwork (1240.0.4 - 1240.0.4) <83684BEF-A3CE-3227-8E10-A8A538CCA9AE> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff24d4d000 - 0x7fff24d5bfff libsystem_networkextension.dylib (1295.120.5) <02486B74-EAAD-3055-AE20-F12E79B39297> /usr/lib/system/libsystem_networkextension.dylib
0x7fff24d5c000 - 0x7fff24d5cfff libenergytrace.dylib (22.100.1) <7039CE14-0DED-3FD3-A540-A01DEFC4314D> /usr/lib/libenergytrace.dylib
0x7fff24d5d000 - 0x7fff24db9fff libMobileGestalt.dylib (978.120.1) <9FF187B8-854F-338D-BD6A-AE142C815617> /usr/lib/libMobileGestalt.dylib
0x7fff24dba000 - 0x7fff24dd0fff libsystem_asl.dylib (385) <B3E89650-A7FE-3E93-8A1B-D88145FDD45C> /usr/lib/system/libsystem_asl.dylib
0x7fff24dd1000 - 0x7fff24de8fff com.apple.TCC (1.0 - 1) <5D202FF3-7BD8-3384-A8AB-7D62CD14C412> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff24de9000 - 0x7fff2514dfff com.apple.SkyLight (1.600.0 - 588.1) <D5925B80-2468-3709-9DFD-BEAF418169EC> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff2514e000 - 0x7fff257d7fff com.apple.CoreGraphics (2.0 - 1463.14.2) <8E1776B9-0046-3FCF-BF54-F76490EA4A27> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff257d8000 - 0x7fff258cefff com.apple.ColorSync (4.13.0 - 3473.4.3) <CB975116-61F8-330F-B111-3F0467F88BC1> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff258cf000 - 0x7fff2592afff com.apple.HIServices (1.22 - 716) <132B9E44-BF23-3B61-96F2-7678C81115AA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff25cd1000 - 0x7fff260f0fff com.apple.CoreData (120 - 1048) <D3DAFFD5-CC38-3A82-B138-015DBFD551D9> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff260f1000 - 0x7fff26106fff com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <C92547DE-86B8-3734-A17D-D0F9B4AE1300> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff26107000 - 0x7fff262bafff libsqlite3.dylib (321.3) <E9324AF2-968F-3459-A0EB-2FD4E8A3BF09> /usr/lib/libsqlite3.dylib
0x7fff262bb000 - 0x7fff26337fff com.apple.Accounts (113 - 113) <E31BCCDB-C1E3-3C74-9527-EF1643FF6224> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff26338000 - 0x7fff2634ffff com.apple.commonutilities (8.0 - 900) <4EBBE25A-3599-3DC8-B846-F90BD23FED85> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff26350000 - 0x7fff263cffff com.apple.BaseBoard (526 - 526) <ECED5758-3FD9-3F09-8E55-2230E391373A> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff263d0000 - 0x7fff26418fff com.apple.RunningBoardServices (1.0 - 505.100.8) <F72D5FDE-6DC0-3068-AD08-CA8D165E574D> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
0x7fff26419000 - 0x7fff2648dfff com.apple.AE (918.6 - 918.6) <A9B7A6D0-85CE-31CD-8926-81D3A714AF42> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff2648e000 - 0x7fff26494fff libdns_services.dylib (1310.120.71) <6F77A4C7-40B9-3062-8650-6E1E2FD07046> /usr/lib/libdns_services.dylib
0x7fff26495000 - 0x7fff2649cfff libsystem_symptoms.dylib (1431.120.1) <3BEA5355-D267-39D4-8BC6-A1703845BD3F> /usr/lib/system/libsystem_symptoms.dylib
0x7fff2649d000 - 0x7fff26628fff com.apple.Network (1.0 - 1) <39B5F4D8-5105-37CB-9F18-2B2C36CB4B42> /System/Library/Frameworks/Network.framework/Versions/A/Network
0x7fff26629000 - 0x7fff26658fff com.apple.analyticsd (1.0 - 1) <2DABBC97-042F-39C7-85A5-A6F47BCAC5EC> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
0x7fff26659000 - 0x7fff2665bfff libDiagnosticMessagesClient.dylib (112) <8D0655AC-218F-3AA6-9802-2444E6801067> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff2665c000 - 0x7fff266a8fff com.apple.spotlight.metadata.utilities (1.0 - 2150.21) <7CE4BC56-65ED-3D75-8DA0-05EFE1BA2256> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff266a9000 - 0x7fff26743fff com.apple.Metadata (10.7.0 - 2150.21) <04F83B90-3535-326F-8897-D43F55DDE771> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff26744000 - 0x7fff2674afff com.apple.DiskArbitration (2.7 - 2.7) <97F9E5D9-0942-3AD6-8D31-65106C452CB8> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff2674b000 - 0x7fff26db2fff com.apple.vImage (8.1 - 544.4) <A711FD44-1495-3D7B-BF5C-E238C17B1A79> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff26db3000 - 0x7fff2708ffff com.apple.QuartzCore (1.11 - 927.21) <F384A0C0-F855-3B4D-AAD0-E0F0550E226C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff27090000 - 0x7fff270d1fff libFontRegistry.dylib (309) <5D9848B3-14C7-34A8-A981-B3C2CFD12BD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff270d2000 - 0x7fff27212fff com.apple.coreui (2.1 - 692.1) <76D85525-8D99-3F0F-BC36-DEA342D4589D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff27213000 - 0x7fff272fefff com.apple.ViewBridge (553.1 - 553.1) <21A4A790-5A90-3C45-979E-9CF3ED9E8092> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff272ff000 - 0x7fff2730afff com.apple.PerformanceAnalysis (1.278.3 - 278.3) <3FE8B4FD-B159-38B0-BA07-DE6722AC9F55> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff2730b000 - 0x7fff2731afff com.apple.OpenDirectory (11.4 - 230.40.1) <32596EC3-5500-3B18-ABCD-D92EDEDE74BF> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff2731b000 - 0x7fff2733afff com.apple.CFOpenDirectory (11.4 - 230.40.1) <3AA364D1-58AE-3C8D-B897-5B4AC3256BE7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff2733b000 - 0x7fff27347fff com.apple.CoreServices.FSEvents (1290.120.5 - 1290.120.5) <4C4959DF-FE61-30E8-8BBB-3BF674BE203A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff27348000 - 0x7fff2736cfff com.apple.coreservices.SharedFileList (144 - 144) <4418DDA1-CA34-3402-97F2-CE9B60019617> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff2736d000 - 0x7fff2736ffff libapp_launch_measurement.dylib (14.1) <78905455-A807-3D67-AD56-FF8C22D31B16> /usr/lib/libapp_launch_measurement.dylib
0x7fff27370000 - 0x7fff273b7fff com.apple.CoreAutoLayout (1.0 - 21.10.1) <E848DF1F-1C82-3F04-87B8-9BF0C956A587> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
0x7fff273b8000 - 0x7fff2749afff libxml2.2.dylib (34.9) <08E7CAB2-0EED-376C-880A-E52CC01E82F3> /usr/lib/libxml2.2.dylib
0x7fff2749b000 - 0x7fff274e8fff com.apple.CoreVideo (1.8 - 414.7) <29D4EA46-F0B6-3004-863C-0940ACD200C2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff274e9000 - 0x7fff274ebfff com.apple.loginsupport (1.0 - 1) <02FCC3AF-1E2D-3603-9D6F-33589ED28A00> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff27514000 - 0x7fff2752ffff com.apple.UserManagement (1.0 - 1) <12F6D91A-C660-37CD-90E7-A0137393F080> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
0x7fff284a3000 - 0x7fff284b3fff libsystem_containermanager.dylib (318.100.4) <2BBFF58C-D27E-3371-968D-7DE1E53749F6> /usr/lib/system/libsystem_containermanager.dylib
0x7fff284b4000 - 0x7fff284c5fff com.apple.IOSurface (290.8.1 - 290.8.1) <BA97183F-8EE4-3833-8AA7-06D9B9D39BDF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff284c6000 - 0x7fff284cffff com.apple.IOAccelerator (442.9 - 442.9) <91FA0C86-BD36-373C-B91A-7360D27CA614> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff284d0000 - 0x7fff285f3fff com.apple.Metal (244.201 - 244.201) <5197E017-D6CD-3611-A8B5-76A4FB901C6A> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff285f4000 - 0x7fff28610fff com.apple.audio.caulk (1.0 - 70) <B6AB0B5B-ED36-3567-8112-5C9DEDBFBBFA> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
0x7fff28611000 - 0x7fff286fbfff com.apple.CoreMedia (1.0 - 2775.22) <9C15E6D0-245E-3A6E-BC67-C1DF67F7EB2A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff286fc000 - 0x7fff2885cfff libFontParser.dylib (305.5.0.1) <DFE3F79C-849C-3FC7-AFC0-24AB83171A36> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x7fff2885d000 - 0x7fff28b58fff com.apple.HIToolbox (2.1.1 - 1061.11) <DFAA0674-E367-36D9-925A-4EA9A6954BB0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff28b59000 - 0x7fff28b6cfff com.apple.framework.DFRFoundation (1.0 - 266) <0B60B894-C5A5-38F0-8755-53BD217B0E36> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff28b6d000 - 0x7fff28b70fff com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1) <8828FD40-9EE5-3E09-9DD7-8B7E34B34C26> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff28b71000 - 0x7fff28b9afff com.apple.CoreSVG (1.0 - 149) <BA347BBA-DC27-3728-9728-A791957D3F59> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
0x7fff28b9b000 - 0x7fff28dd7fff com.apple.ImageIO (3.3.0 - 2130.5.4) <14E0D520-1EE1-3C80-9827-4E5F513A7289> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff28dd8000 - 0x7fff29153fff com.apple.CoreImage (16.3.0 - 1140.2) <4A5B2859-C1F7-3938-B4B6-DDEC972798D1> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff29154000 - 0x7fff291bafff com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <20902DA8-4AAB-36C8-9224-4F9E828B465A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff291bb000 - 0x7fff291befff libsystem_configuration.dylib (1109.120.1) <C7A9BD10-192B-31D3-92ED-2581A61A99F6> /usr/lib/system/libsystem_configuration.dylib
0x7fff291bf000 - 0x7fff291c3fff libsystem_sandbox.dylib (1441.120.5) <DC075A7C-9D4A-32D3-9022-CD47764AFDAD> /usr/lib/system/libsystem_sandbox.dylib
0x7fff291c4000 - 0x7fff291c5fff com.apple.AggregateDictionary (1.0 - 1) <4394E8DB-F6D9-3F85-B894-F463378DC1B4> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff291c6000 - 0x7fff291c9fff com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <1826DE1C-06B1-3140-A9A2-F7D55C1D9DB6> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff291ca000 - 0x7fff291cbfff liblangid.dylib (136) <ADE3A41C-F815-39DE-A978-1B0EE456167B> /usr/lib/liblangid.dylib
0x7fff291cc000 - 0x7fff29270fff com.apple.CoreNLP (1.0 - 245.2) <9B1C60E4-2B36-34A7-AF43-7EEC914FA1FE> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff29271000 - 0x7fff29277fff com.apple.LinguisticData (1.0 - 399) <48C87E01-670A-336C-9D37-723E06BE422D> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff29278000 - 0x7fff29920fff libBNNS.dylib (288.100.5) <48BD7046-5DBD-3F3D-AD81-376AD24FA45D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff29921000 - 0x7fff29af3fff libvDSP.dylib (760.100.3) <372AD8C6-F390-3257-A886-D3B545AAB98C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff29af4000 - 0x7fff29b05fff com.apple.CoreEmoji (1.0 - 128.4) <677784E7-E4E6-3405-AC53-DD66197C4821> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff29b06000 - 0x7fff29b10fff com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <A57347A7-1354-3F54-B9EC-E5F83A200AAF> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
0x7fff29b11000 - 0x7fff29be3fff com.apple.framework.CoreWLAN (16.0 - 1657) <42166AAE-D9EF-3EE6-A0F3-8B3E320BB39E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff29be4000 - 0x7fff29de5fff com.apple.CoreUtils (6.6 - 660.37) <D3F3801B-EC48-3C0B-9438-0C12C4A0BA87> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff29de6000 - 0x7fff29e08fff com.apple.MobileKeyBag (2.0 - 1.0) <1FCEE156-0810-3425-88FC-E7EA6B38ACA7> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff29e09000 - 0x7fff29e19fff com.apple.AssertionServices (1.0 - 505.100.8) <E691B254-0792-348B-BC13-2B1A490174C4> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff29e1a000 - 0x7fff29ea5fff com.apple.securityfoundation (6.0 - 55240.40.4) <AD930CCB-A3F5-3C2C-A2CD-9963A63560F5> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff29ea6000 - 0x7fff29eaffff com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <4B88024D-62DB-3E5D-BCA2-076663214608> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff29eb0000 - 0x7fff29eb4fff com.apple.xpc.ServiceManagement (1.0 - 1) <7E760B22-944C-387A-903F-C9184CE788B9> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff29eb5000 - 0x7fff29eb7fff libquarantine.dylib (119.40.2) <4611645F-5817-3A80-8382-2DB03A8C0141> /usr/lib/system/libquarantine.dylib
0x7fff29eb8000 - 0x7fff29ec3fff libCheckFix.dylib (31) <33CE141E-48F5-3974-BD63-1F63558BB452> /usr/lib/libCheckFix.dylib
0x7fff29ec4000 - 0x7fff29edbfff libcoretls.dylib (169.100.1) <68726723-2EA1-3007-89ED-F66725A6AA7E> /usr/lib/libcoretls.dylib
0x7fff29edc000 - 0x7fff29eecfff libbsm.0.dylib (68.40.1) <77DF90DF-D5C2-3178-AAA7-96FC6D9F2312> /usr/lib/libbsm.0.dylib
0x7fff29eed000 - 0x7fff29f36fff libmecab.dylib (929.10) <48F1EC4F-7D85-347F-B20C-7225AF2499A4> /usr/lib/libmecab.dylib
0x7fff29f37000 - 0x7fff29f3cfff libgermantok.dylib (24) <171A100F-C862-3CA2-A308-5AA9EF24B690> /usr/lib/libgermantok.dylib
0x7fff29f3d000 - 0x7fff29f52fff libLinearAlgebra.dylib (1336.120.1) <09738E52-FA24-3239-895D-F762C920F03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff29f53000 - 0x7fff2a171fff com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <C515FA90-1022-308E-A513-0EA9831FE712> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff2a172000 - 0x7fff2a1c1fff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <1C3D9332-2C1D-3B52-A679-35BC37A3E8F0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff2a1c2000 - 0x7fff2a323fff com.apple.MLCompute (1.0 - 1) <0B7ADB41-62BE-32EE-821A-BB7141DE8B42> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
0x7fff2a324000 - 0x7fff2a35afff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <D5B2AEEE-3973-35A5-9FF9-1C7C031B7125> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff2a35b000 - 0x7fff2a3b1fff com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <0E99566D-A21A-304F-AF1A-A9530AED8A92> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
0x7fff2a3b2000 - 0x7fff2a442fff com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <1C395A17-2F98-35A5-B768-F22A714100D0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff2a443000 - 0x7fff2a452fff com.apple.AppleFSCompression (125 - 1.0) <6BD3FF9C-BCEE-3AB9-AC52-71A75D1C54AD> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff2a453000 - 0x7fff2a45ffff libbz2.1.0.dylib (44) <CA69420A-25E7-344C-852F-808F09AD43D0> /usr/lib/libbz2.1.0.dylib
0x7fff2a460000 - 0x7fff2a464fff libsystem_coreservices.dylib (127.1) <1E2DA16B-D528-3D43-86C2-2BB9127954A0> /usr/lib/system/libsystem_coreservices.dylib
0x7fff2a465000 - 0x7fff2a492fff com.apple.CoreServices.OSServices (1122.38 - 1122.38) <D02BE0AC-0544-3D1F-9E79-37715E231214> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff2a493000 - 0x7fff2a5c2fff com.apple.AuthKit (1.0 - 1) <C35AA029-1F96-3F5F-B71C-EF55E59F8F0D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff2a5c3000 - 0x7fff2a5f1fff com.apple.UserNotifications (1.0 - 348.5) <2B935838-63EE-3A80-AA91-3A62403108C5> /System/Library/Frameworks/UserNotifications.framework/Versions/A/UserNotifications
0x7fff2a661000 - 0x7fff2a673fff libz.1.dylib (76) <C1E6CE87-167E-39EC-8B8F-2C3213A0208E> /usr/lib/libz.1.dylib
0x7fff2a674000 - 0x7fff2a6bbfff libsystem_m.dylib (3186.100.3) <21949128-D4E6-3179-B248-41B05C1CE102> /usr/lib/system/libsystem_m.dylib
0x7fff2a6bc000 - 0x7fff2a6bcfff libcharset.1.dylib (59) <4B3453D8-277A-38D3-862D-28DF71F3E285> /usr/lib/libcharset.1.dylib
0x7fff2a6bd000 - 0x7fff2a6c2fff libmacho.dylib (980) <3677B3B7-03E8-3804-B2FE-5640B18FE40E> /usr/lib/system/libmacho.dylib
0x7fff2a6c3000 - 0x7fff2a6defff libkxld.dylib (7195.121.3) <A83BCE3F-35C1-34DD-B1C5-B4FDFB33B250> /usr/lib/system/libkxld.dylib
0x7fff2a6df000 - 0x7fff2a6eafff libcommonCrypto.dylib (60178.120.3) <BBA72D86-B9C1-3123-AE59-D629DE278695> /usr/lib/system/libcommonCrypto.dylib
0x7fff2a6eb000 - 0x7fff2a6f5fff libunwind.dylib (201) <3149D79A-911B-39ED-9C93-6C7E6B0860C7> /usr/lib/system/libunwind.dylib
0x7fff2a6f6000 - 0x7fff2a6fdfff liboah.dylib (203.46) <0A17EAFC-15E9-37FE-8EE2-DE0F7F220AD8> /usr/lib/liboah.dylib
0x7fff2a6fe000 - 0x7fff2a708fff libcopyfile.dylib (173.40.2) <7304CA0D-E93C-367F-9BEE-AC56B873F06C> /usr/lib/system/libcopyfile.dylib
0x7fff2a709000 - 0x7fff2a710fff libcompiler_rt.dylib (102.2) <0DB1902E-C79C-3E26-BE51-F70960ECF0B9> /usr/lib/system/libcompiler_rt.dylib
0x7fff2a711000 - 0x7fff2a713fff libsystem_collections.dylib (1439.100.3) <E180C04A-9CFB-3C8E-9C2B-978D23A99F2A> /usr/lib/system/libsystem_collections.dylib
0x7fff2a714000 - 0x7fff2a716fff libsystem_secinit.dylib (87.60.1) <8C33D323-C11C-34CB-9295-4D7C98B8AFD6> /usr/lib/system/libsystem_secinit.dylib
0x7fff2a717000 - 0x7fff2a719fff libremovefile.dylib (49.120.1) <6DEAEEC9-2A65-3C7B-A9CE-23245772FD07> /usr/lib/system/libremovefile.dylib
0x7fff2a71a000 - 0x7fff2a71afff libkeymgr.dylib (31) <FD167835-3829-3FFD-B13E-D18113E271AB> /usr/lib/system/libkeymgr.dylib
0x7fff2a71b000 - 0x7fff2a722fff libsystem_dnssd.dylib (1310.120.71) <7BB607FE-EF79-3144-8BD0-A66792FF1443> /usr/lib/system/libsystem_dnssd.dylib
0x7fff2a723000 - 0x7fff2a728fff libcache.dylib (83) <8B201058-2C34-3C12-9A7A-898CB0AAD150> /usr/lib/system/libcache.dylib
0x7fff2a729000 - 0x7fff2a72afff libSystem.B.dylib (1292.120.1) <A8309074-31CC-31F0-A143-81DF019F7A86> /usr/lib/libSystem.B.dylib
0x7fff2a72b000 - 0x7fff2a72efff libfakelink.dylib (3) <CF7D19AF-D162-369D-9501-0BEAC4D1188E> /usr/lib/libfakelink.dylib
0x7fff2a72f000 - 0x7fff2a72ffff com.apple.SoftLinking (1.0 - 1) <6C04D3E0-BFE0-32E2-A098-46D726F9B429> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
0x7fff2a730000 - 0x7fff2a767fff libpcap.A.dylib (98.100.3) <87B9769E-D88E-37F9-BB83-B327527AE79C> /usr/lib/libpcap.A.dylib
0x7fff2a768000 - 0x7fff2a858fff libiconv.2.dylib (59) <B9FD3BC7-6001-3E60-A7FB-CE8AAE07C805> /usr/lib/libiconv.2.dylib
0x7fff2a859000 - 0x7fff2a86afff libcmph.dylib (8) <AE1C3A87-5C44-3833-9DE1-31062A878138> /usr/lib/libcmph.dylib
0x7fff2a86b000 - 0x7fff2a8dcfff libarchive.2.dylib (83.100.2) <5DF98631-FBAC-3F17-B4D1-0115CE6C009B> /usr/lib/libarchive.2.dylib
0x7fff2a8dd000 - 0x7fff2a944fff com.apple.SearchKit (1.4.1 - 1.4.1) <FBAB58C4-1B62-39E8-9241-93966CC2C9C0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff2a945000 - 0x7fff2a946fff libThaiTokenizer.dylib (3) <1D735582-F932-3279-9F47-D10EAD1CA9A2> /usr/lib/libThaiTokenizer.dylib
0x7fff2a947000 - 0x7fff2a969fff com.apple.applesauce (1.0 - 16.28) <F07DA929-24FA-36D3-A356-05C9565AC397> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff2a96a000 - 0x7fff2a981fff libapple_nghttp2.dylib (1.41) <303C40AC-4212-3B20-ABF6-91F46A79B78B> /usr/lib/libapple_nghttp2.dylib
0x7fff2a982000 - 0x7fff2a998fff libSparseBLAS.dylib (1336.120.1) <3C4D290C-13A4-3A3D-B7C9-3BA0A4C9C7A5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff2a999000 - 0x7fff2a99afff com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <9D78B798-7218-3327-8E50-CF321EDB22B1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff2a99b000 - 0x7fff2a99ffff libpam.2.dylib (28.40.1) <A04A5DD4-34DE-3BFB-BB17-BD66F7FBA1B6> /usr/lib/libpam.2.dylib
0x7fff2a9a0000 - 0x7fff2a9bffff libcompression.dylib (96.120.1) <591F0E34-3C41-3D94-98BA-9BB50E608787> /usr/lib/libcompression.dylib
0x7fff2a9c0000 - 0x7fff2a9c5fff libQuadrature.dylib (7) <FD523210-15BE-3EE7-B2E2-892A7E198542> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff2a9c6000 - 0x7fff2ad63fff libLAPACK.dylib (1336.120.1) <3F036666-341C-3570-8136-CDF170C02DE7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff2ad64000 - 0x7fff2adb3fff com.apple.DictionaryServices (1.2 - 341) <3EC1918E-0345-3EC6-BAE0-04B94A0B6809> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff2adb4000 - 0x7fff2adccfff liblzma.5.dylib (16) <10B7343A-0322-3A1F-B6AE-06FC709F1BDE> /usr/lib/liblzma.5.dylib
0x7fff2adcd000 - 0x7fff2adcefff libcoretls_cfhelpers.dylib (169.100.1) <BACFE067-CAAB-3906-AAE5-A5E78CD22C6D> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff2adcf000 - 0x7fff2aecafff com.apple.APFS (1677.120.9 - 1677.120.9) <599AAB82-F105-3ACC-BBFA-2D3D276A312C> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff2aecb000 - 0x7fff2aed8fff libxar.1.dylib (452) <C5B63994-6F92-395D-9431-1574D6E1D89F> /usr/lib/libxar.1.dylib
0x7fff2aed9000 - 0x7fff2aedcfff libutil.dylib (58.40.2) <4D8FD41B-89A5-31DA-BB0E-7F13C3B1652F> /usr/lib/libutil.dylib
0x7fff2aedd000 - 0x7fff2af05fff libxslt.1.dylib (17.4) <CADFABB2-F66B-39FF-B43A-17315815F664> /usr/lib/libxslt.1.dylib
0x7fff2af06000 - 0x7fff2af10fff libChineseTokenizer.dylib (37.1) <44E1A716-E405-3E54-874F-C5011146B318> /usr/lib/libChineseTokenizer.dylib
0x7fff2af11000 - 0x7fff2afcefff libvMisc.dylib (760.100.3) <E92C2BF3-02A5-31D1-BF6A-56BBA624CA90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff2afcf000 - 0x7fff2b066fff libate.dylib (3.0.6) <C73DF462-D92F-366F-ADBE-B140698DEBAF> /usr/lib/libate.dylib
0x7fff2b067000 - 0x7fff2b06efff libIOReport.dylib (64.100.1) <E7BCECCB-2F51-3A07-9C56-4EF4AFD59C80> /usr/lib/libIOReport.dylib
0x7fff2b06f000 - 0x7fff2b082fff com.apple.CrashReporterSupport (10.13 - 15053) <14AF971D-F684-32BD-8BB6-BE9C4A01DDA5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff2b139000 - 0x7fff2b16ffff com.apple.pluginkit.framework (1.0 - 1) <3ED3DACF-9CDA-30F0-8AF6-C44C6EEEC77B> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
0x7fff2b170000 - 0x7fff2b177fff libMatch.1.dylib (38) <121C98B5-D188-3E02-890D-F4F2CD91D2F2> /usr/lib/libMatch.1.dylib
0x7fff2b178000 - 0x7fff2b203fff libCoreStorage.dylib (554) <3888A24D-7E72-3B58-A252-85373AFF3CE4> /usr/lib/libCoreStorage.dylib
0x7fff2b204000 - 0x7fff2b257fff com.apple.AppleVAFramework (6.1.3 - 6.1.3) <D39DBE46-4BEB-316F-BAFA-8E2B03BED772> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff2b258000 - 0x7fff2b270fff libexpat.1.dylib (26) <C0213844-67CA-38E7-A586-456A645E0BD0> /usr/lib/libexpat.1.dylib
0x7fff2b271000 - 0x7fff2b27afff libheimdal-asn1.dylib (597.121.1) <493CC99B-8939-3F7E-852C-9AB59B0DDC11> /usr/lib/libheimdal-asn1.dylib
0x7fff2b27b000 - 0x7fff2b28ffff com.apple.IconFoundation (479.4 - 479.4) <C0C5765F-6A1F-3D89-9AEE-5D49520CAAFD> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
0x7fff2b290000 - 0x7fff2b2fcfff com.apple.IconServices (479.4 - 479.4) <8D31CC1A-C609-30EC-BCC3-251F7E4CDC10> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff2b2fd000 - 0x7fff2b39bfff com.apple.MediaExperience (1.0 - 1) <29CF7489-BA27-3789-95A2-F94CC6F09E7A> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
0x7fff2b39c000 - 0x7fff2b3c4fff com.apple.persistentconnection (1.0 - 1.0) <5E4A9EC5-2E54-3EFF-A330-52C0D42B26AA> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
0x7fff2b3c5000 - 0x7fff2b3d3fff com.apple.GraphVisualizer (1.0 - 100.1) <FFB7E9D0-F1D6-38E9-8BAD-759C3BFEE379> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff2b3d4000 - 0x7fff2b7effff com.apple.vision.FaceCore (4.3.2 - 4.3.2) <5A226A22-20F0-3196-915F-5DF94E1B3070> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff2b7f0000 - 0x7fff2b837fff com.apple.OTSVG (1.0 - 677.5.0.5) <2E8C5AAB-E14B-3FC4-8872-332690419934> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff2b838000 - 0x7fff2b83efff com.apple.xpc.AppServerSupport (1.0 - 2038.120.1) <256FB87D-3DD1-3B42-B095-B2E5FC3A755B> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
0x7fff2b83f000 - 0x7fff2b851fff libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <C97DAB60-EA72-3822-A5F7-AF29C05DC1DD> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x7fff2b852000 - 0x7fff2b854fff libspindump.dylib (295.2) <63167B4A-D7D5-3146-86B6-988FC0AD4F14> /usr/lib/libspindump.dylib
0x7fff2b855000 - 0x7fff2b915fff com.apple.Heimdal (4.0 - 2.0) <B7D2D628-4503-3229-BFB4-FF60066104C1> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff2b916000 - 0x7fff2b930fff com.apple.login (3.0 - 3.0) <5D551803-8EF3-3F1F-9329-B35D3E017D25> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
0x7fff2bab1000 - 0x7fff2bab4fff libodfde.dylib (26) <6EC89072-8E30-3612-836B-CA890926AAA9> /usr/lib/libodfde.dylib
0x7fff2bab5000 - 0x7fff2baf1fff com.apple.bom (14.0 - 235) <B6D5DB5C-7E5B-3D1A-993B-06EDA9728BD9> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff2baf2000 - 0x7fff2bb3bfff com.apple.AppleJPEG (1.0 - 1) <BE3058DB-0D49-3331-87A7-36D4651F143B> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff2bb3c000 - 0x7fff2bc1bfff libJP2.dylib (2130.5.4) <E1F1DA3E-2EC4-3AC9-8171-E4777A9F5DBD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff2bc1c000 - 0x7fff2bc1ffff com.apple.WatchdogClient.framework (1.0 - 98.120.2) <DE7F64ED-82D2-325D-A031-0E805D52514C> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
0x7fff2bc20000 - 0x7fff2bc56fff com.apple.MultitouchSupport.framework (4440.3 - 4440.3) <C22A0497-19D3-3365-8F59-9190C510F4BE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff2bc57000 - 0x7fff2bdb5fff com.apple.VideoToolbox (1.0 - 2775.22) <88A013B6-FAB1-3BF9-A5C0-A92D8951E9E3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff2bdb6000 - 0x7fff2bde9fff libAudioToolboxUtility.dylib (1181.68) <2AF3BF70-DCEC-3884-A75A-DDEF1F304964> /usr/lib/libAudioToolboxUtility.dylib
0x7fff2bdea000 - 0x7fff2be10fff libPng.dylib (2130.5.4) <3D6AEF53-5D8E-3F8B-B80E-71D848BFD35F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff2be11000 - 0x7fff2be70fff libTIFF.dylib (2130.5.4) <F4B52A0F-2EF6-30BE-9870-CD2E8B5C3318> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff2be71000 - 0x7fff2be8dfff com.apple.IOPresentment (58 - 37) <994E2AE6-D25E-32D5-9ABA-5A1979A659FE> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff2be8e000 - 0x7fff2be95fff com.apple.GPUWrangler (6.3.3 - 6.3.3) <768299B7-C4B5-307D-A413-52DA0C269A9D> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff2be96000 - 0x7fff2be99fff libRadiance.dylib (2130.5.4) <5C83C72F-9F7B-341D-ADD7-DA12A728C9EA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff2be9a000 - 0x7fff2be9ffff com.apple.DSExternalDisplay (3.1 - 380) <AA11B104-262F-33B2-8564-EF47D24AC2B6> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff2bea0000 - 0x7fff2bec4fff libJPEG.dylib (2130.5.4) <70213D93-137E-39CE-82C9-BC238226AC05> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff2bec5000 - 0x7fff2bef4fff com.apple.ATSUI (1.0 - 1) <63C289D7-9FD8-370D-9DFB-9C2B50E7978A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
0x7fff2bef5000 - 0x7fff2bef9fff libGIF.dylib (2130.5.4) <961F6A97-AF22-3A45-BDCF-A425C23CA01A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff2befa000 - 0x7fff2bf03fff com.apple.CMCaptureCore (1.0 - 82.6) <694884AA-070C-3EE5-B86C-F09ABB93A7D7> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
0x7fff2bf04000 - 0x7fff2bf4bfff com.apple.print.framework.PrintCore (16.1 - 531.1) <9D0760A9-DAE8-3BB5-AE31-4D945BA39D48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff2bf4c000 - 0x7fff2c019fff com.apple.TextureIO (3.10.9 - 3.10.9) <B68C877B-2BE2-3338-AACA-52DDD955017A> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff2c01a000 - 0x7fff2c022fff com.apple.InternationalSupport (1.0 - 61.1) <0C4AFFAF-D59F-3B3E-A433-CE03BDE567A8> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff2c023000 - 0x7fff2c09dfff com.apple.datadetectorscore (8.0 - 674) <2FC62BC9-F63C-30DB-BFEE-3CB8399D7F18> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff2c09e000 - 0x7fff2c0fbfff com.apple.UserActivity (439 - 439) <2C4D4B39-FA93-3ED5-8417-ACBE6C39BB92> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
0x7fff2c0fc000 - 0x7fff2c896fff com.apple.MediaToolbox (1.0 - 2775.22) <F5CC3EEC-294B-3B88-BEF1-63BEF846EFF0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff2cd67000 - 0x7fff2cd98fff libSessionUtility.dylib (76.69) <143B9D4F-FDB1-3366-A20C-4B09A05FE862> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
0x7fff2cd99000 - 0x7fff2cecdfff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <1ABFDEA2-FB20-3E05-B4CC-84A2A796D089> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff2cece000 - 0x7fff2cf33fff com.apple.audio.AudioSession (1.0 - 76.69) <8D52DAFF-EBE7-3631-A645-E5CD509591A0> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
0x7fff2cf34000 - 0x7fff2cf46fff libAudioStatistics.dylib (27.64) <0EF059FC-B386-3595-8BB5-57F0CADAA75F> /usr/lib/libAudioStatistics.dylib
0x7fff2cf47000 - 0x7fff2cf56fff com.apple.speech.synthesis.framework (9.0.65 - 9.0.65) <4E88057A-948F-335D-9675-AAEC73F7DE6A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff2cf57000 - 0x7fff2cfc3fff com.apple.ApplicationServices.ATS (377 - 516) <9DFEBC18-3BA6-3588-A5C5-6D974DF284A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff2cfc4000 - 0x7fff2cfdcfff libresolv.9.dylib (68) <0E0E7298-2781-3D72-B40F-5FF7DE7DF068> /usr/lib/libresolv.9.dylib
0x7fff2cfdd000 - 0x7fff2cff0fff libsasl2.2.dylib (214) <8A235B0C-CE89-3C11-8329-AF081227BB92> /usr/lib/libsasl2.2.dylib
0x7fff2d0aa000 - 0x7fff2d10efff com.apple.CoreMediaIO (1000.0 - 5325) <BD292385-E0B4-3BB9-9D4A-894C4AC6560B> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff2d10f000 - 0x7fff2d1eefff libSMC.dylib (20) <7B4581C7-3E3F-33F7-AC74-BFC57A2991C4> /usr/lib/libSMC.dylib
0x7fff2d1ef000 - 0x7fff2d24efff libcups.2.dylib (494.1) <C96214CD-19F2-334A-95A0-25BA714D984A> /usr/lib/libcups.2.dylib
0x7fff2d24f000 - 0x7fff2d25efff com.apple.LangAnalysis (1.7.0 - 254) <C53922F5-BD54-3594-9DCF-DF6D0379B40D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff2d25f000 - 0x7fff2d269fff com.apple.NetAuth (6.2 - 6.2) <32C039EF-D063-3F2B-B4AC-3103593A7D4E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff2d26a000 - 0x7fff2d271fff com.apple.ColorSyncLegacy (4.13.0 - 1) <6B94034B-8D84-3700-96D3-7A3208231BE9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff2d272000 - 0x7fff2d27dfff com.apple.QD (4.0 - 416) <AA06F3E8-FC88-3501-B05C-F2D0C4F56272> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff2d27e000 - 0x7fff2d8d2fff com.apple.audio.AudioResourceArbitration (1.0 - 1) <21EB0A40-BA39-3423-AA4F-2E2A771157C1> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
0x7fff2d8d3000 - 0x7fff2d8defff com.apple.perfdata (1.0 - 67.40.1) <9D1542E2-52D5-3372-8F2B-B71E27E8050B> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
0x7fff2d8df000 - 0x7fff2d8edfff libperfcheck.dylib (41) <AE0793DA-378F-343E-82AC-EEFBE0FF1818> /usr/lib/libperfcheck.dylib
0x7fff2d8ee000 - 0x7fff2d8fdfff com.apple.Kerberos (3.0 - 1) <6D0BA11B-3659-36F0-983E-5D0E51B25912> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff2d8fe000 - 0x7fff2d94efff com.apple.GSS (4.0 - 2.0) <398B2978-DB62-3D24-A5DA-36599C401D7F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff2d94f000 - 0x7fff2d95ffff com.apple.CommonAuth (4.0 - 2.0) <A48CDBF5-8251-35AF-90F8-6FD9D64DA2D8> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff2d960000 - 0x7fff2d987fff com.apple.MobileAssets (1.0 - 659.100.21) <4D326D1D-8AF7-3D30-841A-E7D0E549B146> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
0x7fff2d9b5000 - 0x7fff2d9d4fff com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <8493160A-57F2-37E2-8482-FE1619630B59> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff2d9d5000 - 0x7fff2d9ddfff com.apple.CorePhoneNumbers (1.0 - 1) <514729CE-5C41-3B60-888B-C7267C51B11F> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff2db30000 - 0x7fff2db30fff liblaunch.dylib (2038.120.1) <FB6430FC-AACB-3AFF-8763-4C5AFABEF40E> /usr/lib/system/liblaunch.dylib
0x7fff2e312000 - 0x7fff2e45dfff com.apple.Sharing (1622.1 - 1622.1) <B931F6D8-4831-34ED-A909-BEB824ADF533> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff2e45e000 - 0x7fff2e57ffff com.apple.Bluetooth (8.0.5 - 8.0.5d7) <7630620F-575C-37A6-ACAA-3B9443127E88> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff2e599000 - 0x7fff2e5f2fff com.apple.ProtectedCloudStorage (1.0 - 1) <56DAAA40-66D4-3551-B196-B39604874CAA> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff2fd46000 - 0x7fff2fd51fff com.apple.DirectoryService.Framework (11.4 - 230.40.1) <084E95B9-873E-3AF5-9A26-32D8AF6F9638> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff2fd52000 - 0x7fff2fd79fff com.apple.RemoteViewServices (2.0 - 163) <2D91746F-1F8B-3D03-BED1-C1BD7FA14453> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff2fd7a000 - 0x7fff2fd89fff com.apple.SpeechRecognitionCore (6.1.24 - 6.1.24) <4FD3C300-7679-3E30-BC40-5DC933BC287E> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff2fd8a000 - 0x7fff2fd91fff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <F2C2E4FC-0EE0-38CC-AC0F-8F412A2859EE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff2ffbf000 - 0x7fff2ffbffff libsystem_product_info_filter.dylib (8.40.1) <D5194AB1-61C4-3C8D-9E3C-C65702BAB859> /usr/lib/system/libsystem_product_info_filter.dylib
0x7fff30097000 - 0x7fff30097fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <E0B5CB04-F282-3BF0-8D14-BE6E3ED7C0A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff300bd000 - 0x7fff300bdfff com.apple.CoreServices (1122.38 - 1122.38) <FEC6CD87-0909-3554-B8F5-CE65A5BB032C> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff30279000 - 0x7fff30279fff com.apple.Accelerate (1.11 - Accelerate 1.11) <2BCB5475-FDEF-379A-BB0E-B1A3AA7F5B83> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff302ba000 - 0x7fff302c5fff com.apple.MediaAccessibility (1.0 - 130) <F8E31637-2B5F-3D89-94FA-BD4AF8A46BD6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff302c6000 - 0x7fff302e5fff com.apple.networking.AlgosScoreFramework (1.0 - 1) <C14EC551-82CD-3A04-91F3-C35D48B5B583> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/Versions/A/AlgosScoreFramework
0x7fff302e6000 - 0x7fff302eafff com.apple.AppleSRP (5.0 - 1) <F9D14131-8FEA-3BBF-902E-16754ABE537F> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff302eb000 - 0x7fff302f6fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) <36002664-194B-3D03-8EFC-94AA3857B08B> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff302f7000 - 0x7fff3032efff com.apple.framework.SystemAdministration (1.0 - 1.0) <124F917C-5C51-3C78-B630-D14C54F56773> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
0x7fff30abb000 - 0x7fff30b20fff com.apple.CoreBluetooth (1.0 - 1) <AB95AA98-5CDC-3D4D-8478-C6595447837F> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff30b21000 - 0x7fff30b2afff com.apple.SymptomDiagnosticReporter (1.0 - 79.120.1) <99674A3B-7319-30F1-922E-D665D01794AF> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
0x7fff30b3e000 - 0x7fff30b4afff com.apple.AppleIDAuthSupport (1.0 - 1) <079E30CC-40B7-3363-9A41-F9A0DE9ED742> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff30b4b000 - 0x7fff30bf3fff com.apple.DiscRecording (9.0.3 - 9030.4.5) <55DD9802-821D-35F6-B21B-C96371FE46B4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff30bf4000 - 0x7fff30c27fff com.apple.MediaKit (16 - 927.40.2) <72F9BA2E-AF51-3E05-8DE4-00377CC79609> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff30c28000 - 0x7fff30d13fff com.apple.DiskManagement (14.0 - 1733.100.4) <6EAC9935-9B5A-3758-92D4-9E13CF570D3A> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff30d14000 - 0x7fff310cefff com.apple.CoreAUC (326.2.0 - 326.2.0) <A03BBCB7-69FA-3E37-AD91-734771D91045> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff310cf000 - 0x7fff310d2fff com.apple.Mangrove (1.0 - 25) <06E20B3A-83F6-36A3-96B8-9185D1B0A42D> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff310d3000 - 0x7fff31100fff com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <B7888146-5DE1-306C-8C9C-E98E763E3A4E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff31101000 - 0x7fff31250fff com.apple.FileProvider (348.8 - 348.8) <34DFD3C5-B489-3A7A-9EC2-3A1E2970F74D> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
0x7fff31251000 - 0x7fff31273fff com.apple.GenerationalStorage (2.0 - 323) <AF8A2D39-41B5-3229-B780-86622DB977FC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff316dc000 - 0x7fff31870fff com.apple.AVFCore (1.0 - 2015.22.4.1) <74A21338-3085-30C2-B847-115DE68E2C88> /System/Library/PrivateFrameworks/AVFCore.framework/Versions/A/AVFCore
0x7fff31871000 - 0x7fff318e0fff com.apple.FrontBoardServices (703.16 - 703.16) <2EC33C3E-5E19-39D0-A68B-49AEBA793A51> /System/Library/PrivateFrameworks/FrontBoardServices.framework/Versions/A/FrontBoardServices
0x7fff318e1000 - 0x7fff3190afff com.apple.BoardServices (1.0 - 526) <E3782FD7-8D04-3554-BEDF-EB5A95EFCB2F> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices
0x7fff3194c000 - 0x7fff31967fff com.apple.ExtensionKit (19.4 - 19.4) <4105ABB5-0569-3956-8B12-5B2B3F0B9FED> /System/Library/PrivateFrameworks/ExtensionKit.framework/Versions/A/ExtensionKit
0x7fff31968000 - 0x7fff3196efff com.apple.ExtensionFoundation (19.4 - 19.4) <B41921B6-F42C-3DFF-AAD6-E38CFD4489C0> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/Versions/A/ExtensionFoundation
0x7fff3196f000 - 0x7fff319b4fff com.apple.CryptoTokenKit (1.0 - 1) <E02C6EA3-A802-38A4-80A7-774B2DA3DB86> /System/Library/Frameworks/CryptoTokenKit.framework/Versions/A/CryptoTokenKit
0x7fff319b5000 - 0x7fff319cbfff com.apple.LocalAuthentication (1.0 - 827.120.2) <E618BEAF-CF4A-3D96-8495-412844D2023A> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
0x7fff319cc000 - 0x7fff319f9fff com.apple.CoreAuthentication.SharedUtils (1.0 - 827.120.2) <1095DB0A-7EE5-37A3-B0DC-7BB3DEE9E7BF> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils
0x7fff31a6e000 - 0x7fff31aaffff com.apple.CoreHaptics (1.0 - 1) <481EFBF3-57BA-3C79-B48A-271E5FCFC0F4> /System/Library/Frameworks/CoreHaptics.framework/Versions/A/CoreHaptics
0x7fff31abd000 - 0x7fff31afcfff com.apple.AppleVPAFramework (3.26.1 - 3.26.1) <32F14A37-1FAB-3216-B3FD-D1FA9E4790DC> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff31baf000 - 0x7fff31beafff com.apple.DebugSymbols (195.1 - 195.1) <A8313A86-04C7-37DC-A5D7-FF54EE39BC70> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff31beb000 - 0x7fff31ca0fff com.apple.CoreSymbolication (12.5 - 64544.69.1) <8D4E5AA8-8C09-31A7-AABE-AA9421781821> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff32b93000 - 0x7fff32bf6fff com.apple.framework.Apple80211 (17.0 - 1728) <6C1C9532-AD79-3E68-BFBB-2279AC8EA776> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff32bf7000 - 0x7fff32d48fff com.apple.CoreWiFi (3.0 - 341) <E1A3027C-0657-3609-8F5C-D89BF6B4B422> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff32d49000 - 0x7fff32d63fff com.apple.BackBoardServices (1.0 - 1.0) <9CDA42E0-5F41-3647-866A-D3C265B21A57> /System/Library/PrivateFrameworks/BackBoardServices.framework/Versions/A/BackBoardServices
0x7fff32d64000 - 0x7fff32d9bfff com.apple.LDAPFramework (2.4.28 - 194.5) <DDC1A94A-3537-3980-904B-31C54DA385C9> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff32d9c000 - 0x7fff32d9dfff com.apple.TrustEvaluationAgent (2.0 - 35) <736DE13E-CC75-3D3A-BE5B-AF75CC241E0B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff32d9e000 - 0x7fff32ea3fff libcrypto.44.dylib (56.60.2) <777B260D-CD90-3AE2-986E-2E4D021E6ACC> /usr/lib/libcrypto.44.dylib
0x7fff32ea4000 - 0x7fff32ed1fff libssl.46.dylib (56.60.2) <F2AE005F-3974-38D1-AA71-26201D27031F> /usr/lib/libssl.46.dylib
0x7fff32ed2000 - 0x7fff32f81fff com.apple.DiskImagesFramework (595.120.2 - 595.120.2) <443A6BBE-9265-3419-AFCA-2CDFB12902BE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff32fb9000 - 0x7fff32fc8fff com.apple.RemoteServiceDiscovery (1.0 - 1.120.1) <00009125-85E9-3214-9CA3-EC1AB4EF8D77> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
0x7fff33026000 - 0x7fff33029fff com.apple.help (1.3.8 - 71) <F8B97715-17C5-3789-8B89-5F08EFB70709> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff3302a000 - 0x7fff33031fff com.apple.EFILogin (2.0 - 2) <32EC4CD5-A6BD-31E9-BE52-BF79845F9EDB> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff33032000 - 0x7fff3303dfff libcsfde.dylib (554) <D4C66851-FDFC-3B94-8B21-DCA76BDFE724> /usr/lib/libcsfde.dylib
0x7fff3303e000 - 0x7fff330a4fff libcurl.4.dylib (121.100.3) <5701AB53-D57D-38AE-8E76-ADBC03205B84> /usr/lib/libcurl.4.dylib
0x7fff330a5000 - 0x7fff330acfff com.apple.LoginUICore (4.0 - 4.0) <B3A81901-6B1B-380D-81B9-16607D66ED67> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
0x7fff330ad000 - 0x7fff3310ffff com.apple.AppSupport (1.0.0 - 29) <92721008-EEA9-3487-8609-FF41ADAAA3FF> /System/Library/PrivateFrameworks/AppSupport.framework/Versions/A/AppSupport
0x7fff331af000 - 0x7fff33273fff com.apple.GameController (1.0 - 1) <C9271A39-E03C-3E08-BE5E-43DEA43BE46C> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x7fff3327c000 - 0x7fff3327cfff com.apple.ApplicationServices (48 - 50) <374F91E8-9983-363E-B1E1-85CEB46A5D1E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff3343e000 - 0x7fff3347dfff com.apple.AppleIDSSOAuthentication (1.0 - 1) <ADF094F3-BEDB-39E6-8B1B-916C22204DA0> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/Versions/A/AppleIDSSOAuthentication
0x7fff33591000 - 0x7fff33591fff libHeimdalProxy.dylib (79) <68F67BFE-F1E8-341C-A065-08954EF3F684> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
0x7fff33644000 - 0x7fff33644fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <CD5DF240-D8F7-3349-88DC-423962E5A289> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff33668000 - 0x7fff336abfff com.apple.StreamingZip (1.0 - 1) <D5CEAC33-8D9C-3D74-9E5D-909F86441F4D> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
0x7fff33757000 - 0x7fff33f58fff com.apple.vision.EspressoFramework (1.0 - 256.4.4) <2EBDF634-79CA-3977-9475-F972111CD0D8> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
0x7fff33f59000 - 0x7fff33f70fff com.apple.ANEServices (4.75 - 4.75) <B9463BEA-1D41-3752-9B6B-23030C33E91D> /System/Library/PrivateFrameworks/ANEServices.framework/Versions/A/ANEServices
0x7fff34613000 - 0x7fff34663fff com.apple.ChunkingLibrary (334.1 - 334.1) <27ED7D22-A3D4-3161-A5DF-485711DB2F48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff34ed7000 - 0x7fff34eecfff com.apple.CoreML.AppleNeuralEngine (1.0 - 1) <45EF4CAF-6202-303F-BB4F-8CC0EC8AE20B> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/Versions/A/AppleNeuralEngine
0x7fff3506f000 - 0x7fff35072fff com.apple.Cocoa (6.11 - 23) <2686C6E1-1182-34AA-9A3A-F7BC19DED4CB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff350bc000 - 0x7fff354a8fff com.apple.AppleMediaServices (1.0 - 1) <8876688A-EB71-3DA0-B5A8-08FC2AED0EE0> /System/Library/PrivateFrameworks/AppleMediaServices.framework/Versions/A/AppleMediaServices
0x7fff364e0000 - 0x7fff36503fff com.apple.openscripting (1.7 - 190) <9EAC55CC-0ECC-3B41-BF97-53C32496C689> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff36504000 - 0x7fff36507fff com.apple.securityhi (9.0 - 55008) <56A728F6-162E-31DE-9C29-FB1BE44C6B89> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff36508000 - 0x7fff3650bfff com.apple.ink.framework (10.15 - 227) <65FAEF94-F18C-30E0-8129-952DE19A5FAF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff3650c000 - 0x7fff3650ffff com.apple.CommonPanels (1.2.6 - 101) <45DFDB05-1408-34B4-A2AD-5416C5176C26> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff36510000 - 0x7fff36517fff com.apple.ImageCapture (1711.5.2 - 1711.5.2) <E3BCD3B4-4792-390D-890B-B7A860088A4C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff37770000 - 0x7fff37882fff com.apple.AVFCapture (1.0 - 82.6) <30FBE4F0-8C28-3C34-9F0E-C4B6BF0A631B> /System/Library/PrivateFrameworks/AVFCapture.framework/Versions/A/AVFCapture
0x7fff37883000 - 0x7fff37916fff com.apple.Quagga (47 - 47) <B3799C11-61CD-3312-8B52-3437352F819F> /System/Library/PrivateFrameworks/Quagga.framework/Versions/A/Quagga
0x7fff37917000 - 0x7fff37b61fff com.apple.CMCapture (1.0 - 82.6) <C539C9A9-C030-36BA-B0CD-4FBDA9B8EFEF> /System/Library/PrivateFrameworks/CMCapture.framework/Versions/A/CMCapture
0x7fff3bda9000 - 0x7fff3be40fff com.apple.AirPlaySync (1.0 - 2775.22) <40966FF0-FE78-3C88-A842-AA3340DE5F21> /System/Library/PrivateFrameworks/AirPlaySync.framework/Versions/A/AirPlaySync
0x7fff3ca51000 - 0x7fff3ca54fff com.apple.print.framework.Print (15 - 271) <5A0FE511-37C2-3065-9066-34F8F9EA23E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff3ca55000 - 0x7fff3ca58fff com.apple.Carbon (160 - 164) <967F26C3-8582-3A33-945F-DDA8F103B2E2> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff3cb51000 - 0x7fff3cb51fff com.apple.avfoundation (2.0 - 2015.22.4.1) <8605C616-EB49-3FCE-9489-6CA5CFCDD006> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff3cd0b000 - 0x7fff3cd2afff com.apple.private.SystemPolicy (1.0 - 1) <CAB3E8CD-1F31-343F-ABC1-9448543F211F> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
0x7fff3d307000 - 0x7fff3d30dfff com.apple.FeatureFlagsSupport (1.0 - 28.60.1) <F106091B-B810-320D-902B-8CEE1F10CF17> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/Versions/A/FeatureFlagsSupport
0x7fff3d645000 - 0x7fff3d650fff com.apple.MallocStackLogging (1.0 - 1) <394E6F65-386E-3488-BD68-1D3C2418694B> /System/Library/PrivateFrameworks/MallocStackLogging.framework/Versions/A/MallocStackLogging
0x7fff3d665000 - 0x7fff3d677fff libmis.dylib (274.120.2) <1DE29019-5ECB-3BE2-8492-2385ED241950> /usr/lib/libmis.dylib
0x7fff3d678000 - 0x7fff3d67bfff com.apple.gpusw.GPURawCounter (20.3 - 12.0) <EBB93DE3-AFE7-34FE-A194-7DFC62FFB9AA> /System/Library/PrivateFrameworks/GPURawCounter.framework/Versions/A/GPURawCounter
0x7fff40e9b000 - 0x7fff40ea4fff com.apple.IOAccelMemoryInfo (1.0 - 1) <0BBA14A6-C060-3759-9B5E-4EDFEABED297> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
0x7fff41327000 - 0x7fff41345fff libCGInterfaces.dylib (544.4) <02C89930-F64D-354E-8C18-F3DDB419DC8D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff438d0000 - 0x7fff43b43fff com.apple.RawCamera.bundle (9.10.0 - 1450.3) <408A3DFB-B3D3-3C15-88BB-16076BDFC74B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff47a4a000 - 0x7fff47a8afff com.apple.osanalytics.OSAnalytics (1.0 - 1) <96B8D855-E10D-3E40-884F-DA0BBAE9F48F> /System/Library/PrivateFrameworks/OSAnalytics.framework/Versions/A/OSAnalytics
0x7fff516ea000 - 0x7fff51789fff com.apple.Symbolication (12.5 - 64544.70.1) <B57534E5-43D5-38CA-9A8C-A66EBDFB820A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff5400e000 - 0x7fff54044fff com.apple.ReplayKit (1.0 - 1) <59D119B2-5E26-3A57-9AE5-F85506AA3786> /System/Library/Frameworks/ReplayKit.framework/Versions/A/ReplayKit
0x7fff55638000 - 0x7fff5563bfff com.apple.ForceFeedback (1.0.6 - 1.0.6) <0AD42E37-140A-393A-BBE4-B0C342B0FEC1> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
0x7fff61e47000 - 0x7fff622d2fff com.apple.driver.AppleIntelSKLGraphicsMTLDriver (16.4.5 - 16.0.4) <0FCD0FB5-7749-3EAA-B779-456C91F34B75> /System/Library/Extensions/AppleIntelSKLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelSKLGraphicsMTLDriver
0x7fff6971a000 - 0x7fff6971efff libmetal_timestamp.dylib (31001.189) <89A82967-B14D-3109-B45E-34717156E60E> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/31001/Libraries/libmetal_timestamp.dylib
0x7fff6bb65000 - 0x7fff6bb6bfff libCoreFSCache.dylib (200.9) <12A2A7E7-39F7-30A5-AC0B-E09947417D3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff6bb6c000 - 0x7fff6bb70fff libCoreVMClient.dylib (200.9) <F8C4D017-075A-37B2-AE8D-8CEB5FE1BC9B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff6bb71000 - 0x7fff6bb80fff com.apple.opengl (18.5.9 - 18.5.9) <1422D0CA-C3E2-3309-8897-018E651CB74E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff6bb81000 - 0x7fff6bb83fff libCVMSPluginSupport.dylib (18.5.9) <AC7D4088-7CA8-3A0B-9B55-08427083C382> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff6bb84000 - 0x7fff6bb8cfff libGFXShared.dylib (18.5.9) <76ABDB4A-3687-39E0-B8FB-125717742431> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff6bb8d000 - 0x7fff6bbc0fff libGLImage.dylib (18.5.9) <750C938A-9F4F-3BAD-8D3F-03EF619F28AD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff6bbc1000 - 0x7fff6bbfdfff libGLU.dylib (18.5.9) <4A77F717-2BBC-3439-AE10-694E82C0A184> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff6bd92000 - 0x7fff6bd9cfff libGL.dylib (18.5.9) <95D5C72E-9352-39EC-83B1-6BB295A83462> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff6d1dc000 - 0x7fff6d234fff com.apple.opencl (4.6 - 4.6) <769BB23D-09E5-3A3A-B2EA-310157AA206D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff6dd5e000 - 0x7fff6df79fff com.apple.AMDMTLBronzeDriver (4.5.14 - 4.0.5) <B434F0E4-B0BD-3306-8387-412FFE8EC174> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
0x7fff6e2e6000 - 0x7fff6e3cdfff com.apple.audio.AVFAudio (1.0 - 477.87) <B762E01A-23A5-3F51-A1BE-EDDD5A2FDE4B> /System/Library/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff6f94b000 - 0x7fff6f95dfff com.apple.CMImaging (1.0 - 82.6) <AACD534A-7769-3B70-9C43-5F53FD726895> /System/Library/PrivateFrameworks/CMImaging.framework/Versions/A/CMImaging
0x7fff73c2b000 - 0x7fff73c36fff com.apple.SymptomAnalytics (1.0 - 1431.120.1) <897411F6-DB2B-34CD-ABDC-665A2C8D37E3> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/Versions/A/SymptomAnalytics
0x7fff73e4c000 - 0x7fff73e64fff com.apple.SymptomPresentationFeed (1.0 - 1431.120.1) <3CA4CFBB-1942-3BF2-B7C4-4F73FB4EE115> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/Versions/A/SymptomPresentationFeed
0x7fff779da000 - 0x7fff779e1fff libRosetta.dylib (203.46) <0A17EAFC-15E9-37FE-8EE2-DE0F7F220AD8> /usr/lib/libRosetta.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=744.5M resident=0K(0%) swapped_out_or_unallocated=744.5M(100%)
Writable regions: Total=273.9M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=273.9M(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 640K 5
Activity Tracing 256K 1
CG backing stores 3792K 6
CG image 120K 7
CoreAnimation 84K 8
CoreGraphics 12K 2
CoreUI image data 940K 8
Dispatch continuations 64.0M 1
Foundation 16K 1
IOKit 15.5M 2
Image IO 4K 1
Kernel Alloc Once 8K 1
MALLOC 187.7M 332
MALLOC guard page 32K 7
STACK GUARD 56.1M 16
Stack 15.6M 16
VM_ALLOCATE 680K 26
__DATA 15.8M 371
__DATA_CONST 15.0M 216
__DATA_DIRTY 693K 123
__FONT_DATA 4K 1
__LINKEDIT 501.1M 29
__OBJC_RO 70.2M 1
__OBJC_RW 2480K 2
__TEXT 243.5M 372
__UNICODE 588K 1
mapped file 68.5M 19
shared memory 1260K 13
=========== ======= =======
TOTAL 1.2G 1588
Model: MacBookPro13,3, BootROM 429.120.4.0.0, 4 processors, Quad-Core Intel Core i7, 2,6 GHz, 16 GB, SMC 2.38f12
Graphics: kHW_IntelHDGraphics530Item, Intel HD Graphics 530, spdisplays_builtin
Graphics: kHW_AMDRadeonPro450Item, AMD Radeon Pro 450, spdisplays_pcie_device, 2 GB
Memory Module: BANK 0/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
Memory Module: BANK 1/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x15A), Broadcom BCM43xx 1.0 (7.77.111.1 AirPortDriverBrcmNIC-1680.8)
Bluetooth: Version 8.0.5d7, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.0 Bus
USB Device: Apple T1 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.2
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.2
|
1.0
|
macos segmentation fault on castle seige + wrong forces disposition if attacked from own castle - I noticed regular crashes on castle seige, stack trace below. Also if you attach from your own castle enemy nearby the castle, you will see like your enemy is in your castle, but all towers will attach him.
Process: fheroes2 [43517]
Path: /Users/USER/*/fheroes2
Identifier: fheroes2
Version: 0
Code Type: X86-64 (Native)
Parent Process: bash [697]
Responsible: iTerm2 [608]
User ID: 501
Date/Time: 2021-08-01 12:56:50.298 +0300
OS Version: macOS 11.4 (20F71)
Report Version: 12
Bridge OS Version: 3.0 (14Y908)
Anonymous UUID: FA01A6BB-2021-672B-0DE2-E115343308CF
Sleep/Wake UUID: B374578D-0932-40BF-B9C4-DBE98701F7C9
Time Awake Since Boot: 290000 seconds
Time Since Wake: 12000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000003b4
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [43517]
VM Regions Near 0x3b4:
-->
__TEXT 1077ee000-107a5a000 [ 2480K] r-x/r-x SM=COW /Users/*
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 fheroes2 0x000000010786bb24 Battle::Unit::SetCustomAlpha(unsigned int) + 4
1 fheroes2 0x000000010785d526 Battle::Interface::RedrawActionSummonElementalSpell(Battle::Unit&) + 134
2 fheroes2 0x0000000107821eae Battle::Arena::ApplyActionSpellCast(Battle::Command&) + 190
3 fheroes2 0x000000010782a310 Battle::Arena::TurnTroop(Battle::Unit*, Battle::Units const&) + 736
4 fheroes2 0x000000010782abc7 Battle::Arena::Turns() + 1207
5 fheroes2 0x0000000107860d34 Battle::Loader(Army&, Army&, int) + 500
6 fheroes2 0x00000001079436de ActionToCastle(Heroes&, int) + 446
7 fheroes2 0x000000010795fb5d Heroes::MoveStep(bool) + 189
8 fheroes2 0x00000001079608b2 Heroes::Move(bool) + 226
9 fheroes2 0x0000000107914b30 Interface::Basic::HumanTurn(bool) + 2976
10 fheroes2 0x0000000107912300 Interface::Basic::StartGame() + 1088
11 fheroes2 0x0000000107911e8c Game::StartGame() + 108
12 fheroes2 0x0000000107906d48 Game::mainGameLoop(bool) + 184
13 fheroes2 0x00000001078f42b9 main + 3001
14 libdyld.dylib 0x00007fff20573f5d start + 1
Thread 1:: AMCP Logging Spool
0 libsystem_kernel.dylib 0x00007fff205232f6 semaphore_wait_trap + 10
1 com.apple.audio.caulk 0x00007fff286098da caulk::mach::semaphore::wait_or_error() + 16
2 com.apple.audio.caulk 0x00007fff285f6836 caulk::semaphore::timed_wait(double) + 110
3 com.apple.audio.caulk 0x00007fff285f6784 caulk::concurrent::details::worker_thread::run() + 30
4 com.apple.audio.caulk 0x00007fff285f6502 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*> > >(void*) + 45
5 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
6 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 2:: AudioQueue thread
0 libsystem_kernel.dylib 0x00007fff205232ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff2052362c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff20651b5f __CFRunLoopServiceMachPort + 316
3 com.apple.CoreFoundation 0x00007fff2065023f __CFRunLoopRun + 1328
4 com.apple.CoreFoundation 0x00007fff2064f64c CFRunLoopRunSpecific + 563
5 libSDL2-2.0.0.dylib 0x0000000107c21332 audioqueue_thread + 1047
6 libSDL2-2.0.0.dylib 0x0000000107baeed3 SDL_RunThread + 53
7 libSDL2-2.0.0.dylib 0x0000000107c16fdd RunThread + 9
8 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
9 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 3:
0 libsystem_kernel.dylib 0x00007fff205232f6 semaphore_wait_trap + 10
1 com.apple.audio.caulk 0x00007fff286098da caulk::mach::semaphore::wait_or_error() + 16
2 com.apple.audio.caulk 0x00007fff285f6836 caulk::semaphore::timed_wait(double) + 110
3 com.apple.audio.caulk 0x00007fff285f6784 caulk::concurrent::details::worker_thread::run() + 30
4 com.apple.audio.caulk 0x00007fff285f6502 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*> > >(void*) + 45
5 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
6 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 4:: AQConverterThread
0 libsystem_kernel.dylib 0x00007fff20525cde __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff20558e49 _pthread_cond_wait + 1298
2 libAudioToolboxUtility.dylib 0x00007fff2bde268c CADeprecated::CAGuard::Wait() + 54
3 com.apple.audio.toolbox.AudioToolbox 0x00007fff2cdd279f AQConverterManager::AQConverterThread::ConverterThreadEntry(void*) + 809
4 libAudioToolboxUtility.dylib 0x00007fff2bdc62f5 CADeprecated::CAPThread::Entry(CADeprecated::CAPThread*) + 77
5 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
6 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 5:: com.apple.audio.IOThread.client
0 libsystem_kernel.dylib 0x00007fff205232ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff2052362c mach_msg + 60
2 com.apple.audio.CoreAudio 0x00007fff2202d8f5 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 111
3 com.apple.audio.CoreAudio 0x00007fff21ed03ed invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int) + 3367
4 com.apple.audio.CoreAudio 0x00007fff2206c0c4 HALB_IOThread::Entry(void*) + 72
5 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
6 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 6:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff205232ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff2052362c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff20651b5f __CFRunLoopServiceMachPort + 316
3 com.apple.CoreFoundation 0x00007fff2065023f __CFRunLoopRun + 1328
4 com.apple.CoreFoundation 0x00007fff2064f64c CFRunLoopRunSpecific + 563
5 com.apple.AppKit 0x00007fff22fd668a _NSEventThread + 124
6 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
7 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 7:
0 libsystem_kernel.dylib 0x00007fff20525cde __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff20558e49 _pthread_cond_wait + 1298
2 libc++.1.dylib 0x00007fff204c1d72 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3 fheroes2 0x00000001077f48fb AGG::AsyncSoundManager::_workerThread(AGG::AsyncSoundManager*) + 171
4 fheroes2 0x00000001077f4e3c void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (*)(AGG::AsyncSoundManager*), AGG::AsyncSoundManager*> >(void*) + 44
5 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
6 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 8:: SDLTimer
0 libsystem_kernel.dylib 0x00007fff20525cde __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff20558e49 _pthread_cond_wait + 1298
2 libSDL2-2.0.0.dylib 0x0000000107c176e5 SDL_CondWaitTimeout_REAL + 144
3 libSDL2-2.0.0.dylib 0x0000000107c17363 SDL_SemWaitTimeout_REAL + 78
4 libSDL2-2.0.0.dylib 0x0000000107baf40a SDL_TimerThread + 457
5 libSDL2-2.0.0.dylib 0x0000000107baeed3 SDL_RunThread + 53
6 libSDL2-2.0.0.dylib 0x0000000107c16fdd RunThread + 9
7 libsystem_pthread.dylib 0x00007fff205588fc _pthread_start + 224
8 libsystem_pthread.dylib 0x00007fff20554443 thread_start + 15
Thread 9:
0 libsystem_pthread.dylib 0x00007fff20554420 start_wqthread + 0
Thread 10:
0 libsystem_pthread.dylib 0x00007fff20554420 start_wqthread + 0
Thread 11:: Dispatch queue: com.Metal.CommandQueueDispatch
0 libsystem_kernel.dylib 0x00007fff205232f6 semaphore_wait_trap + 10
1 libdispatch.dylib 0x00007fff203aec9b _dispatch_sema4_wait + 16
2 libdispatch.dylib 0x00007fff203af16d _dispatch_semaphore_wait_slow + 98
3 com.apple.Metal 0x00007fff284f0d95 -[_MTLCommandQueue _submitAvailableCommandBuffers] + 908
4 libdispatch.dylib 0x00007fff203ae806 _dispatch_client_callout + 8
5 libdispatch.dylib 0x00007fff203b11b0 _dispatch_continuation_pop + 423
6 libdispatch.dylib 0x00007fff203c1564 _dispatch_source_invoke + 2061
7 libdispatch.dylib 0x00007fff203b4493 _dispatch_lane_serial_drain + 263
8 libdispatch.dylib 0x00007fff203b50ad _dispatch_lane_invoke + 366
9 libdispatch.dylib 0x00007fff203bec0d _dispatch_workloop_worker_thread + 811
10 libsystem_pthread.dylib 0x00007fff2055545d _pthread_wqthread + 314
11 libsystem_pthread.dylib 0x00007fff2055442f start_wqthread + 15
Thread 12:
0 libsystem_pthread.dylib 0x00007fff20554420 start_wqthread + 0
Thread 13:
0 libsystem_pthread.dylib 0x00007fff20554420 start_wqthread + 0
Thread 14:: Dispatch queue: com.apple.coreanimation.imagequeue_pageoff
0 libsystem_kernel.dylib 0x00007fff205232ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff2052362c mach_msg + 60
2 com.apple.framework.IOKit 0x00007fff22d0c793 io_connect_method + 384
3 com.apple.framework.IOKit 0x00007fff22d0c5af IOConnectCallMethod + 186
4 com.apple.IOSurface 0x00007fff284b7884 IOSurfaceClientBindAccel + 141
5 com.apple.QuartzCore 0x00007fff26fc6e37 __CAImageQueueInsertImage__block_invoke + 22
6 libdispatch.dylib 0x00007fff203ad623 _dispatch_call_block_and_release + 12
7 libdispatch.dylib 0x00007fff203ae806 _dispatch_client_callout + 8
8 libdispatch.dylib 0x00007fff203b45ea _dispatch_lane_serial_drain + 606
9 libdispatch.dylib 0x00007fff203b50ad _dispatch_lane_invoke + 366
10 libdispatch.dylib 0x00007fff203bec0d _dispatch_workloop_worker_thread + 811
11 libsystem_pthread.dylib 0x00007fff2055545d _pthread_wqthread + 314
12 libsystem_pthread.dylib 0x00007fff2055442f start_wqthread + 15
Thread 15:
0 libsystem_pthread.dylib 0x00007fff20554420 start_wqthread + 0
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x000319d7eaf03201 rbx: 0x0000000000000014 rcx: 0x0000000000000000 rdx: 0x00000000000d5188
rdi: 0x0000000000000000 rsi: 0x0000000000000014 rbp: 0x00007ffee8411260 rsp: 0x00007ffee8411260
r8: 0x0000000000000224 r9: 0x00000000000f4240 r10: 0x0000000000000001 r11: 0x0000000000200247
r12: 0x00007fc983989600 r13: 0x00007fc981b37ec8 r14: 0x0000000000000000 r15: 0x0000000107aacd10
rip: 0x000000010786bb24 rfl: 0x0000000000210206 cr2: 0x00000000000003b4
Logical CPU: 6
Error Code: 0x00000006 (no mapping for user data write)
Trap Number: 14
Thread 0 instruction stream:
1c 10 0f 9c c2 48 0f 4d-d9 48 8b 0c d1 48 85 c9 .....H.M.H...H..
75 ea 48 39 c3 74 26 83-7b 1c 10 7f 20 75 06 83 u.H9.t&.{... u..
7b 24 00 75 18 bf 01 00-00 00 be 64 00 00 00 e8 {$.u.......d....
88 fc 17 00 3b 43 20 77-04 44 8b 73 24 44 89 f0 ....;C w.D.s$D..
5b 41 5e 5d c3 0f 1f 80-00 00 00 00 55 48 89 e5 [A^]........UH..
48 83 c7 28 5d e9 a2 d2-fb ff 66 90 55 48 89 e5 H..(].....f.UH..
[89]b7 b4 03 00 00 5d c3-0f 1f 40 00 55 48 89 e5 ......]...@.UH.. <==
8b 87 b4 03 00 00 5d c3-0f 1f 40 00 55 48 89 e5 ......]...@.UH..
48 83 c7 28 5d e9 92 d1-fb ff 66 90 55 48 89 e5 H..(].....f.UH..
48 83 c7 28 5d e9 72 d3-fb ff 66 90 55 48 89 e5 H..(].r...f.UH..
53 50 48 89 fb 48 83 c3-28 48 89 df e8 8b ce fb SPH..H..(H......
ff 48 89 df 48 83 c4 08-5b 5d e9 7d d3 fb ff 66 .H..H...[].}...f
Thread 0 last branch register state not available.
Binary Images:
0x1077ee000 - 0x107a59fff +fheroes2 (0) <3F2411FD-5FB6-3851-AC33-2708F79AD6F4> /Users/USER/*/fheroes2
0x107b56000 - 0x107c51fff +libSDL2-2.0.0.dylib (0) <C8F7F43F-39EC-32F9-8183-1AD47AF40911> /usr/local/opt/sdl2/lib/libSDL2-2.0.0.dylib
0x107c9f000 - 0x107cb6fff +libSDL2_mixer-2.0.0.dylib (0) <F958CFC6-000B-359C-8B44-7DCBDC50B69F> /usr/local/opt/sdl2_mixer/lib/libSDL2_mixer-2.0.0.dylib
0x107ccb000 - 0x107cd2fff +libSDL2_ttf-2.0.0.dylib (0) <515C2C46-D8A8-386E-B4C1-F43467BBDD53> /usr/local/opt/sdl2_ttf/lib/libSDL2_ttf-2.0.0.dylib
0x107ce5000 - 0x107d20fff +libmodplug.1.dylib (0) <ADAD3C9D-E429-36F9-B952-51FD924D10CC> /usr/local/opt/libmodplug/lib/libmodplug.1.dylib
0x107de6000 - 0x107dedfff +libvorbisfile.3.dylib (0) <BCF0B31F-6D9B-3391-9CBB-E01227A604AE> /usr/local/opt/libvorbis/lib/libvorbisfile.3.dylib
0x107e01000 - 0x107e24fff +libvorbis.0.dylib (0) <534D743F-4585-3843-B191-D7B3146634AF> /usr/local/opt/libvorbis/lib/libvorbis.0.dylib
0x107e34000 - 0x107e5ffff +libFLAC.8.dylib (0) <8ABB45E3-FC84-3669-B93B-6342E4AF9660> /usr/local/opt/flac/lib/libFLAC.8.dylib
0x107e77000 - 0x107e7efff +libogg.0.dylib (0) <BFDBD02C-9BDF-37A0-9C78-536077343AE6> /usr/local/opt/libogg/lib/libogg.0.dylib
0x107e8b000 - 0x107f0afff +libfreetype.6.dylib (0) <83AAF35B-E6AE-3AEB-9EE5-9614C3EA8883> /usr/local/opt/freetype/lib/libfreetype.6.dylib
0x107f2d000 - 0x107f4ffff +libpng16.16.dylib (0) <F666699A-02D5-3061-ADF9-B7A7E471C1E1> /usr/local/opt/libpng/lib/libpng16.16.dylib
0x10c32f000 - 0x10c33efff libobjc-trampolines.dylib (824) <361143B8-E66E-3402-85B5-C20893AAB9C9> /usr/lib/libobjc-trampolines.dylib
0x10c482000 - 0x10c489fff com.apple.audio.AppleHDAHALPlugIn (283.15 - 283.15) <A3A6DCDC-B5DA-33D4-AC82-3737A556DC04> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x10c4e9000 - 0x10c584fff dyld (852) <1AC76561-4F9A-34B1-BA7C-4516CACEAED7> /usr/lib/dyld
0x11049b000 - 0x110602fff com.apple.audio.units.Components (1.14 - 1.14) <6375574E-7ADB-3867-837D-5811B866554C> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x7fff20290000 - 0x7fff20291fff libsystem_blocks.dylib (79) <48AF56A9-6E42-3A5E-A213-E6AFD8F81044> /usr/lib/system/libsystem_blocks.dylib
0x7fff20292000 - 0x7fff202c7fff libxpc.dylib (2038.120.1) <5751A7F5-6DC5-3090-B7F1-D90ED71BEF1F> /usr/lib/system/libxpc.dylib
0x7fff202c8000 - 0x7fff202dffff libsystem_trace.dylib (1277.120.1) <8E243C00-BFC2-3FAA-989C-0D72314DB04D> /usr/lib/system/libsystem_trace.dylib
0x7fff202e0000 - 0x7fff2037dfff libcorecrypto.dylib (1000.120.2) <FADB19A0-1BF3-3F47-B729-87B4FA8CA677> /usr/lib/system/libcorecrypto.dylib
0x7fff2037e000 - 0x7fff203aafff libsystem_malloc.dylib (317.121.1) <CAD162A5-7367-3A30-9C15-5D036411AEDE> /usr/lib/system/libsystem_malloc.dylib
0x7fff203ab000 - 0x7fff203effff libdispatch.dylib (1271.120.2) <7B229797-1F2E-3409-9D0C-060C7EEF2E12> /usr/lib/system/libdispatch.dylib
0x7fff203f0000 - 0x7fff20429fff libobjc.A.dylib (824) <FE5AF22E-80A1-34BB-98D6-610879988BAA> /usr/lib/libobjc.A.dylib
0x7fff2042a000 - 0x7fff2042cfff libsystem_featureflags.dylib (28.60.1) <77F7F479-39BD-3111-BE3C-C74567FD120C> /usr/lib/system/libsystem_featureflags.dylib
0x7fff2042d000 - 0x7fff204b5fff libsystem_c.dylib (1439.100.3) <38F8A126-C995-349A-B909-FF831914ED2E> /usr/lib/system/libsystem_c.dylib
0x7fff204b6000 - 0x7fff2050bfff libc++.1.dylib (905.6) <B3812B86-4FCF-3A10-8866-DF67940A974C> /usr/lib/libc++.1.dylib
0x7fff2050c000 - 0x7fff20521fff libc++abi.dylib (905.6) <A0FE88B7-E157-3C9C-A29A-11D3BE3436B3> /usr/lib/libc++abi.dylib
0x7fff20522000 - 0x7fff20551fff libsystem_kernel.dylib (7195.121.3) <A4938CF5-ABC0-397B-8A6E-B7BEEFA24D0A> /usr/lib/system/libsystem_kernel.dylib
0x7fff20552000 - 0x7fff2055dfff libsystem_pthread.dylib (454.120.2) <17482C9D-061E-3769-AC9E-BE1239D33098> /usr/lib/system/libsystem_pthread.dylib
0x7fff2055e000 - 0x7fff20599fff libdyld.dylib (852) <C10CEA28-D5A0-324F-8F07-8C7CE4805412> /usr/lib/system/libdyld.dylib
0x7fff2059a000 - 0x7fff205a3fff libsystem_platform.dylib (254.80.2) <8664A4CD-EE27-3C71-B5CC-06E2B1B4F394> /usr/lib/system/libsystem_platform.dylib
0x7fff205a4000 - 0x7fff205cffff libsystem_info.dylib (542.40.3) <EA3F9C9C-3116-3DB4-A3F1-5B03172C1E72> /usr/lib/system/libsystem_info.dylib
0x7fff205d0000 - 0x7fff20a6dfff com.apple.CoreFoundation (6.9 - 1776.103) <01EFB7F8-BCE6-32DF-A0B8-02F9027F882C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff20a6e000 - 0x7fff20ca2fff com.apple.LaunchServices (1122.38 - 1122.38) <241B3D82-2C9C-3F7D-88BD-AC78A689FF04> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff20ca3000 - 0x7fff20d76fff com.apple.gpusw.MetalTools (1.0 - 1) <03202B68-E515-3CBE-AC5A-39E80A702A6F> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff20d77000 - 0x7fff20fd3fff libBLAS.dylib (1336.120.1) <44514FE9-B994-380E-8341-4ABA30DB8895> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff20fd4000 - 0x7fff21021fff com.apple.Lexicon-framework (1.0 - 86.2) <F69DF515-4980-36C8-9F5D-987B67D2AFAF> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff21022000 - 0x7fff21090fff libSparse.dylib (106) <E7F273C0-18F8-3688-9B63-C86DEB06740A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff21091000 - 0x7fff2110efff com.apple.SystemConfiguration (1.20 - 1.20) <81EDA68C-051A-3F4C-B79E-B53B365B67B1> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff2110f000 - 0x7fff21143fff libCRFSuite.dylib (50) <703BB228-D959-3009-AF3F-0015588F531A> /usr/lib/libCRFSuite.dylib
0x7fff21144000 - 0x7fff2137cfff libmecabra.dylib (929.10) <43C2A11F-7F68-31B6-AD65-31282837DED3> /usr/lib/libmecabra.dylib
0x7fff2137d000 - 0x7fff216dbfff com.apple.Foundation (6.9 - 1776.103) <3C3B967D-778D-30BF-A3F8-E734FAFD76F2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff216dc000 - 0x7fff217c4fff com.apple.LanguageModeling (1.0 - 247.3) <58ACD840-A17B-3CB0-B010-7E4493C5BC5C> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff217c5000 - 0x7fff218fbfff com.apple.CoreDisplay (237.3 - 237.3) <65322ECF-632D-362D-870D-5CE69B1B6C60> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff218fc000 - 0x7fff21b6cfff com.apple.audio.AudioToolboxCore (1.0 - 1181.68) <87BA778B-6634-30D8-BF69-678C36246242> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
0x7fff21b6d000 - 0x7fff21d52fff com.apple.CoreText (677.5.0.5 - 677.5.0.5) <C148A259-D01A-3634-9449-119EB084ABA9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff21d53000 - 0x7fff223e3fff com.apple.audio.CoreAudio (5.0 - 5.0) <E987DC18-3396-3AAD-A66A-2B755C8D242A> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff223e4000 - 0x7fff22738fff com.apple.security (7.0 - 59754.120.12) <7C3D689E-9B3E-3F73-ACF0-F40C1297D180> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff22739000 - 0x7fff22998fff libicucore.A.dylib (66112) <9957A773-012E-3ABA-9587-CFF787170AE8> /usr/lib/libicucore.A.dylib
0x7fff22999000 - 0x7fff229a2fff libsystem_darwin.dylib (1439.100.3) <BF5B5FD8-B5A3-3035-8641-466E625A6CE8> /usr/lib/system/libsystem_darwin.dylib
0x7fff229a3000 - 0x7fff22c8efff com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) <1C5425B5-0E8C-3691-99AB-44F17F357C81> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff22c8f000 - 0x7fff22ccdfff com.apple.CoreServicesInternal (476.1.1 - 476.1.1) <6CF5F363-4653-3605-A340-363C743BBEDD> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff22cce000 - 0x7fff22d08fff com.apple.CSStore (1122.38 - 1122.38) <A664672F-440D-3BA8-8851-68B4C6AB1022> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
0x7fff22d09000 - 0x7fff22db7fff com.apple.framework.IOKit (2.0.2 - 1845.120.6) <C6E70E82-8508-3515-ACE1-361E575D466A> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff22db8000 - 0x7fff22dc3fff libsystem_notify.dylib (279.40.4) <7FFECC25-FA84-3B59-9CC8-4D9DC84E6EC1> /usr/lib/system/libsystem_notify.dylib
0x7fff22dc4000 - 0x7fff22e11fff libsandbox.1.dylib (1441.120.5) <F4FF5F3E-6533-3BD5-8EF1-D298E0C954F6> /usr/lib/libsandbox.1.dylib
0x7fff22e12000 - 0x7fff23b5afff com.apple.AppKit (6.9 - 2022.50.114) <02279013-2888-3A1D-8F28-0C39A64EF5FA> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff23b5b000 - 0x7fff23da9fff com.apple.UIFoundation (1.0 - 728.8) <A901F2AB-A1C3-3BDB-A2ED-33CAEC118589> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff23daa000 - 0x7fff23dbcfff com.apple.UniformTypeIdentifiers (637 - 637) <8DEE5893-C380-335B-B3DA-DD49DA8FB037> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
0x7fff23dbd000 - 0x7fff23f47fff com.apple.desktopservices (1.20 - 1346.5.1) <E4F2E32A-6D94-35D5-B510-44C604236A64> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff24227000 - 0x7fff248adfff libnetwork.dylib (2288.121.1) <728F736C-8AB2-30C0-8E61-A84F34642B18> /usr/lib/libnetwork.dylib
0x7fff248ae000 - 0x7fff24d4cfff com.apple.CFNetwork (1240.0.4 - 1240.0.4) <83684BEF-A3CE-3227-8E10-A8A538CCA9AE> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff24d4d000 - 0x7fff24d5bfff libsystem_networkextension.dylib (1295.120.5) <02486B74-EAAD-3055-AE20-F12E79B39297> /usr/lib/system/libsystem_networkextension.dylib
0x7fff24d5c000 - 0x7fff24d5cfff libenergytrace.dylib (22.100.1) <7039CE14-0DED-3FD3-A540-A01DEFC4314D> /usr/lib/libenergytrace.dylib
0x7fff24d5d000 - 0x7fff24db9fff libMobileGestalt.dylib (978.120.1) <9FF187B8-854F-338D-BD6A-AE142C815617> /usr/lib/libMobileGestalt.dylib
0x7fff24dba000 - 0x7fff24dd0fff libsystem_asl.dylib (385) <B3E89650-A7FE-3E93-8A1B-D88145FDD45C> /usr/lib/system/libsystem_asl.dylib
0x7fff24dd1000 - 0x7fff24de8fff com.apple.TCC (1.0 - 1) <5D202FF3-7BD8-3384-A8AB-7D62CD14C412> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff24de9000 - 0x7fff2514dfff com.apple.SkyLight (1.600.0 - 588.1) <D5925B80-2468-3709-9DFD-BEAF418169EC> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff2514e000 - 0x7fff257d7fff com.apple.CoreGraphics (2.0 - 1463.14.2) <8E1776B9-0046-3FCF-BF54-F76490EA4A27> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff257d8000 - 0x7fff258cefff com.apple.ColorSync (4.13.0 - 3473.4.3) <CB975116-61F8-330F-B111-3F0467F88BC1> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff258cf000 - 0x7fff2592afff com.apple.HIServices (1.22 - 716) <132B9E44-BF23-3B61-96F2-7678C81115AA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff25cd1000 - 0x7fff260f0fff com.apple.CoreData (120 - 1048) <D3DAFFD5-CC38-3A82-B138-015DBFD551D9> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff260f1000 - 0x7fff26106fff com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <C92547DE-86B8-3734-A17D-D0F9B4AE1300> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff26107000 - 0x7fff262bafff libsqlite3.dylib (321.3) <E9324AF2-968F-3459-A0EB-2FD4E8A3BF09> /usr/lib/libsqlite3.dylib
0x7fff262bb000 - 0x7fff26337fff com.apple.Accounts (113 - 113) <E31BCCDB-C1E3-3C74-9527-EF1643FF6224> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff26338000 - 0x7fff2634ffff com.apple.commonutilities (8.0 - 900) <4EBBE25A-3599-3DC8-B846-F90BD23FED85> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff26350000 - 0x7fff263cffff com.apple.BaseBoard (526 - 526) <ECED5758-3FD9-3F09-8E55-2230E391373A> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff263d0000 - 0x7fff26418fff com.apple.RunningBoardServices (1.0 - 505.100.8) <F72D5FDE-6DC0-3068-AD08-CA8D165E574D> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
0x7fff26419000 - 0x7fff2648dfff com.apple.AE (918.6 - 918.6) <A9B7A6D0-85CE-31CD-8926-81D3A714AF42> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff2648e000 - 0x7fff26494fff libdns_services.dylib (1310.120.71) <6F77A4C7-40B9-3062-8650-6E1E2FD07046> /usr/lib/libdns_services.dylib
0x7fff26495000 - 0x7fff2649cfff libsystem_symptoms.dylib (1431.120.1) <3BEA5355-D267-39D4-8BC6-A1703845BD3F> /usr/lib/system/libsystem_symptoms.dylib
0x7fff2649d000 - 0x7fff26628fff com.apple.Network (1.0 - 1) <39B5F4D8-5105-37CB-9F18-2B2C36CB4B42> /System/Library/Frameworks/Network.framework/Versions/A/Network
0x7fff26629000 - 0x7fff26658fff com.apple.analyticsd (1.0 - 1) <2DABBC97-042F-39C7-85A5-A6F47BCAC5EC> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
0x7fff26659000 - 0x7fff2665bfff libDiagnosticMessagesClient.dylib (112) <8D0655AC-218F-3AA6-9802-2444E6801067> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff2665c000 - 0x7fff266a8fff com.apple.spotlight.metadata.utilities (1.0 - 2150.21) <7CE4BC56-65ED-3D75-8DA0-05EFE1BA2256> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff266a9000 - 0x7fff26743fff com.apple.Metadata (10.7.0 - 2150.21) <04F83B90-3535-326F-8897-D43F55DDE771> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff26744000 - 0x7fff2674afff com.apple.DiskArbitration (2.7 - 2.7) <97F9E5D9-0942-3AD6-8D31-65106C452CB8> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff2674b000 - 0x7fff26db2fff com.apple.vImage (8.1 - 544.4) <A711FD44-1495-3D7B-BF5C-E238C17B1A79> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff26db3000 - 0x7fff2708ffff com.apple.QuartzCore (1.11 - 927.21) <F384A0C0-F855-3B4D-AAD0-E0F0550E226C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff27090000 - 0x7fff270d1fff libFontRegistry.dylib (309) <5D9848B3-14C7-34A8-A981-B3C2CFD12BD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff270d2000 - 0x7fff27212fff com.apple.coreui (2.1 - 692.1) <76D85525-8D99-3F0F-BC36-DEA342D4589D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff27213000 - 0x7fff272fefff com.apple.ViewBridge (553.1 - 553.1) <21A4A790-5A90-3C45-979E-9CF3ED9E8092> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff272ff000 - 0x7fff2730afff com.apple.PerformanceAnalysis (1.278.3 - 278.3) <3FE8B4FD-B159-38B0-BA07-DE6722AC9F55> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff2730b000 - 0x7fff2731afff com.apple.OpenDirectory (11.4 - 230.40.1) <32596EC3-5500-3B18-ABCD-D92EDEDE74BF> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff2731b000 - 0x7fff2733afff com.apple.CFOpenDirectory (11.4 - 230.40.1) <3AA364D1-58AE-3C8D-B897-5B4AC3256BE7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff2733b000 - 0x7fff27347fff com.apple.CoreServices.FSEvents (1290.120.5 - 1290.120.5) <4C4959DF-FE61-30E8-8BBB-3BF674BE203A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff27348000 - 0x7fff2736cfff com.apple.coreservices.SharedFileList (144 - 144) <4418DDA1-CA34-3402-97F2-CE9B60019617> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff2736d000 - 0x7fff2736ffff libapp_launch_measurement.dylib (14.1) <78905455-A807-3D67-AD56-FF8C22D31B16> /usr/lib/libapp_launch_measurement.dylib
0x7fff27370000 - 0x7fff273b7fff com.apple.CoreAutoLayout (1.0 - 21.10.1) <E848DF1F-1C82-3F04-87B8-9BF0C956A587> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
0x7fff273b8000 - 0x7fff2749afff libxml2.2.dylib (34.9) <08E7CAB2-0EED-376C-880A-E52CC01E82F3> /usr/lib/libxml2.2.dylib
0x7fff2749b000 - 0x7fff274e8fff com.apple.CoreVideo (1.8 - 414.7) <29D4EA46-F0B6-3004-863C-0940ACD200C2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff274e9000 - 0x7fff274ebfff com.apple.loginsupport (1.0 - 1) <02FCC3AF-1E2D-3603-9D6F-33589ED28A00> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff27514000 - 0x7fff2752ffff com.apple.UserManagement (1.0 - 1) <12F6D91A-C660-37CD-90E7-A0137393F080> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
0x7fff284a3000 - 0x7fff284b3fff libsystem_containermanager.dylib (318.100.4) <2BBFF58C-D27E-3371-968D-7DE1E53749F6> /usr/lib/system/libsystem_containermanager.dylib
0x7fff284b4000 - 0x7fff284c5fff com.apple.IOSurface (290.8.1 - 290.8.1) <BA97183F-8EE4-3833-8AA7-06D9B9D39BDF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff284c6000 - 0x7fff284cffff com.apple.IOAccelerator (442.9 - 442.9) <91FA0C86-BD36-373C-B91A-7360D27CA614> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff284d0000 - 0x7fff285f3fff com.apple.Metal (244.201 - 244.201) <5197E017-D6CD-3611-A8B5-76A4FB901C6A> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff285f4000 - 0x7fff28610fff com.apple.audio.caulk (1.0 - 70) <B6AB0B5B-ED36-3567-8112-5C9DEDBFBBFA> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
0x7fff28611000 - 0x7fff286fbfff com.apple.CoreMedia (1.0 - 2775.22) <9C15E6D0-245E-3A6E-BC67-C1DF67F7EB2A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff286fc000 - 0x7fff2885cfff libFontParser.dylib (305.5.0.1) <DFE3F79C-849C-3FC7-AFC0-24AB83171A36> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x7fff2885d000 - 0x7fff28b58fff com.apple.HIToolbox (2.1.1 - 1061.11) <DFAA0674-E367-36D9-925A-4EA9A6954BB0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff28b59000 - 0x7fff28b6cfff com.apple.framework.DFRFoundation (1.0 - 266) <0B60B894-C5A5-38F0-8755-53BD217B0E36> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff28b6d000 - 0x7fff28b70fff com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1) <8828FD40-9EE5-3E09-9DD7-8B7E34B34C26> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff28b71000 - 0x7fff28b9afff com.apple.CoreSVG (1.0 - 149) <BA347BBA-DC27-3728-9728-A791957D3F59> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
0x7fff28b9b000 - 0x7fff28dd7fff com.apple.ImageIO (3.3.0 - 2130.5.4) <14E0D520-1EE1-3C80-9827-4E5F513A7289> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff28dd8000 - 0x7fff29153fff com.apple.CoreImage (16.3.0 - 1140.2) <4A5B2859-C1F7-3938-B4B6-DDEC972798D1> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff29154000 - 0x7fff291bafff com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <20902DA8-4AAB-36C8-9224-4F9E828B465A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff291bb000 - 0x7fff291befff libsystem_configuration.dylib (1109.120.1) <C7A9BD10-192B-31D3-92ED-2581A61A99F6> /usr/lib/system/libsystem_configuration.dylib
0x7fff291bf000 - 0x7fff291c3fff libsystem_sandbox.dylib (1441.120.5) <DC075A7C-9D4A-32D3-9022-CD47764AFDAD> /usr/lib/system/libsystem_sandbox.dylib
0x7fff291c4000 - 0x7fff291c5fff com.apple.AggregateDictionary (1.0 - 1) <4394E8DB-F6D9-3F85-B894-F463378DC1B4> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff291c6000 - 0x7fff291c9fff com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <1826DE1C-06B1-3140-A9A2-F7D55C1D9DB6> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff291ca000 - 0x7fff291cbfff liblangid.dylib (136) <ADE3A41C-F815-39DE-A978-1B0EE456167B> /usr/lib/liblangid.dylib
0x7fff291cc000 - 0x7fff29270fff com.apple.CoreNLP (1.0 - 245.2) <9B1C60E4-2B36-34A7-AF43-7EEC914FA1FE> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff29271000 - 0x7fff29277fff com.apple.LinguisticData (1.0 - 399) <48C87E01-670A-336C-9D37-723E06BE422D> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff29278000 - 0x7fff29920fff libBNNS.dylib (288.100.5) <48BD7046-5DBD-3F3D-AD81-376AD24FA45D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff29921000 - 0x7fff29af3fff libvDSP.dylib (760.100.3) <372AD8C6-F390-3257-A886-D3B545AAB98C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff29af4000 - 0x7fff29b05fff com.apple.CoreEmoji (1.0 - 128.4) <677784E7-E4E6-3405-AC53-DD66197C4821> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff29b06000 - 0x7fff29b10fff com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <A57347A7-1354-3F54-B9EC-E5F83A200AAF> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
0x7fff29b11000 - 0x7fff29be3fff com.apple.framework.CoreWLAN (16.0 - 1657) <42166AAE-D9EF-3EE6-A0F3-8B3E320BB39E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff29be4000 - 0x7fff29de5fff com.apple.CoreUtils (6.6 - 660.37) <D3F3801B-EC48-3C0B-9438-0C12C4A0BA87> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff29de6000 - 0x7fff29e08fff com.apple.MobileKeyBag (2.0 - 1.0) <1FCEE156-0810-3425-88FC-E7EA6B38ACA7> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff29e09000 - 0x7fff29e19fff com.apple.AssertionServices (1.0 - 505.100.8) <E691B254-0792-348B-BC13-2B1A490174C4> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff29e1a000 - 0x7fff29ea5fff com.apple.securityfoundation (6.0 - 55240.40.4) <AD930CCB-A3F5-3C2C-A2CD-9963A63560F5> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff29ea6000 - 0x7fff29eaffff com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <4B88024D-62DB-3E5D-BCA2-076663214608> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff29eb0000 - 0x7fff29eb4fff com.apple.xpc.ServiceManagement (1.0 - 1) <7E760B22-944C-387A-903F-C9184CE788B9> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff29eb5000 - 0x7fff29eb7fff libquarantine.dylib (119.40.2) <4611645F-5817-3A80-8382-2DB03A8C0141> /usr/lib/system/libquarantine.dylib
0x7fff29eb8000 - 0x7fff29ec3fff libCheckFix.dylib (31) <33CE141E-48F5-3974-BD63-1F63558BB452> /usr/lib/libCheckFix.dylib
0x7fff29ec4000 - 0x7fff29edbfff libcoretls.dylib (169.100.1) <68726723-2EA1-3007-89ED-F66725A6AA7E> /usr/lib/libcoretls.dylib
0x7fff29edc000 - 0x7fff29eecfff libbsm.0.dylib (68.40.1) <77DF90DF-D5C2-3178-AAA7-96FC6D9F2312> /usr/lib/libbsm.0.dylib
0x7fff29eed000 - 0x7fff29f36fff libmecab.dylib (929.10) <48F1EC4F-7D85-347F-B20C-7225AF2499A4> /usr/lib/libmecab.dylib
0x7fff29f37000 - 0x7fff29f3cfff libgermantok.dylib (24) <171A100F-C862-3CA2-A308-5AA9EF24B690> /usr/lib/libgermantok.dylib
0x7fff29f3d000 - 0x7fff29f52fff libLinearAlgebra.dylib (1336.120.1) <09738E52-FA24-3239-895D-F762C920F03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff29f53000 - 0x7fff2a171fff com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <C515FA90-1022-308E-A513-0EA9831FE712> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff2a172000 - 0x7fff2a1c1fff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <1C3D9332-2C1D-3B52-A679-35BC37A3E8F0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff2a1c2000 - 0x7fff2a323fff com.apple.MLCompute (1.0 - 1) <0B7ADB41-62BE-32EE-821A-BB7141DE8B42> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
0x7fff2a324000 - 0x7fff2a35afff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <D5B2AEEE-3973-35A5-9FF9-1C7C031B7125> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff2a35b000 - 0x7fff2a3b1fff com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <0E99566D-A21A-304F-AF1A-A9530AED8A92> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
0x7fff2a3b2000 - 0x7fff2a442fff com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <1C395A17-2F98-35A5-B768-F22A714100D0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff2a443000 - 0x7fff2a452fff com.apple.AppleFSCompression (125 - 1.0) <6BD3FF9C-BCEE-3AB9-AC52-71A75D1C54AD> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff2a453000 - 0x7fff2a45ffff libbz2.1.0.dylib (44) <CA69420A-25E7-344C-852F-808F09AD43D0> /usr/lib/libbz2.1.0.dylib
0x7fff2a460000 - 0x7fff2a464fff libsystem_coreservices.dylib (127.1) <1E2DA16B-D528-3D43-86C2-2BB9127954A0> /usr/lib/system/libsystem_coreservices.dylib
0x7fff2a465000 - 0x7fff2a492fff com.apple.CoreServices.OSServices (1122.38 - 1122.38) <D02BE0AC-0544-3D1F-9E79-37715E231214> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff2a493000 - 0x7fff2a5c2fff com.apple.AuthKit (1.0 - 1) <C35AA029-1F96-3F5F-B71C-EF55E59F8F0D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff2a5c3000 - 0x7fff2a5f1fff com.apple.UserNotifications (1.0 - 348.5) <2B935838-63EE-3A80-AA91-3A62403108C5> /System/Library/Frameworks/UserNotifications.framework/Versions/A/UserNotifications
0x7fff2a661000 - 0x7fff2a673fff libz.1.dylib (76) <C1E6CE87-167E-39EC-8B8F-2C3213A0208E> /usr/lib/libz.1.dylib
0x7fff2a674000 - 0x7fff2a6bbfff libsystem_m.dylib (3186.100.3) <21949128-D4E6-3179-B248-41B05C1CE102> /usr/lib/system/libsystem_m.dylib
0x7fff2a6bc000 - 0x7fff2a6bcfff libcharset.1.dylib (59) <4B3453D8-277A-38D3-862D-28DF71F3E285> /usr/lib/libcharset.1.dylib
0x7fff2a6bd000 - 0x7fff2a6c2fff libmacho.dylib (980) <3677B3B7-03E8-3804-B2FE-5640B18FE40E> /usr/lib/system/libmacho.dylib
0x7fff2a6c3000 - 0x7fff2a6defff libkxld.dylib (7195.121.3) <A83BCE3F-35C1-34DD-B1C5-B4FDFB33B250> /usr/lib/system/libkxld.dylib
0x7fff2a6df000 - 0x7fff2a6eafff libcommonCrypto.dylib (60178.120.3) <BBA72D86-B9C1-3123-AE59-D629DE278695> /usr/lib/system/libcommonCrypto.dylib
0x7fff2a6eb000 - 0x7fff2a6f5fff libunwind.dylib (201) <3149D79A-911B-39ED-9C93-6C7E6B0860C7> /usr/lib/system/libunwind.dylib
0x7fff2a6f6000 - 0x7fff2a6fdfff liboah.dylib (203.46) <0A17EAFC-15E9-37FE-8EE2-DE0F7F220AD8> /usr/lib/liboah.dylib
0x7fff2a6fe000 - 0x7fff2a708fff libcopyfile.dylib (173.40.2) <7304CA0D-E93C-367F-9BEE-AC56B873F06C> /usr/lib/system/libcopyfile.dylib
0x7fff2a709000 - 0x7fff2a710fff libcompiler_rt.dylib (102.2) <0DB1902E-C79C-3E26-BE51-F70960ECF0B9> /usr/lib/system/libcompiler_rt.dylib
0x7fff2a711000 - 0x7fff2a713fff libsystem_collections.dylib (1439.100.3) <E180C04A-9CFB-3C8E-9C2B-978D23A99F2A> /usr/lib/system/libsystem_collections.dylib
0x7fff2a714000 - 0x7fff2a716fff libsystem_secinit.dylib (87.60.1) <8C33D323-C11C-34CB-9295-4D7C98B8AFD6> /usr/lib/system/libsystem_secinit.dylib
0x7fff2a717000 - 0x7fff2a719fff libremovefile.dylib (49.120.1) <6DEAEEC9-2A65-3C7B-A9CE-23245772FD07> /usr/lib/system/libremovefile.dylib
0x7fff2a71a000 - 0x7fff2a71afff libkeymgr.dylib (31) <FD167835-3829-3FFD-B13E-D18113E271AB> /usr/lib/system/libkeymgr.dylib
0x7fff2a71b000 - 0x7fff2a722fff libsystem_dnssd.dylib (1310.120.71) <7BB607FE-EF79-3144-8BD0-A66792FF1443> /usr/lib/system/libsystem_dnssd.dylib
0x7fff2a723000 - 0x7fff2a728fff libcache.dylib (83) <8B201058-2C34-3C12-9A7A-898CB0AAD150> /usr/lib/system/libcache.dylib
0x7fff2a729000 - 0x7fff2a72afff libSystem.B.dylib (1292.120.1) <A8309074-31CC-31F0-A143-81DF019F7A86> /usr/lib/libSystem.B.dylib
0x7fff2a72b000 - 0x7fff2a72efff libfakelink.dylib (3) <CF7D19AF-D162-369D-9501-0BEAC4D1188E> /usr/lib/libfakelink.dylib
0x7fff2a72f000 - 0x7fff2a72ffff com.apple.SoftLinking (1.0 - 1) <6C04D3E0-BFE0-32E2-A098-46D726F9B429> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
0x7fff2a730000 - 0x7fff2a767fff libpcap.A.dylib (98.100.3) <87B9769E-D88E-37F9-BB83-B327527AE79C> /usr/lib/libpcap.A.dylib
0x7fff2a768000 - 0x7fff2a858fff libiconv.2.dylib (59) <B9FD3BC7-6001-3E60-A7FB-CE8AAE07C805> /usr/lib/libiconv.2.dylib
0x7fff2a859000 - 0x7fff2a86afff libcmph.dylib (8) <AE1C3A87-5C44-3833-9DE1-31062A878138> /usr/lib/libcmph.dylib
0x7fff2a86b000 - 0x7fff2a8dcfff libarchive.2.dylib (83.100.2) <5DF98631-FBAC-3F17-B4D1-0115CE6C009B> /usr/lib/libarchive.2.dylib
0x7fff2a8dd000 - 0x7fff2a944fff com.apple.SearchKit (1.4.1 - 1.4.1) <FBAB58C4-1B62-39E8-9241-93966CC2C9C0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff2a945000 - 0x7fff2a946fff libThaiTokenizer.dylib (3) <1D735582-F932-3279-9F47-D10EAD1CA9A2> /usr/lib/libThaiTokenizer.dylib
0x7fff2a947000 - 0x7fff2a969fff com.apple.applesauce (1.0 - 16.28) <F07DA929-24FA-36D3-A356-05C9565AC397> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff2a96a000 - 0x7fff2a981fff libapple_nghttp2.dylib (1.41) <303C40AC-4212-3B20-ABF6-91F46A79B78B> /usr/lib/libapple_nghttp2.dylib
0x7fff2a982000 - 0x7fff2a998fff libSparseBLAS.dylib (1336.120.1) <3C4D290C-13A4-3A3D-B7C9-3BA0A4C9C7A5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff2a999000 - 0x7fff2a99afff com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <9D78B798-7218-3327-8E50-CF321EDB22B1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff2a99b000 - 0x7fff2a99ffff libpam.2.dylib (28.40.1) <A04A5DD4-34DE-3BFB-BB17-BD66F7FBA1B6> /usr/lib/libpam.2.dylib
0x7fff2a9a0000 - 0x7fff2a9bffff libcompression.dylib (96.120.1) <591F0E34-3C41-3D94-98BA-9BB50E608787> /usr/lib/libcompression.dylib
0x7fff2a9c0000 - 0x7fff2a9c5fff libQuadrature.dylib (7) <FD523210-15BE-3EE7-B2E2-892A7E198542> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff2a9c6000 - 0x7fff2ad63fff libLAPACK.dylib (1336.120.1) <3F036666-341C-3570-8136-CDF170C02DE7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff2ad64000 - 0x7fff2adb3fff com.apple.DictionaryServices (1.2 - 341) <3EC1918E-0345-3EC6-BAE0-04B94A0B6809> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff2adb4000 - 0x7fff2adccfff liblzma.5.dylib (16) <10B7343A-0322-3A1F-B6AE-06FC709F1BDE> /usr/lib/liblzma.5.dylib
0x7fff2adcd000 - 0x7fff2adcefff libcoretls_cfhelpers.dylib (169.100.1) <BACFE067-CAAB-3906-AAE5-A5E78CD22C6D> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff2adcf000 - 0x7fff2aecafff com.apple.APFS (1677.120.9 - 1677.120.9) <599AAB82-F105-3ACC-BBFA-2D3D276A312C> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff2aecb000 - 0x7fff2aed8fff libxar.1.dylib (452) <C5B63994-6F92-395D-9431-1574D6E1D89F> /usr/lib/libxar.1.dylib
0x7fff2aed9000 - 0x7fff2aedcfff libutil.dylib (58.40.2) <4D8FD41B-89A5-31DA-BB0E-7F13C3B1652F> /usr/lib/libutil.dylib
0x7fff2aedd000 - 0x7fff2af05fff libxslt.1.dylib (17.4) <CADFABB2-F66B-39FF-B43A-17315815F664> /usr/lib/libxslt.1.dylib
0x7fff2af06000 - 0x7fff2af10fff libChineseTokenizer.dylib (37.1) <44E1A716-E405-3E54-874F-C5011146B318> /usr/lib/libChineseTokenizer.dylib
0x7fff2af11000 - 0x7fff2afcefff libvMisc.dylib (760.100.3) <E92C2BF3-02A5-31D1-BF6A-56BBA624CA90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff2afcf000 - 0x7fff2b066fff libate.dylib (3.0.6) <C73DF462-D92F-366F-ADBE-B140698DEBAF> /usr/lib/libate.dylib
0x7fff2b067000 - 0x7fff2b06efff libIOReport.dylib (64.100.1) <E7BCECCB-2F51-3A07-9C56-4EF4AFD59C80> /usr/lib/libIOReport.dylib
0x7fff2b06f000 - 0x7fff2b082fff com.apple.CrashReporterSupport (10.13 - 15053) <14AF971D-F684-32BD-8BB6-BE9C4A01DDA5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff2b139000 - 0x7fff2b16ffff com.apple.pluginkit.framework (1.0 - 1) <3ED3DACF-9CDA-30F0-8AF6-C44C6EEEC77B> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
0x7fff2b170000 - 0x7fff2b177fff libMatch.1.dylib (38) <121C98B5-D188-3E02-890D-F4F2CD91D2F2> /usr/lib/libMatch.1.dylib
0x7fff2b178000 - 0x7fff2b203fff libCoreStorage.dylib (554) <3888A24D-7E72-3B58-A252-85373AFF3CE4> /usr/lib/libCoreStorage.dylib
0x7fff2b204000 - 0x7fff2b257fff com.apple.AppleVAFramework (6.1.3 - 6.1.3) <D39DBE46-4BEB-316F-BAFA-8E2B03BED772> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff2b258000 - 0x7fff2b270fff libexpat.1.dylib (26) <C0213844-67CA-38E7-A586-456A645E0BD0> /usr/lib/libexpat.1.dylib
0x7fff2b271000 - 0x7fff2b27afff libheimdal-asn1.dylib (597.121.1) <493CC99B-8939-3F7E-852C-9AB59B0DDC11> /usr/lib/libheimdal-asn1.dylib
0x7fff2b27b000 - 0x7fff2b28ffff com.apple.IconFoundation (479.4 - 479.4) <C0C5765F-6A1F-3D89-9AEE-5D49520CAAFD> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
0x7fff2b290000 - 0x7fff2b2fcfff com.apple.IconServices (479.4 - 479.4) <8D31CC1A-C609-30EC-BCC3-251F7E4CDC10> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff2b2fd000 - 0x7fff2b39bfff com.apple.MediaExperience (1.0 - 1) <29CF7489-BA27-3789-95A2-F94CC6F09E7A> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
0x7fff2b39c000 - 0x7fff2b3c4fff com.apple.persistentconnection (1.0 - 1.0) <5E4A9EC5-2E54-3EFF-A330-52C0D42B26AA> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
0x7fff2b3c5000 - 0x7fff2b3d3fff com.apple.GraphVisualizer (1.0 - 100.1) <FFB7E9D0-F1D6-38E9-8BAD-759C3BFEE379> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff2b3d4000 - 0x7fff2b7effff com.apple.vision.FaceCore (4.3.2 - 4.3.2) <5A226A22-20F0-3196-915F-5DF94E1B3070> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff2b7f0000 - 0x7fff2b837fff com.apple.OTSVG (1.0 - 677.5.0.5) <2E8C5AAB-E14B-3FC4-8872-332690419934> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff2b838000 - 0x7fff2b83efff com.apple.xpc.AppServerSupport (1.0 - 2038.120.1) <256FB87D-3DD1-3B42-B095-B2E5FC3A755B> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
0x7fff2b83f000 - 0x7fff2b851fff libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <C97DAB60-EA72-3822-A5F7-AF29C05DC1DD> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x7fff2b852000 - 0x7fff2b854fff libspindump.dylib (295.2) <63167B4A-D7D5-3146-86B6-988FC0AD4F14> /usr/lib/libspindump.dylib
0x7fff2b855000 - 0x7fff2b915fff com.apple.Heimdal (4.0 - 2.0) <B7D2D628-4503-3229-BFB4-FF60066104C1> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff2b916000 - 0x7fff2b930fff com.apple.login (3.0 - 3.0) <5D551803-8EF3-3F1F-9329-B35D3E017D25> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
0x7fff2bab1000 - 0x7fff2bab4fff libodfde.dylib (26) <6EC89072-8E30-3612-836B-CA890926AAA9> /usr/lib/libodfde.dylib
0x7fff2bab5000 - 0x7fff2baf1fff com.apple.bom (14.0 - 235) <B6D5DB5C-7E5B-3D1A-993B-06EDA9728BD9> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff2baf2000 - 0x7fff2bb3bfff com.apple.AppleJPEG (1.0 - 1) <BE3058DB-0D49-3331-87A7-36D4651F143B> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff2bb3c000 - 0x7fff2bc1bfff libJP2.dylib (2130.5.4) <E1F1DA3E-2EC4-3AC9-8171-E4777A9F5DBD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff2bc1c000 - 0x7fff2bc1ffff com.apple.WatchdogClient.framework (1.0 - 98.120.2) <DE7F64ED-82D2-325D-A031-0E805D52514C> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
0x7fff2bc20000 - 0x7fff2bc56fff com.apple.MultitouchSupport.framework (4440.3 - 4440.3) <C22A0497-19D3-3365-8F59-9190C510F4BE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff2bc57000 - 0x7fff2bdb5fff com.apple.VideoToolbox (1.0 - 2775.22) <88A013B6-FAB1-3BF9-A5C0-A92D8951E9E3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff2bdb6000 - 0x7fff2bde9fff libAudioToolboxUtility.dylib (1181.68) <2AF3BF70-DCEC-3884-A75A-DDEF1F304964> /usr/lib/libAudioToolboxUtility.dylib
0x7fff2bdea000 - 0x7fff2be10fff libPng.dylib (2130.5.4) <3D6AEF53-5D8E-3F8B-B80E-71D848BFD35F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff2be11000 - 0x7fff2be70fff libTIFF.dylib (2130.5.4) <F4B52A0F-2EF6-30BE-9870-CD2E8B5C3318> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff2be71000 - 0x7fff2be8dfff com.apple.IOPresentment (58 - 37) <994E2AE6-D25E-32D5-9ABA-5A1979A659FE> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff2be8e000 - 0x7fff2be95fff com.apple.GPUWrangler (6.3.3 - 6.3.3) <768299B7-C4B5-307D-A413-52DA0C269A9D> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff2be96000 - 0x7fff2be99fff libRadiance.dylib (2130.5.4) <5C83C72F-9F7B-341D-ADD7-DA12A728C9EA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff2be9a000 - 0x7fff2be9ffff com.apple.DSExternalDisplay (3.1 - 380) <AA11B104-262F-33B2-8564-EF47D24AC2B6> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff2bea0000 - 0x7fff2bec4fff libJPEG.dylib (2130.5.4) <70213D93-137E-39CE-82C9-BC238226AC05> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff2bec5000 - 0x7fff2bef4fff com.apple.ATSUI (1.0 - 1) <63C289D7-9FD8-370D-9DFB-9C2B50E7978A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
0x7fff2bef5000 - 0x7fff2bef9fff libGIF.dylib (2130.5.4) <961F6A97-AF22-3A45-BDCF-A425C23CA01A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff2befa000 - 0x7fff2bf03fff com.apple.CMCaptureCore (1.0 - 82.6) <694884AA-070C-3EE5-B86C-F09ABB93A7D7> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
0x7fff2bf04000 - 0x7fff2bf4bfff com.apple.print.framework.PrintCore (16.1 - 531.1) <9D0760A9-DAE8-3BB5-AE31-4D945BA39D48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff2bf4c000 - 0x7fff2c019fff com.apple.TextureIO (3.10.9 - 3.10.9) <B68C877B-2BE2-3338-AACA-52DDD955017A> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff2c01a000 - 0x7fff2c022fff com.apple.InternationalSupport (1.0 - 61.1) <0C4AFFAF-D59F-3B3E-A433-CE03BDE567A8> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff2c023000 - 0x7fff2c09dfff com.apple.datadetectorscore (8.0 - 674) <2FC62BC9-F63C-30DB-BFEE-3CB8399D7F18> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff2c09e000 - 0x7fff2c0fbfff com.apple.UserActivity (439 - 439) <2C4D4B39-FA93-3ED5-8417-ACBE6C39BB92> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
0x7fff2c0fc000 - 0x7fff2c896fff com.apple.MediaToolbox (1.0 - 2775.22) <F5CC3EEC-294B-3B88-BEF1-63BEF846EFF0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff2cd67000 - 0x7fff2cd98fff libSessionUtility.dylib (76.69) <143B9D4F-FDB1-3366-A20C-4B09A05FE862> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
0x7fff2cd99000 - 0x7fff2cecdfff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <1ABFDEA2-FB20-3E05-B4CC-84A2A796D089> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff2cece000 - 0x7fff2cf33fff com.apple.audio.AudioSession (1.0 - 76.69) <8D52DAFF-EBE7-3631-A645-E5CD509591A0> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
0x7fff2cf34000 - 0x7fff2cf46fff libAudioStatistics.dylib (27.64) <0EF059FC-B386-3595-8BB5-57F0CADAA75F> /usr/lib/libAudioStatistics.dylib
0x7fff2cf47000 - 0x7fff2cf56fff com.apple.speech.synthesis.framework (9.0.65 - 9.0.65) <4E88057A-948F-335D-9675-AAEC73F7DE6A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff2cf57000 - 0x7fff2cfc3fff com.apple.ApplicationServices.ATS (377 - 516) <9DFEBC18-3BA6-3588-A5C5-6D974DF284A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff2cfc4000 - 0x7fff2cfdcfff libresolv.9.dylib (68) <0E0E7298-2781-3D72-B40F-5FF7DE7DF068> /usr/lib/libresolv.9.dylib
0x7fff2cfdd000 - 0x7fff2cff0fff libsasl2.2.dylib (214) <8A235B0C-CE89-3C11-8329-AF081227BB92> /usr/lib/libsasl2.2.dylib
0x7fff2d0aa000 - 0x7fff2d10efff com.apple.CoreMediaIO (1000.0 - 5325) <BD292385-E0B4-3BB9-9D4A-894C4AC6560B> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff2d10f000 - 0x7fff2d1eefff libSMC.dylib (20) <7B4581C7-3E3F-33F7-AC74-BFC57A2991C4> /usr/lib/libSMC.dylib
0x7fff2d1ef000 - 0x7fff2d24efff libcups.2.dylib (494.1) <C96214CD-19F2-334A-95A0-25BA714D984A> /usr/lib/libcups.2.dylib
0x7fff2d24f000 - 0x7fff2d25efff com.apple.LangAnalysis (1.7.0 - 254) <C53922F5-BD54-3594-9DCF-DF6D0379B40D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff2d25f000 - 0x7fff2d269fff com.apple.NetAuth (6.2 - 6.2) <32C039EF-D063-3F2B-B4AC-3103593A7D4E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff2d26a000 - 0x7fff2d271fff com.apple.ColorSyncLegacy (4.13.0 - 1) <6B94034B-8D84-3700-96D3-7A3208231BE9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff2d272000 - 0x7fff2d27dfff com.apple.QD (4.0 - 416) <AA06F3E8-FC88-3501-B05C-F2D0C4F56272> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff2d27e000 - 0x7fff2d8d2fff com.apple.audio.AudioResourceArbitration (1.0 - 1) <21EB0A40-BA39-3423-AA4F-2E2A771157C1> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
0x7fff2d8d3000 - 0x7fff2d8defff com.apple.perfdata (1.0 - 67.40.1) <9D1542E2-52D5-3372-8F2B-B71E27E8050B> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
0x7fff2d8df000 - 0x7fff2d8edfff libperfcheck.dylib (41) <AE0793DA-378F-343E-82AC-EEFBE0FF1818> /usr/lib/libperfcheck.dylib
0x7fff2d8ee000 - 0x7fff2d8fdfff com.apple.Kerberos (3.0 - 1) <6D0BA11B-3659-36F0-983E-5D0E51B25912> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff2d8fe000 - 0x7fff2d94efff com.apple.GSS (4.0 - 2.0) <398B2978-DB62-3D24-A5DA-36599C401D7F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff2d94f000 - 0x7fff2d95ffff com.apple.CommonAuth (4.0 - 2.0) <A48CDBF5-8251-35AF-90F8-6FD9D64DA2D8> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff2d960000 - 0x7fff2d987fff com.apple.MobileAssets (1.0 - 659.100.21) <4D326D1D-8AF7-3D30-841A-E7D0E549B146> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
0x7fff2d9b5000 - 0x7fff2d9d4fff com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <8493160A-57F2-37E2-8482-FE1619630B59> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff2d9d5000 - 0x7fff2d9ddfff com.apple.CorePhoneNumbers (1.0 - 1) <514729CE-5C41-3B60-888B-C7267C51B11F> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff2db30000 - 0x7fff2db30fff liblaunch.dylib (2038.120.1) <FB6430FC-AACB-3AFF-8763-4C5AFABEF40E> /usr/lib/system/liblaunch.dylib
0x7fff2e312000 - 0x7fff2e45dfff com.apple.Sharing (1622.1 - 1622.1) <B931F6D8-4831-34ED-A909-BEB824ADF533> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff2e45e000 - 0x7fff2e57ffff com.apple.Bluetooth (8.0.5 - 8.0.5d7) <7630620F-575C-37A6-ACAA-3B9443127E88> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff2e599000 - 0x7fff2e5f2fff com.apple.ProtectedCloudStorage (1.0 - 1) <56DAAA40-66D4-3551-B196-B39604874CAA> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff2fd46000 - 0x7fff2fd51fff com.apple.DirectoryService.Framework (11.4 - 230.40.1) <084E95B9-873E-3AF5-9A26-32D8AF6F9638> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff2fd52000 - 0x7fff2fd79fff com.apple.RemoteViewServices (2.0 - 163) <2D91746F-1F8B-3D03-BED1-C1BD7FA14453> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff2fd7a000 - 0x7fff2fd89fff com.apple.SpeechRecognitionCore (6.1.24 - 6.1.24) <4FD3C300-7679-3E30-BC40-5DC933BC287E> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff2fd8a000 - 0x7fff2fd91fff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <F2C2E4FC-0EE0-38CC-AC0F-8F412A2859EE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff2ffbf000 - 0x7fff2ffbffff libsystem_product_info_filter.dylib (8.40.1) <D5194AB1-61C4-3C8D-9E3C-C65702BAB859> /usr/lib/system/libsystem_product_info_filter.dylib
0x7fff30097000 - 0x7fff30097fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <E0B5CB04-F282-3BF0-8D14-BE6E3ED7C0A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff300bd000 - 0x7fff300bdfff com.apple.CoreServices (1122.38 - 1122.38) <FEC6CD87-0909-3554-B8F5-CE65A5BB032C> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff30279000 - 0x7fff30279fff com.apple.Accelerate (1.11 - Accelerate 1.11) <2BCB5475-FDEF-379A-BB0E-B1A3AA7F5B83> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff302ba000 - 0x7fff302c5fff com.apple.MediaAccessibility (1.0 - 130) <F8E31637-2B5F-3D89-94FA-BD4AF8A46BD6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff302c6000 - 0x7fff302e5fff com.apple.networking.AlgosScoreFramework (1.0 - 1) <C14EC551-82CD-3A04-91F3-C35D48B5B583> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/Versions/A/AlgosScoreFramework
0x7fff302e6000 - 0x7fff302eafff com.apple.AppleSRP (5.0 - 1) <F9D14131-8FEA-3BBF-902E-16754ABE537F> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff302eb000 - 0x7fff302f6fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) <36002664-194B-3D03-8EFC-94AA3857B08B> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff302f7000 - 0x7fff3032efff com.apple.framework.SystemAdministration (1.0 - 1.0) <124F917C-5C51-3C78-B630-D14C54F56773> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
0x7fff30abb000 - 0x7fff30b20fff com.apple.CoreBluetooth (1.0 - 1) <AB95AA98-5CDC-3D4D-8478-C6595447837F> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff30b21000 - 0x7fff30b2afff com.apple.SymptomDiagnosticReporter (1.0 - 79.120.1) <99674A3B-7319-30F1-922E-D665D01794AF> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
0x7fff30b3e000 - 0x7fff30b4afff com.apple.AppleIDAuthSupport (1.0 - 1) <079E30CC-40B7-3363-9A41-F9A0DE9ED742> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff30b4b000 - 0x7fff30bf3fff com.apple.DiscRecording (9.0.3 - 9030.4.5) <55DD9802-821D-35F6-B21B-C96371FE46B4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff30bf4000 - 0x7fff30c27fff com.apple.MediaKit (16 - 927.40.2) <72F9BA2E-AF51-3E05-8DE4-00377CC79609> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff30c28000 - 0x7fff30d13fff com.apple.DiskManagement (14.0 - 1733.100.4) <6EAC9935-9B5A-3758-92D4-9E13CF570D3A> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff30d14000 - 0x7fff310cefff com.apple.CoreAUC (326.2.0 - 326.2.0) <A03BBCB7-69FA-3E37-AD91-734771D91045> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff310cf000 - 0x7fff310d2fff com.apple.Mangrove (1.0 - 25) <06E20B3A-83F6-36A3-96B8-9185D1B0A42D> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff310d3000 - 0x7fff31100fff com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <B7888146-5DE1-306C-8C9C-E98E763E3A4E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff31101000 - 0x7fff31250fff com.apple.FileProvider (348.8 - 348.8) <34DFD3C5-B489-3A7A-9EC2-3A1E2970F74D> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
0x7fff31251000 - 0x7fff31273fff com.apple.GenerationalStorage (2.0 - 323) <AF8A2D39-41B5-3229-B780-86622DB977FC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff316dc000 - 0x7fff31870fff com.apple.AVFCore (1.0 - 2015.22.4.1) <74A21338-3085-30C2-B847-115DE68E2C88> /System/Library/PrivateFrameworks/AVFCore.framework/Versions/A/AVFCore
0x7fff31871000 - 0x7fff318e0fff com.apple.FrontBoardServices (703.16 - 703.16) <2EC33C3E-5E19-39D0-A68B-49AEBA793A51> /System/Library/PrivateFrameworks/FrontBoardServices.framework/Versions/A/FrontBoardServices
0x7fff318e1000 - 0x7fff3190afff com.apple.BoardServices (1.0 - 526) <E3782FD7-8D04-3554-BEDF-EB5A95EFCB2F> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices
0x7fff3194c000 - 0x7fff31967fff com.apple.ExtensionKit (19.4 - 19.4) <4105ABB5-0569-3956-8B12-5B2B3F0B9FED> /System/Library/PrivateFrameworks/ExtensionKit.framework/Versions/A/ExtensionKit
0x7fff31968000 - 0x7fff3196efff com.apple.ExtensionFoundation (19.4 - 19.4) <B41921B6-F42C-3DFF-AAD6-E38CFD4489C0> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/Versions/A/ExtensionFoundation
0x7fff3196f000 - 0x7fff319b4fff com.apple.CryptoTokenKit (1.0 - 1) <E02C6EA3-A802-38A4-80A7-774B2DA3DB86> /System/Library/Frameworks/CryptoTokenKit.framework/Versions/A/CryptoTokenKit
0x7fff319b5000 - 0x7fff319cbfff com.apple.LocalAuthentication (1.0 - 827.120.2) <E618BEAF-CF4A-3D96-8495-412844D2023A> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
0x7fff319cc000 - 0x7fff319f9fff com.apple.CoreAuthentication.SharedUtils (1.0 - 827.120.2) <1095DB0A-7EE5-37A3-B0DC-7BB3DEE9E7BF> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils
0x7fff31a6e000 - 0x7fff31aaffff com.apple.CoreHaptics (1.0 - 1) <481EFBF3-57BA-3C79-B48A-271E5FCFC0F4> /System/Library/Frameworks/CoreHaptics.framework/Versions/A/CoreHaptics
0x7fff31abd000 - 0x7fff31afcfff com.apple.AppleVPAFramework (3.26.1 - 3.26.1) <32F14A37-1FAB-3216-B3FD-D1FA9E4790DC> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff31baf000 - 0x7fff31beafff com.apple.DebugSymbols (195.1 - 195.1) <A8313A86-04C7-37DC-A5D7-FF54EE39BC70> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff31beb000 - 0x7fff31ca0fff com.apple.CoreSymbolication (12.5 - 64544.69.1) <8D4E5AA8-8C09-31A7-AABE-AA9421781821> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff32b93000 - 0x7fff32bf6fff com.apple.framework.Apple80211 (17.0 - 1728) <6C1C9532-AD79-3E68-BFBB-2279AC8EA776> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff32bf7000 - 0x7fff32d48fff com.apple.CoreWiFi (3.0 - 341) <E1A3027C-0657-3609-8F5C-D89BF6B4B422> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff32d49000 - 0x7fff32d63fff com.apple.BackBoardServices (1.0 - 1.0) <9CDA42E0-5F41-3647-866A-D3C265B21A57> /System/Library/PrivateFrameworks/BackBoardServices.framework/Versions/A/BackBoardServices
0x7fff32d64000 - 0x7fff32d9bfff com.apple.LDAPFramework (2.4.28 - 194.5) <DDC1A94A-3537-3980-904B-31C54DA385C9> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff32d9c000 - 0x7fff32d9dfff com.apple.TrustEvaluationAgent (2.0 - 35) <736DE13E-CC75-3D3A-BE5B-AF75CC241E0B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff32d9e000 - 0x7fff32ea3fff libcrypto.44.dylib (56.60.2) <777B260D-CD90-3AE2-986E-2E4D021E6ACC> /usr/lib/libcrypto.44.dylib
0x7fff32ea4000 - 0x7fff32ed1fff libssl.46.dylib (56.60.2) <F2AE005F-3974-38D1-AA71-26201D27031F> /usr/lib/libssl.46.dylib
0x7fff32ed2000 - 0x7fff32f81fff com.apple.DiskImagesFramework (595.120.2 - 595.120.2) <443A6BBE-9265-3419-AFCA-2CDFB12902BE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff32fb9000 - 0x7fff32fc8fff com.apple.RemoteServiceDiscovery (1.0 - 1.120.1) <00009125-85E9-3214-9CA3-EC1AB4EF8D77> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
0x7fff33026000 - 0x7fff33029fff com.apple.help (1.3.8 - 71) <F8B97715-17C5-3789-8B89-5F08EFB70709> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff3302a000 - 0x7fff33031fff com.apple.EFILogin (2.0 - 2) <32EC4CD5-A6BD-31E9-BE52-BF79845F9EDB> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff33032000 - 0x7fff3303dfff libcsfde.dylib (554) <D4C66851-FDFC-3B94-8B21-DCA76BDFE724> /usr/lib/libcsfde.dylib
0x7fff3303e000 - 0x7fff330a4fff libcurl.4.dylib (121.100.3) <5701AB53-D57D-38AE-8E76-ADBC03205B84> /usr/lib/libcurl.4.dylib
0x7fff330a5000 - 0x7fff330acfff com.apple.LoginUICore (4.0 - 4.0) <B3A81901-6B1B-380D-81B9-16607D66ED67> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
0x7fff330ad000 - 0x7fff3310ffff com.apple.AppSupport (1.0.0 - 29) <92721008-EEA9-3487-8609-FF41ADAAA3FF> /System/Library/PrivateFrameworks/AppSupport.framework/Versions/A/AppSupport
0x7fff331af000 - 0x7fff33273fff com.apple.GameController (1.0 - 1) <C9271A39-E03C-3E08-BE5E-43DEA43BE46C> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x7fff3327c000 - 0x7fff3327cfff com.apple.ApplicationServices (48 - 50) <374F91E8-9983-363E-B1E1-85CEB46A5D1E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff3343e000 - 0x7fff3347dfff com.apple.AppleIDSSOAuthentication (1.0 - 1) <ADF094F3-BEDB-39E6-8B1B-916C22204DA0> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/Versions/A/AppleIDSSOAuthentication
0x7fff33591000 - 0x7fff33591fff libHeimdalProxy.dylib (79) <68F67BFE-F1E8-341C-A065-08954EF3F684> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
0x7fff33644000 - 0x7fff33644fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <CD5DF240-D8F7-3349-88DC-423962E5A289> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff33668000 - 0x7fff336abfff com.apple.StreamingZip (1.0 - 1) <D5CEAC33-8D9C-3D74-9E5D-909F86441F4D> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
0x7fff33757000 - 0x7fff33f58fff com.apple.vision.EspressoFramework (1.0 - 256.4.4) <2EBDF634-79CA-3977-9475-F972111CD0D8> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
0x7fff33f59000 - 0x7fff33f70fff com.apple.ANEServices (4.75 - 4.75) <B9463BEA-1D41-3752-9B6B-23030C33E91D> /System/Library/PrivateFrameworks/ANEServices.framework/Versions/A/ANEServices
0x7fff34613000 - 0x7fff34663fff com.apple.ChunkingLibrary (334.1 - 334.1) <27ED7D22-A3D4-3161-A5DF-485711DB2F48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff34ed7000 - 0x7fff34eecfff com.apple.CoreML.AppleNeuralEngine (1.0 - 1) <45EF4CAF-6202-303F-BB4F-8CC0EC8AE20B> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/Versions/A/AppleNeuralEngine
0x7fff3506f000 - 0x7fff35072fff com.apple.Cocoa (6.11 - 23) <2686C6E1-1182-34AA-9A3A-F7BC19DED4CB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff350bc000 - 0x7fff354a8fff com.apple.AppleMediaServices (1.0 - 1) <8876688A-EB71-3DA0-B5A8-08FC2AED0EE0> /System/Library/PrivateFrameworks/AppleMediaServices.framework/Versions/A/AppleMediaServices
0x7fff364e0000 - 0x7fff36503fff com.apple.openscripting (1.7 - 190) <9EAC55CC-0ECC-3B41-BF97-53C32496C689> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff36504000 - 0x7fff36507fff com.apple.securityhi (9.0 - 55008) <56A728F6-162E-31DE-9C29-FB1BE44C6B89> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff36508000 - 0x7fff3650bfff com.apple.ink.framework (10.15 - 227) <65FAEF94-F18C-30E0-8129-952DE19A5FAF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff3650c000 - 0x7fff3650ffff com.apple.CommonPanels (1.2.6 - 101) <45DFDB05-1408-34B4-A2AD-5416C5176C26> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff36510000 - 0x7fff36517fff com.apple.ImageCapture (1711.5.2 - 1711.5.2) <E3BCD3B4-4792-390D-890B-B7A860088A4C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff37770000 - 0x7fff37882fff com.apple.AVFCapture (1.0 - 82.6) <30FBE4F0-8C28-3C34-9F0E-C4B6BF0A631B> /System/Library/PrivateFrameworks/AVFCapture.framework/Versions/A/AVFCapture
0x7fff37883000 - 0x7fff37916fff com.apple.Quagga (47 - 47) <B3799C11-61CD-3312-8B52-3437352F819F> /System/Library/PrivateFrameworks/Quagga.framework/Versions/A/Quagga
0x7fff37917000 - 0x7fff37b61fff com.apple.CMCapture (1.0 - 82.6) <C539C9A9-C030-36BA-B0CD-4FBDA9B8EFEF> /System/Library/PrivateFrameworks/CMCapture.framework/Versions/A/CMCapture
0x7fff3bda9000 - 0x7fff3be40fff com.apple.AirPlaySync (1.0 - 2775.22) <40966FF0-FE78-3C88-A842-AA3340DE5F21> /System/Library/PrivateFrameworks/AirPlaySync.framework/Versions/A/AirPlaySync
0x7fff3ca51000 - 0x7fff3ca54fff com.apple.print.framework.Print (15 - 271) <5A0FE511-37C2-3065-9066-34F8F9EA23E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff3ca55000 - 0x7fff3ca58fff com.apple.Carbon (160 - 164) <967F26C3-8582-3A33-945F-DDA8F103B2E2> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff3cb51000 - 0x7fff3cb51fff com.apple.avfoundation (2.0 - 2015.22.4.1) <8605C616-EB49-3FCE-9489-6CA5CFCDD006> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff3cd0b000 - 0x7fff3cd2afff com.apple.private.SystemPolicy (1.0 - 1) <CAB3E8CD-1F31-343F-ABC1-9448543F211F> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
0x7fff3d307000 - 0x7fff3d30dfff com.apple.FeatureFlagsSupport (1.0 - 28.60.1) <F106091B-B810-320D-902B-8CEE1F10CF17> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/Versions/A/FeatureFlagsSupport
0x7fff3d645000 - 0x7fff3d650fff com.apple.MallocStackLogging (1.0 - 1) <394E6F65-386E-3488-BD68-1D3C2418694B> /System/Library/PrivateFrameworks/MallocStackLogging.framework/Versions/A/MallocStackLogging
0x7fff3d665000 - 0x7fff3d677fff libmis.dylib (274.120.2) <1DE29019-5ECB-3BE2-8492-2385ED241950> /usr/lib/libmis.dylib
0x7fff3d678000 - 0x7fff3d67bfff com.apple.gpusw.GPURawCounter (20.3 - 12.0) <EBB93DE3-AFE7-34FE-A194-7DFC62FFB9AA> /System/Library/PrivateFrameworks/GPURawCounter.framework/Versions/A/GPURawCounter
0x7fff40e9b000 - 0x7fff40ea4fff com.apple.IOAccelMemoryInfo (1.0 - 1) <0BBA14A6-C060-3759-9B5E-4EDFEABED297> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
0x7fff41327000 - 0x7fff41345fff libCGInterfaces.dylib (544.4) <02C89930-F64D-354E-8C18-F3DDB419DC8D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff438d0000 - 0x7fff43b43fff com.apple.RawCamera.bundle (9.10.0 - 1450.3) <408A3DFB-B3D3-3C15-88BB-16076BDFC74B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff47a4a000 - 0x7fff47a8afff com.apple.osanalytics.OSAnalytics (1.0 - 1) <96B8D855-E10D-3E40-884F-DA0BBAE9F48F> /System/Library/PrivateFrameworks/OSAnalytics.framework/Versions/A/OSAnalytics
0x7fff516ea000 - 0x7fff51789fff com.apple.Symbolication (12.5 - 64544.70.1) <B57534E5-43D5-38CA-9A8C-A66EBDFB820A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff5400e000 - 0x7fff54044fff com.apple.ReplayKit (1.0 - 1) <59D119B2-5E26-3A57-9AE5-F85506AA3786> /System/Library/Frameworks/ReplayKit.framework/Versions/A/ReplayKit
0x7fff55638000 - 0x7fff5563bfff com.apple.ForceFeedback (1.0.6 - 1.0.6) <0AD42E37-140A-393A-BBE4-B0C342B0FEC1> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
0x7fff61e47000 - 0x7fff622d2fff com.apple.driver.AppleIntelSKLGraphicsMTLDriver (16.4.5 - 16.0.4) <0FCD0FB5-7749-3EAA-B779-456C91F34B75> /System/Library/Extensions/AppleIntelSKLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelSKLGraphicsMTLDriver
0x7fff6971a000 - 0x7fff6971efff libmetal_timestamp.dylib (31001.189) <89A82967-B14D-3109-B45E-34717156E60E> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/31001/Libraries/libmetal_timestamp.dylib
0x7fff6bb65000 - 0x7fff6bb6bfff libCoreFSCache.dylib (200.9) <12A2A7E7-39F7-30A5-AC0B-E09947417D3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff6bb6c000 - 0x7fff6bb70fff libCoreVMClient.dylib (200.9) <F8C4D017-075A-37B2-AE8D-8CEB5FE1BC9B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff6bb71000 - 0x7fff6bb80fff com.apple.opengl (18.5.9 - 18.5.9) <1422D0CA-C3E2-3309-8897-018E651CB74E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff6bb81000 - 0x7fff6bb83fff libCVMSPluginSupport.dylib (18.5.9) <AC7D4088-7CA8-3A0B-9B55-08427083C382> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff6bb84000 - 0x7fff6bb8cfff libGFXShared.dylib (18.5.9) <76ABDB4A-3687-39E0-B8FB-125717742431> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff6bb8d000 - 0x7fff6bbc0fff libGLImage.dylib (18.5.9) <750C938A-9F4F-3BAD-8D3F-03EF619F28AD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff6bbc1000 - 0x7fff6bbfdfff libGLU.dylib (18.5.9) <4A77F717-2BBC-3439-AE10-694E82C0A184> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff6bd92000 - 0x7fff6bd9cfff libGL.dylib (18.5.9) <95D5C72E-9352-39EC-83B1-6BB295A83462> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff6d1dc000 - 0x7fff6d234fff com.apple.opencl (4.6 - 4.6) <769BB23D-09E5-3A3A-B2EA-310157AA206D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff6dd5e000 - 0x7fff6df79fff com.apple.AMDMTLBronzeDriver (4.5.14 - 4.0.5) <B434F0E4-B0BD-3306-8387-412FFE8EC174> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
0x7fff6e2e6000 - 0x7fff6e3cdfff com.apple.audio.AVFAudio (1.0 - 477.87) <B762E01A-23A5-3F51-A1BE-EDDD5A2FDE4B> /System/Library/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff6f94b000 - 0x7fff6f95dfff com.apple.CMImaging (1.0 - 82.6) <AACD534A-7769-3B70-9C43-5F53FD726895> /System/Library/PrivateFrameworks/CMImaging.framework/Versions/A/CMImaging
0x7fff73c2b000 - 0x7fff73c36fff com.apple.SymptomAnalytics (1.0 - 1431.120.1) <897411F6-DB2B-34CD-ABDC-665A2C8D37E3> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/Versions/A/SymptomAnalytics
0x7fff73e4c000 - 0x7fff73e64fff com.apple.SymptomPresentationFeed (1.0 - 1431.120.1) <3CA4CFBB-1942-3BF2-B7C4-4F73FB4EE115> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/Versions/A/SymptomPresentationFeed
0x7fff779da000 - 0x7fff779e1fff libRosetta.dylib (203.46) <0A17EAFC-15E9-37FE-8EE2-DE0F7F220AD8> /usr/lib/libRosetta.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=744.5M resident=0K(0%) swapped_out_or_unallocated=744.5M(100%)
Writable regions: Total=273.9M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=273.9M(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 640K 5
Activity Tracing 256K 1
CG backing stores 3792K 6
CG image 120K 7
CoreAnimation 84K 8
CoreGraphics 12K 2
CoreUI image data 940K 8
Dispatch continuations 64.0M 1
Foundation 16K 1
IOKit 15.5M 2
Image IO 4K 1
Kernel Alloc Once 8K 1
MALLOC 187.7M 332
MALLOC guard page 32K 7
STACK GUARD 56.1M 16
Stack 15.6M 16
VM_ALLOCATE 680K 26
__DATA 15.8M 371
__DATA_CONST 15.0M 216
__DATA_DIRTY 693K 123
__FONT_DATA 4K 1
__LINKEDIT 501.1M 29
__OBJC_RO 70.2M 1
__OBJC_RW 2480K 2
__TEXT 243.5M 372
__UNICODE 588K 1
mapped file 68.5M 19
shared memory 1260K 13
=========== ======= =======
TOTAL 1.2G 1588
Model: MacBookPro13,3, BootROM 429.120.4.0.0, 4 processors, Quad-Core Intel Core i7, 2,6 GHz, 16 GB, SMC 2.38f12
Graphics: kHW_IntelHDGraphics530Item, Intel HD Graphics 530, spdisplays_builtin
Graphics: kHW_AMDRadeonPro450Item, AMD Radeon Pro 450, spdisplays_pcie_device, 2 GB
Memory Module: BANK 0/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
Memory Module: BANK 1/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x15A), Broadcom BCM43xx 1.0 (7.77.111.1 AirPortDriverBrcmNIC-1680.8)
Bluetooth: Version 8.0.5d7, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.0 Bus
USB Device: Apple T1 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.2
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.2
|
priority
|
macos segmentation fault on castle seige wrong forces disposition if attacked from own castle i noticed regular crashes on castle seige stack trace below also if you attach from your own castle enemy nearby the castle you will see like your enemy is in your castle but all towers will attach him process path users user identifier version code type native parent process bash responsible user id date time os version macos report version bridge os version anonymous uuid sleep wake uuid time awake since boot seconds time since wake seconds system integrity protection enabled crashed thread dispatch queue com apple main thread exception type exc bad access sigsegv exception codes kern invalid address at exception note exc corpse notify termination signal segmentation fault termination reason namespace signal code terminating process exc handler vm regions near text r x r x sm cow users thread crashed dispatch queue com apple main thread battle unit setcustomalpha unsigned int battle interface redrawactionsummonelementalspell battle unit battle arena applyactionspellcast battle command battle arena turntroop battle unit battle units const battle arena turns battle loader army army int actiontocastle heroes int heroes movestep bool heroes move bool interface basic humanturn bool interface basic startgame game startgame game maingameloop bool main libdyld dylib start thread amcp logging spool libsystem kernel dylib semaphore wait trap com apple audio caulk caulk mach semaphore wait or error com apple audio caulk caulk semaphore timed wait double com apple audio caulk caulk concurrent details worker thread run com apple audio caulk void caulk thread proxy void libsystem pthread dylib pthread start libsystem pthread dylib thread start thread audioqueue thread libsystem kernel dylib mach msg trap libsystem kernel dylib mach msg com apple corefoundation cfrunloopservicemachport com apple corefoundation cfrunlooprun com apple corefoundation cfrunlooprunspecific dylib audioqueue thread dylib sdl runthread dylib runthread libsystem pthread dylib pthread start libsystem pthread dylib thread start thread libsystem kernel dylib semaphore wait trap com apple audio caulk caulk mach semaphore wait or error com apple audio caulk caulk semaphore timed wait double com apple audio caulk caulk concurrent details worker thread run com apple audio caulk void caulk thread proxy void libsystem pthread dylib pthread start libsystem pthread dylib thread start thread aqconverterthread libsystem kernel dylib psynch cvwait libsystem pthread dylib pthread cond wait libaudiotoolboxutility dylib cadeprecated caguard wait com apple audio toolbox audiotoolbox aqconvertermanager aqconverterthread converterthreadentry void libaudiotoolboxutility dylib cadeprecated capthread entry cadeprecated capthread libsystem pthread dylib pthread start libsystem pthread dylib thread start thread com apple audio iothread client libsystem kernel dylib mach msg trap libsystem kernel dylib mach msg com apple audio coreaudio halb machport sendsimplemessagewithsimplereply unsigned int unsigned int int int bool unsigned int com apple audio coreaudio invocation function for block in halc proxyiocontext halc proxyiocontext unsigned int unsigned int com apple audio coreaudio halb iothread entry void libsystem pthread dylib pthread start libsystem pthread dylib thread start thread com apple nseventthread libsystem kernel dylib mach msg trap libsystem kernel dylib mach msg com apple corefoundation cfrunloopservicemachport com apple corefoundation cfrunlooprun com apple corefoundation cfrunlooprunspecific com apple appkit nseventthread libsystem pthread dylib pthread start libsystem pthread dylib thread start thread libsystem kernel dylib psynch cvwait libsystem pthread dylib pthread cond wait libc dylib std condition variable wait std unique lock agg asyncsoundmanager workerthread agg asyncsoundmanager void std thread proxy void agg asyncsoundmanager agg asyncsoundmanager void libsystem pthread dylib pthread start libsystem pthread dylib thread start thread sdltimer libsystem kernel dylib psynch cvwait libsystem pthread dylib pthread cond wait dylib sdl condwaittimeout real dylib sdl semwaittimeout real dylib sdl timerthread dylib sdl runthread dylib runthread libsystem pthread dylib pthread start libsystem pthread dylib thread start thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread dispatch queue com metal commandqueuedispatch libsystem kernel dylib semaphore wait trap libdispatch dylib dispatch wait libdispatch dylib dispatch semaphore wait slow com apple metal libdispatch dylib dispatch client callout libdispatch dylib dispatch continuation pop libdispatch dylib dispatch source invoke libdispatch dylib dispatch lane serial drain libdispatch dylib dispatch lane invoke libdispatch dylib dispatch workloop worker thread libsystem pthread dylib pthread wqthread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread dispatch queue com apple coreanimation imagequeue pageoff libsystem kernel dylib mach msg trap libsystem kernel dylib mach msg com apple framework iokit io connect method com apple framework iokit ioconnectcallmethod com apple iosurface iosurfaceclientbindaccel com apple quartzcore caimagequeueinsertimage block invoke libdispatch dylib dispatch call block and release libdispatch dylib dispatch client callout libdispatch dylib dispatch lane serial drain libdispatch dylib dispatch lane invoke libdispatch dylib dispatch workloop worker thread libsystem pthread dylib pthread wqthread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread crashed with thread state bit rax rbx rcx rdx rdi rsi rbp rsp rip rfl logical cpu error code no mapping for user data write trap number thread instruction stream h m h h ea u t u bf be u d fc c w d s d uh fb ff h f uh uh uh fb ff h f uh fb ff h r f uh fb df ce fb sph h h ff df fb ff h h f thread last branch register state not available binary images users user dylib usr local opt lib dylib mixer dylib usr local opt mixer lib mixer dylib ttf dylib usr local opt ttf lib ttf dylib libmodplug dylib usr local opt libmodplug lib libmodplug dylib libvorbisfile dylib usr local opt libvorbis lib libvorbisfile dylib libvorbis dylib usr local opt libvorbis lib libvorbis dylib libflac dylib usr local opt flac lib libflac dylib libogg dylib usr local opt libogg lib libogg dylib libfreetype dylib usr local opt freetype lib libfreetype dylib dylib usr local opt libpng lib dylib libobjc trampolines dylib usr lib libobjc trampolines dylib com apple audio applehdahalplugin system library extensions applehda kext contents plugins applehdahalplugin bundle contents macos applehdahalplugin dyld usr lib dyld com apple audio units components system library components coreaudio component contents macos coreaudio libsystem blocks dylib usr lib system libsystem blocks dylib libxpc dylib usr lib system libxpc dylib libsystem trace dylib usr lib system libsystem trace dylib libcorecrypto dylib usr lib system libcorecrypto dylib libsystem malloc dylib usr lib system libsystem malloc dylib libdispatch dylib usr lib system libdispatch dylib libobjc a dylib usr lib libobjc a dylib libsystem featureflags dylib usr lib system libsystem featureflags dylib libsystem c dylib usr lib system libsystem c dylib libc dylib usr lib libc dylib libc abi dylib usr lib libc abi dylib libsystem kernel dylib usr lib system libsystem kernel dylib libsystem pthread dylib usr lib system libsystem pthread dylib libdyld dylib usr lib system libdyld dylib libsystem platform dylib usr lib system libsystem platform dylib libsystem info dylib usr lib system libsystem info dylib com apple corefoundation system library frameworks corefoundation framework versions a corefoundation com apple launchservices system library frameworks coreservices framework versions a frameworks launchservices framework versions a launchservices com apple gpusw metaltools system library privateframeworks metaltools framework versions a metaltools libblas dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libblas dylib com apple lexicon framework system library privateframeworks lexicon framework versions a lexicon libsparse dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libsparse dylib com apple systemconfiguration system library frameworks systemconfiguration framework versions a systemconfiguration libcrfsuite dylib usr lib libcrfsuite dylib libmecabra dylib usr lib libmecabra dylib com apple foundation system library frameworks foundation framework versions c foundation com apple languagemodeling system library privateframeworks languagemodeling framework versions a languagemodeling com apple coredisplay system library frameworks coredisplay framework versions a coredisplay com apple audio audiotoolboxcore system library privateframeworks audiotoolboxcore framework versions a audiotoolboxcore com apple coretext system library frameworks coretext framework versions a coretext com apple audio coreaudio system library frameworks coreaudio framework versions a coreaudio com apple security system library frameworks security framework versions a security libicucore a dylib usr lib libicucore a dylib libsystem darwin dylib usr lib system libsystem darwin dylib com apple coreservices carboncore system library frameworks coreservices framework versions a frameworks carboncore framework versions a carboncore com apple coreservicesinternal system library privateframeworks coreservicesinternal framework versions a coreservicesinternal com apple csstore system library privateframeworks coreservicesstore framework versions a coreservicesstore com apple framework iokit system library frameworks iokit framework versions a iokit libsystem notify dylib usr lib system libsystem notify dylib libsandbox dylib usr lib libsandbox dylib com apple appkit system library frameworks appkit framework versions c appkit com apple uifoundation system library privateframeworks uifoundation framework versions a uifoundation com apple uniformtypeidentifiers system library frameworks uniformtypeidentifiers framework versions a uniformtypeidentifiers com apple desktopservices system library privateframeworks desktopservicespriv framework versions a desktopservicespriv libnetwork dylib usr lib libnetwork dylib com apple cfnetwork system library frameworks cfnetwork framework versions a cfnetwork libsystem networkextension dylib usr lib system libsystem networkextension dylib libenergytrace dylib usr lib libenergytrace dylib libmobilegestalt dylib usr lib libmobilegestalt dylib libsystem asl dylib usr lib system libsystem asl dylib com apple tcc system library privateframeworks tcc framework versions a tcc com apple skylight system library privateframeworks skylight framework versions a skylight com apple coregraphics system library frameworks coregraphics framework versions a coregraphics com apple colorsync system library frameworks colorsync framework versions a colorsync com apple hiservices system library frameworks applicationservices framework versions a frameworks hiservices framework versions a hiservices com apple coredata system library frameworks coredata framework versions a coredata com apple protocolbuffer system library privateframeworks protocolbuffer framework versions a protocolbuffer dylib usr lib dylib com apple accounts system library frameworks accounts framework versions a accounts com apple commonutilities system library privateframeworks commonutilities framework versions a commonutilities com apple baseboard system library privateframeworks baseboard framework versions a baseboard com apple runningboardservices system library privateframeworks runningboardservices framework versions a runningboardservices com apple ae system library frameworks coreservices framework versions a frameworks ae framework versions a ae libdns services dylib usr lib libdns services dylib libsystem symptoms dylib usr lib system libsystem symptoms dylib com apple network system library frameworks network framework versions a network com apple analyticsd system library privateframeworks coreanalytics framework versions a coreanalytics libdiagnosticmessagesclient dylib usr lib libdiagnosticmessagesclient dylib com apple spotlight metadata utilities system library privateframeworks metadatautilities framework versions a metadatautilities com apple metadata system library frameworks coreservices framework versions a frameworks metadata framework versions a metadata com apple diskarbitration system library frameworks diskarbitration framework versions a diskarbitration com apple vimage system library frameworks accelerate framework versions a frameworks vimage framework versions a vimage com apple quartzcore system library frameworks quartzcore framework versions a quartzcore libfontregistry dylib system library frameworks applicationservices framework versions a frameworks ats framework versions a resources libfontregistry dylib com apple coreui system library privateframeworks coreui framework versions a coreui com apple viewbridge system library privateframeworks viewbridge framework versions a viewbridge com apple performanceanalysis system library privateframeworks performanceanalysis framework versions a performanceanalysis com apple opendirectory system library frameworks opendirectory framework versions a opendirectory com apple cfopendirectory system library frameworks opendirectory framework versions a frameworks cfopendirectory framework versions a cfopendirectory com apple coreservices fsevents system library frameworks coreservices framework versions a frameworks fsevents framework versions a fsevents com apple coreservices sharedfilelist system library frameworks coreservices framework versions a frameworks sharedfilelist framework versions a sharedfilelist libapp launch measurement dylib usr lib libapp launch measurement dylib com apple coreautolayout system library privateframeworks coreautolayout framework versions a coreautolayout dylib usr lib dylib com apple corevideo system library frameworks corevideo framework versions a corevideo com apple loginsupport system library privateframeworks login framework versions a frameworks loginsupport framework versions a loginsupport com apple usermanagement system library privateframeworks usermanagement framework versions a usermanagement libsystem containermanager dylib usr lib system libsystem containermanager dylib com apple iosurface system library frameworks iosurface framework versions a iosurface com apple ioaccelerator system library privateframeworks ioaccelerator framework versions a ioaccelerator com apple metal system library frameworks metal framework versions a metal com apple audio caulk system library privateframeworks caulk framework versions a caulk com apple coremedia system library frameworks coremedia framework versions a coremedia libfontparser dylib system library privateframeworks fontservices framework libfontparser dylib com apple hitoolbox system library frameworks carbon framework versions a frameworks hitoolbox framework versions a hitoolbox com apple framework dfrfoundation system library privateframeworks dfrfoundation framework versions a dfrfoundation com apple dt xcttargetbootstrap system library privateframeworks xcttargetbootstrap framework versions a xcttargetbootstrap com apple coresvg system library privateframeworks coresvg framework versions a coresvg com apple imageio system library frameworks imageio framework versions a imageio com apple coreimage system library frameworks coreimage framework versions a coreimage com apple metalperformanceshaders mpscore system library frameworks metalperformanceshaders framework versions a frameworks mpscore framework versions a mpscore libsystem configuration dylib usr lib system libsystem configuration dylib libsystem sandbox dylib usr lib system libsystem sandbox dylib com apple aggregatedictionary system library privateframeworks aggregatedictionary framework versions a aggregatedictionary com apple applesysteminfo system library privateframeworks applesysteminfo framework versions a applesysteminfo liblangid dylib usr lib liblangid dylib com apple corenlp system library privateframeworks corenlp framework versions a corenlp com apple linguisticdata system library privateframeworks linguisticdata framework versions a linguisticdata libbnns dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libbnns dylib libvdsp dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libvdsp dylib com apple coreemoji system library privateframeworks coreemoji framework versions a coreemoji com apple iomobileframebuffer system library privateframeworks iomobileframebuffer framework versions a iomobileframebuffer com apple framework corewlan system library frameworks corewlan framework versions a corewlan com apple coreutils system library privateframeworks coreutils framework versions a coreutils com apple mobilekeybag system library privateframeworks mobilekeybag framework versions a mobilekeybag com apple assertionservices system library privateframeworks assertionservices framework versions a assertionservices com apple securityfoundation system library frameworks securityfoundation framework versions a securityfoundation com apple coreservices backgroundtaskmanagement system library privateframeworks backgroundtaskmanagement framework versions a backgroundtaskmanagement com apple xpc servicemanagement system library frameworks servicemanagement framework versions a servicemanagement libquarantine dylib usr lib system libquarantine dylib libcheckfix dylib usr lib libcheckfix dylib libcoretls dylib usr lib libcoretls dylib libbsm dylib usr lib libbsm dylib libmecab dylib usr lib libmecab dylib libgermantok dylib usr lib libgermantok dylib liblinearalgebra dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a liblinearalgebra dylib com apple metalperformanceshaders mpsneuralnetwork system library frameworks metalperformanceshaders framework versions a frameworks mpsneuralnetwork framework versions a mpsneuralnetwork com apple metalperformanceshaders mpsrayintersector system library frameworks metalperformanceshaders framework versions a frameworks mpsrayintersector framework versions a mpsrayintersector com apple mlcompute system library frameworks mlcompute framework versions a mlcompute com apple metalperformanceshaders mpsmatrix system library frameworks metalperformanceshaders framework versions a frameworks mpsmatrix framework versions a mpsmatrix com apple metalperformanceshaders mpsndarray system library frameworks metalperformanceshaders framework versions a frameworks mpsndarray framework versions a mpsndarray com apple metalperformanceshaders mpsimage system library frameworks metalperformanceshaders framework versions a frameworks mpsimage framework versions a mpsimage com apple applefscompression system library privateframeworks applefscompression framework versions a applefscompression dylib usr lib dylib libsystem coreservices dylib usr lib system libsystem coreservices dylib com apple coreservices osservices system library frameworks coreservices framework versions a frameworks osservices framework versions a osservices com apple authkit system library privateframeworks authkit framework versions a authkit com apple usernotifications system library frameworks usernotifications framework versions a usernotifications libz dylib usr lib libz dylib libsystem m dylib usr lib system libsystem m dylib libcharset dylib usr lib libcharset dylib libmacho dylib usr lib system libmacho dylib libkxld dylib usr lib system libkxld dylib libcommoncrypto dylib usr lib system libcommoncrypto dylib libunwind dylib usr lib system libunwind dylib liboah dylib usr lib liboah dylib libcopyfile dylib usr lib system libcopyfile dylib libcompiler rt dylib usr lib system libcompiler rt dylib libsystem collections dylib usr lib system libsystem collections dylib libsystem secinit dylib usr lib system libsystem secinit dylib libremovefile dylib usr lib system libremovefile dylib libkeymgr dylib usr lib system libkeymgr dylib libsystem dnssd dylib usr lib system libsystem dnssd dylib libcache dylib usr lib system libcache dylib libsystem b dylib usr lib libsystem b dylib libfakelink dylib usr lib libfakelink dylib com apple softlinking system library privateframeworks softlinking framework versions a softlinking libpcap a dylib usr lib libpcap a dylib libiconv dylib usr lib libiconv dylib libcmph dylib usr lib libcmph dylib libarchive dylib usr lib libarchive dylib com apple searchkit system library frameworks coreservices framework versions a frameworks searchkit framework versions a searchkit libthaitokenizer dylib usr lib libthaitokenizer dylib com apple applesauce system library privateframeworks applesauce framework versions a applesauce libapple dylib usr lib libapple dylib libsparseblas dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libsparseblas dylib com apple metalperformanceshaders metalperformanceshaders system library frameworks metalperformanceshaders framework versions a metalperformanceshaders libpam dylib usr lib libpam dylib libcompression dylib usr lib libcompression dylib libquadrature dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libquadrature dylib liblapack dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a liblapack dylib com apple dictionaryservices system library frameworks coreservices framework versions a frameworks dictionaryservices framework versions a dictionaryservices liblzma dylib usr lib liblzma dylib libcoretls cfhelpers dylib usr lib libcoretls cfhelpers dylib com apple apfs system library privateframeworks apfs framework versions a apfs libxar dylib usr lib libxar dylib libutil dylib usr lib libutil dylib libxslt dylib usr lib libxslt dylib libchinesetokenizer dylib usr lib libchinesetokenizer dylib libvmisc dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libvmisc dylib libate dylib usr lib libate dylib libioreport dylib usr lib libioreport dylib com apple crashreportersupport system library privateframeworks crashreportersupport framework versions a crashreportersupport com apple pluginkit framework system library privateframeworks pluginkit framework versions a pluginkit libmatch dylib usr lib libmatch dylib libcorestorage dylib usr lib libcorestorage dylib com apple applevaframework system library privateframeworks appleva framework versions a appleva libexpat dylib usr lib libexpat dylib libheimdal dylib usr lib libheimdal dylib com apple iconfoundation system library privateframeworks iconfoundation framework versions a iconfoundation com apple iconservices system library privateframeworks iconservices framework versions a iconservices com apple mediaexperience system library privateframeworks mediaexperience framework versions a mediaexperience com apple persistentconnection system library privateframeworks persistentconnection framework versions a persistentconnection com apple graphvisualizer system library privateframeworks graphvisualizer framework versions a graphvisualizer com apple vision facecore system library privateframeworks facecore framework versions a facecore com apple otsvg system library privateframeworks otsvg framework versions a otsvg com apple xpc appserversupport system library privateframeworks appserversupport framework versions a appserversupport libhvf dylib system library privateframeworks fontservices framework libhvf dylib libspindump dylib usr lib libspindump dylib com apple heimdal system library privateframeworks heimdal framework versions a heimdal com apple login system library privateframeworks login framework versions a login libodfde dylib usr lib libodfde dylib com apple bom system library privateframeworks bom framework versions a bom com apple applejpeg system library privateframeworks applejpeg framework versions a applejpeg dylib system library frameworks imageio framework versions a resources dylib com apple watchdogclient framework system library privateframeworks watchdogclient framework versions a watchdogclient com apple multitouchsupport framework system library privateframeworks multitouchsupport framework versions a multitouchsupport com apple videotoolbox system library frameworks videotoolbox framework versions a videotoolbox libaudiotoolboxutility dylib usr lib libaudiotoolboxutility dylib libpng dylib system library frameworks imageio framework versions a resources libpng dylib libtiff dylib system library frameworks imageio framework versions a resources libtiff dylib com apple iopresentment system library privateframeworks iopresentment framework versions a iopresentment com apple gpuwrangler system library privateframeworks gpuwrangler framework versions a gpuwrangler libradiance dylib system library frameworks imageio framework versions a resources libradiance dylib com apple dsexternaldisplay system library privateframeworks dsexternaldisplay framework versions a dsexternaldisplay libjpeg dylib system library frameworks imageio framework versions a resources libjpeg dylib com apple atsui system library frameworks applicationservices framework versions a frameworks atsui framework versions a atsui libgif dylib system library frameworks imageio framework versions a resources libgif dylib com apple cmcapturecore system library privateframeworks cmcapturecore framework versions a cmcapturecore com apple print framework printcore system library frameworks applicationservices framework versions a frameworks printcore framework versions a printcore com apple textureio system library privateframeworks textureio framework versions a textureio com apple internationalsupport system library privateframeworks internationalsupport framework versions a internationalsupport com apple datadetectorscore system library privateframeworks datadetectorscore framework versions a datadetectorscore com apple useractivity system library privateframeworks useractivity framework versions a useractivity com apple mediatoolbox system library frameworks mediatoolbox framework versions a mediatoolbox libsessionutility dylib system library privateframeworks audiosession framework libsessionutility dylib com apple audio toolbox audiotoolbox system library frameworks audiotoolbox framework versions a audiotoolbox com apple audio audiosession system library privateframeworks audiosession framework versions a audiosession libaudiostatistics dylib usr lib libaudiostatistics dylib com apple speech synthesis framework system library frameworks applicationservices framework versions a frameworks speechsynthesis framework versions a speechsynthesis com apple applicationservices ats system library frameworks applicationservices framework versions a frameworks ats framework versions a ats libresolv dylib usr lib libresolv dylib dylib usr lib dylib com apple coremediaio system library frameworks coremediaio framework versions a coremediaio libsmc dylib usr lib libsmc dylib libcups dylib usr lib libcups dylib com apple langanalysis system library frameworks applicationservices framework versions a frameworks langanalysis framework versions a langanalysis com apple netauth system library privateframeworks netauth framework versions a netauth com apple colorsynclegacy system library frameworks applicationservices framework versions a frameworks colorsynclegacy framework versions a colorsynclegacy com apple qd system library frameworks applicationservices framework versions a frameworks qd framework versions a qd com apple audio audioresourcearbitration system library privateframeworks audioresourcearbitration framework versions a audioresourcearbitration com apple perfdata system library privateframeworks perfdata framework versions a perfdata libperfcheck dylib usr lib libperfcheck dylib com apple kerberos system library frameworks kerberos framework versions a kerberos com apple gss system library frameworks gss framework versions a gss com apple commonauth system library privateframeworks commonauth framework versions a commonauth com apple mobileassets system library privateframeworks mobileasset framework versions a mobileasset com apple security keychaincircle keychaincircle system library privateframeworks keychaincircle framework versions a keychaincircle com apple corephonenumbers system library privateframeworks corephonenumbers framework versions a corephonenumbers liblaunch dylib usr lib system liblaunch dylib com apple sharing system library privateframeworks sharing framework versions a sharing com apple bluetooth system library frameworks iobluetooth framework versions a iobluetooth com apple protectedcloudstorage system library privateframeworks protectedcloudstorage framework versions a protectedcloudstorage com apple directoryservice framework system library frameworks directoryservice framework versions a directoryservice com apple remoteviewservices system library privateframeworks remoteviewservices framework versions a remoteviewservices com apple speechrecognitioncore system library privateframeworks speechrecognitioncore framework versions a speechrecognitioncore com apple speech recognition framework system library frameworks carbon framework versions a frameworks speechrecognition framework versions a speechrecognition libsystem product info filter dylib usr lib system libsystem product info filter dylib com apple accelerate veclib veclib system library frameworks accelerate framework versions a frameworks veclib framework versions a veclib com apple coreservices system library frameworks coreservices framework versions a coreservices com apple accelerate accelerate system library frameworks accelerate framework versions a accelerate com apple mediaaccessibility system library frameworks mediaaccessibility framework versions a mediaaccessibility com apple networking algosscoreframework system library privateframeworks algosscoreframework framework versions a algosscoreframework com apple applesrp system library privateframeworks applesrp framework versions a applesrp com apple frameworks coredaemon system library privateframeworks coredaemon framework versions b coredaemon com apple framework systemadministration system library privateframeworks systemadministration framework versions a systemadministration com apple corebluetooth system library frameworks corebluetooth framework versions a corebluetooth com apple symptomdiagnosticreporter system library privateframeworks symptomdiagnosticreporter framework versions a symptomdiagnosticreporter com apple appleidauthsupport system library privateframeworks appleidauthsupport framework versions a appleidauthsupport com apple discrecording system library frameworks discrecording framework versions a discrecording com apple mediakit system library privateframeworks mediakit framework versions a mediakit com apple diskmanagement system library privateframeworks diskmanagement framework versions a diskmanagement com apple coreauc system library privateframeworks coreauc framework versions a coreauc com apple mangrove system library privateframeworks mangrove framework versions a mangrove com apple coreavchd system library privateframeworks coreavchd framework versions a coreavchd com apple fileprovider system library frameworks fileprovider framework versions a fileprovider com apple generationalstorage system library privateframeworks generationalstorage framework versions a generationalstorage com apple avfcore system library privateframeworks avfcore framework versions a avfcore com apple frontboardservices system library privateframeworks frontboardservices framework versions a frontboardservices com apple boardservices system library privateframeworks boardservices framework versions a boardservices com apple extensionkit system library privateframeworks extensionkit framework versions a extensionkit com apple extensionfoundation system library privateframeworks extensionfoundation framework versions a extensionfoundation com apple cryptotokenkit system library frameworks cryptotokenkit framework versions a cryptotokenkit com apple localauthentication system library frameworks localauthentication framework versions a localauthentication com apple coreauthentication sharedutils system library frameworks localauthentication framework support sharedutils framework versions a sharedutils com apple corehaptics system library frameworks corehaptics framework versions a corehaptics com apple applevpaframework system library privateframeworks applevpa framework versions a applevpa com apple debugsymbols system library privateframeworks debugsymbols framework versions a debugsymbols com apple coresymbolication system library privateframeworks coresymbolication framework versions a coresymbolication com apple framework system library privateframeworks framework versions a com apple corewifi system library privateframeworks corewifi framework versions a corewifi com apple backboardservices system library privateframeworks backboardservices framework versions a backboardservices com apple ldapframework system library frameworks ldap framework versions a ldap com apple trustevaluationagent system library privateframeworks trustevaluationagent framework versions a trustevaluationagent libcrypto dylib usr lib libcrypto dylib libssl dylib usr lib libssl dylib com apple diskimagesframework system library privateframeworks diskimages framework versions a diskimages com apple remoteservicediscovery system library privateframeworks remoteservicediscovery framework versions a remoteservicediscovery com apple help system library frameworks carbon framework versions a frameworks help framework versions a help com apple efilogin system library privateframeworks efilogin framework versions a efilogin libcsfde dylib usr lib libcsfde dylib libcurl dylib usr lib libcurl dylib com apple loginuicore system library privateframeworks loginuikit framework versions a frameworks loginuicore framework versions a loginuicore com apple appsupport system library privateframeworks appsupport framework versions a appsupport com apple gamecontroller system library frameworks gamecontroller framework versions a gamecontroller com apple applicationservices system library frameworks applicationservices framework versions a applicationservices com apple appleidssoauthentication system library privateframeworks appleidssoauthentication framework versions a appleidssoauthentication libheimdalproxy dylib system library frameworks kerberos framework versions a libraries libheimdalproxy dylib com apple audio units audiounit system library frameworks audiounit framework versions a audiounit com apple streamingzip system library privateframeworks streamingzip framework versions a streamingzip com apple vision espressoframework system library privateframeworks espresso framework versions a espresso com apple aneservices system library privateframeworks aneservices framework versions a aneservices com apple chunkinglibrary system library privateframeworks chunkinglibrary framework versions a chunkinglibrary com apple coreml appleneuralengine system library privateframeworks appleneuralengine framework versions a appleneuralengine com apple cocoa system library frameworks cocoa framework versions a cocoa com apple applemediaservices system library privateframeworks applemediaservices framework versions a applemediaservices com apple openscripting system library frameworks carbon framework versions a frameworks openscripting framework versions a openscripting com apple securityhi system library frameworks carbon framework versions a frameworks securityhi framework versions a securityhi com apple ink framework system library frameworks carbon framework versions a frameworks ink framework versions a ink com apple commonpanels system library frameworks carbon framework versions a frameworks commonpanels framework versions a commonpanels com apple imagecapture system library frameworks carbon framework versions a frameworks imagecapture framework versions a imagecapture com apple avfcapture system library privateframeworks avfcapture framework versions a avfcapture com apple quagga system library privateframeworks quagga framework versions a quagga com apple cmcapture system library privateframeworks cmcapture framework versions a cmcapture com apple airplaysync system library privateframeworks airplaysync framework versions a airplaysync com apple print framework print system library frameworks carbon framework versions a frameworks print framework versions a print com apple carbon system library frameworks carbon framework versions a carbon com apple avfoundation system library frameworks avfoundation framework versions a avfoundation com apple private systempolicy system library privateframeworks systempolicy framework versions a systempolicy com apple featureflagssupport system library privateframeworks featureflagssupport framework versions a featureflagssupport com apple mallocstacklogging system library privateframeworks mallocstacklogging framework versions a mallocstacklogging libmis dylib usr lib libmis dylib com apple gpusw gpurawcounter system library privateframeworks gpurawcounter framework versions a gpurawcounter com apple ioaccelmemoryinfo system library privateframeworks ioaccelmemoryinfo framework versions a ioaccelmemoryinfo libcginterfaces dylib system library frameworks accelerate framework versions a frameworks vimage framework versions a libraries libcginterfaces dylib com apple rawcamera bundle system library coreservices rawcamera bundle contents macos rawcamera com apple osanalytics osanalytics system library privateframeworks osanalytics framework versions a osanalytics com apple symbolication system library privateframeworks symbolication framework versions a symbolication com apple replaykit system library frameworks replaykit framework versions a replaykit com apple forcefeedback system library frameworks forcefeedback framework versions a forcefeedback com apple driver appleintelsklgraphicsmtldriver system library extensions appleintelsklgraphicsmtldriver bundle contents macos appleintelsklgraphicsmtldriver libmetal timestamp dylib system library privateframeworks gpucompiler framework versions libraries libmetal timestamp dylib libcorefscache dylib system library frameworks opengl framework versions a libraries libcorefscache dylib libcorevmclient dylib system library frameworks opengl framework versions a libraries libcorevmclient dylib com apple opengl system library frameworks opengl framework versions a opengl libcvmspluginsupport dylib system library frameworks opengl framework versions a libraries libcvmspluginsupport dylib libgfxshared dylib system library frameworks opengl framework versions a libraries libgfxshared dylib libglimage dylib system library frameworks opengl framework versions a libraries libglimage dylib libglu dylib system library frameworks opengl framework versions a libraries libglu dylib libgl dylib system library frameworks opengl framework versions a libraries libgl dylib com apple opencl system library frameworks opencl framework versions a opencl com apple amdmtlbronzedriver system library extensions amdmtlbronzedriver bundle contents macos amdmtlbronzedriver com apple audio avfaudio system library frameworks avfaudio framework versions a avfaudio com apple cmimaging system library privateframeworks cmimaging framework versions a cmimaging com apple symptomanalytics system library privateframeworks symptoms framework frameworks symptomanalytics framework versions a symptomanalytics com apple symptompresentationfeed system library privateframeworks symptoms framework frameworks symptompresentationfeed framework versions a symptompresentationfeed librosetta dylib usr lib librosetta dylib external modification summary calls made by other processes targeting this process task for pid thread create thread set state calls made by this process task for pid thread create thread set state calls made by all processes on this machine task for pid thread create thread set state vm region summary readonly portion of libraries total resident swapped out or unallocated writable regions total written resident swapped out unallocated virtual region region type size count non coalesced accelerate framework activity tracing cg backing stores cg image coreanimation coregraphics coreui image data dispatch continuations foundation iokit image io kernel alloc once malloc malloc guard page stack guard stack vm allocate data data const data dirty font data linkedit objc ro objc rw text unicode mapped file shared memory total model bootrom processors quad core intel core ghz gb smc graphics khw intel hd graphics spdisplays builtin graphics khw amd radeon pro spdisplays pcie device gb memory module bank gb mhz memory module bank gb mhz airport spairport wireless card type airport extreme broadcom airportdriverbrcmnic bluetooth version services devices incoming serial ports network service wi fi airport usb device usb bus usb device apple controller thunderbolt bus macbook pro apple inc thunderbolt bus macbook pro apple inc
| 1
|
42,271
| 2,869,984,565
|
IssuesEvent
|
2015-06-06 18:22:53
|
Piiit/openreg
|
https://api.github.com/repos/Piiit/openreg
|
closed
|
Create a cross platform jar including source code
|
auto-migrated Milestone-Release2.0 Priority-High Type-Task
|
```
http://stackoverflow.com/questions/2706222/create-cross-platform-java-swt-applic
ation
With ant, jarinjarloader and ...
```
Original issue reported on code.google.com by `pitiz29a` on 16 Mar 2013 at 4:31
|
1.0
|
Create a cross platform jar including source code - ```
http://stackoverflow.com/questions/2706222/create-cross-platform-java-swt-applic
ation
With ant, jarinjarloader and ...
```
Original issue reported on code.google.com by `pitiz29a` on 16 Mar 2013 at 4:31
|
priority
|
create a cross platform jar including source code ation with ant jarinjarloader and original issue reported on code google com by on mar at
| 1
|
107,784
| 4,318,557,632
|
IssuesEvent
|
2016-07-24 04:01:44
|
hdngr/sriracha
|
https://api.github.com/repos/hdngr/sriracha
|
closed
|
Build scripts and css so they are automatically included in release
|
bug Priority: High
|
forgot that this is now a necessity since we are using bower
|
1.0
|
Build scripts and css so they are automatically included in release - forgot that this is now a necessity since we are using bower
|
priority
|
build scripts and css so they are automatically included in release forgot that this is now a necessity since we are using bower
| 1
|
661,214
| 22,043,966,284
|
IssuesEvent
|
2022-05-29 19:39:39
|
neutrons/mantid_total_scattering
|
https://api.github.com/repos/neutrons/mantid_total_scattering
|
opened
|
Check through source codes and sort out performance boosting
|
Type: Enhancement Priority: High Type: Perfomrnace
|
1. `ConvertUnits` here seems to be redundant -- at least, they should be some into the `if` statement.
https://github.com/neutrons/mantid_total_scattering/blob/cd201872caad7767321292ebdb45bee8e58fda52/total_scattering/reduction/total_scattering_reduction.py#L1059-L1096
2.
|
1.0
|
Check through source codes and sort out performance boosting - 1. `ConvertUnits` here seems to be redundant -- at least, they should be some into the `if` statement.
https://github.com/neutrons/mantid_total_scattering/blob/cd201872caad7767321292ebdb45bee8e58fda52/total_scattering/reduction/total_scattering_reduction.py#L1059-L1096
2.
|
priority
|
check through source codes and sort out performance boosting convertunits here seems to be redundant at least they should be some into the if statement
| 1
|
339,589
| 10,256,494,587
|
IssuesEvent
|
2019-08-21 17:48:44
|
intakedesk/PowerBI-General
|
https://api.github.com/repos/intakedesk/PowerBI-General
|
reopened
|
Check 3000 Ads of ITD Facebook accounts to see if all have the Ad ID mapping correctly (too many Organics)
|
high-priority
|
Let's try to get access to Intake Desk FB account to check the Ads 1 by 1 (I'll help) @fedegarza @richarditd
|
1.0
|
Check 3000 Ads of ITD Facebook accounts to see if all have the Ad ID mapping correctly (too many Organics) - Let's try to get access to Intake Desk FB account to check the Ads 1 by 1 (I'll help) @fedegarza @richarditd
|
priority
|
check ads of itd facebook accounts to see if all have the ad id mapping correctly too many organics let s try to get access to intake desk fb account to check the ads by i ll help fedegarza richarditd
| 1
|
756,121
| 26,458,386,586
|
IssuesEvent
|
2023-01-16 15:45:05
|
verocloud/obsidian-mindmap-nextgen
|
https://api.github.com/repos/verocloud/obsidian-mindmap-nextgen
|
closed
|
Duplicate "Horizontal padding in settings"
|
bug priority:high
|
In plugin settings, seems the horizontal padding setting appears twice.
<img width="761" alt="duplicate horizontal padding" src="https://user-images.githubusercontent.com/6671693/210755357-c0b88312-e3dc-481e-b80d-cb29256df9cc.png">
|
1.0
|
Duplicate "Horizontal padding in settings" - In plugin settings, seems the horizontal padding setting appears twice.
<img width="761" alt="duplicate horizontal padding" src="https://user-images.githubusercontent.com/6671693/210755357-c0b88312-e3dc-481e-b80d-cb29256df9cc.png">
|
priority
|
duplicate horizontal padding in settings in plugin settings seems the horizontal padding setting appears twice img width alt duplicate horizontal padding src
| 1
|
339,005
| 10,240,454,155
|
IssuesEvent
|
2019-08-19 20:51:02
|
vispy/vispy
|
https://api.github.com/repos/vispy/vispy
|
closed
|
Errors on startup of my application with version v.0.6 (dev)
|
priority: high type: bug
|
After having upgraded to the dev v.0.6 version, I always get the following error (error 1) during the startup of my application, causing it to crash. It seems related to issue #1277, where I also initially posted these errors, but as it is not the only type of error I sometimes receive (see post below), I have opened this new issue for it.
I checked whether the problem would be solved when removing the lines in which GL_LINE_SMOOTH is enabled/disabled, in the function _prepare_draw in visuals/line/line.py. This of course removed the error related to GL_LINE_SMOOTH, but then I got another error related to setting the line width (error 2).
After removing also those lines, just to check whether that would work, I got however another error (error 3).
I don't know whether this is al related to the same bug (with GL_LINE_SMOOTH), or if it involves multiple bugs. I put it here because the first error is the same as the one in this issue, but if it involves multiple bugs, then it could be moved.
Does anyone have ideas about how to solve this, or maybe a good way to circumvent this problem?
1:
```
File "D:\Python\NLradar_eigen\Python_files\vispy\util\event.py", line 455, in __call__
self._invoke_callback(cb, event)
File "D:\Python\NLradar_eigen\Python_files\vispy\util\event.py", line 475, in _invoke_callback self,
cb_event=(cb, event)) << caught exception here: >>
File "D:\Python\NLradar_eigen\Python_files\vispy\util\event.py", line 471, in _invoke_callback
cb(event)
File "D:\Python\NLradar_eigen\Python_files\vispy\scene\canvas.py", line 208, in on_draw
self._draw_scene()
File "D:\Python\NLradar_eigen\Python_files\vispy\scene\canvas.py", line 254, in _draw_scene
self.draw_visual(self.scene)
File "D:\Python\NLradar_eigen\Python_files\vispy\scene\canvas.py", line 292, in draw_visual
node.draw()
File "D:\Python\NLradar_eigen\Python_files\vispy\scene\visuals.py", line 98, in draw
self._visual_superclass.draw(self)
File "D:\Python\NLradar_eigen\Python_files\vispy\visuals\visual.py", line 588, in draw
v.draw()
File "D:\Python\NLradar_eigen\Python_files\vispy\visuals\visual.py", line 432, in draw
if self._prepare_draw(view=self) is False:
File "D:\Python\NLradar_eigen\Python_files\vispy\visuals\line\line.py", line 356, in _prepare_draw
GL.glDisable(GL.GL_LINE_SMOOTH)
File "C:\Anaconda3\lib\site-packages\OpenGL\platform\baseplatform.py", line 402, in __call__
return self( *args, **named )
File "C:\Anaconda3\lib\site-packages\OpenGL\error.py", line 232, in glCheckError
baseOperation = baseOperation, OpenGL.error.GLError: GLError( err = 1282, description = b'ongeldige bewerking', baseOperation = glDisable, cArguments = (GL_LINE_SMOOTH,)
```
2:
```
OpenGL.error.GLError: GLError( err = 1282, description = b'ongeldige bewerking', baseOperation = glLineWidth, cArguments = (1.0,)
```
3:
```
D:\Python\NLradar_eigen\Python_files\vispy\visuals\visual.py:442: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead logger.warn("Error drawing visual %r" % self) WARNING: Error drawing visual <vispy.visuals.line.line._GLLineVisual object at 0x000001E803483828> WARNING: Traceback (most recent call last):
File "nlr.py", line 2367, in <module>
main()
File "nlr.py", line 2364, in main
sys.exit(app.exec_())
File "D:\Python\NLradar_eigen\Python_files\vispy\app\backends\_qt.py", line 435, in event out =
super(QtBaseCanvasBackend, self).event(ev)
File "D:\Python\NLradar_eigen\Python_files\vispy\app\backends\_qt.py", line 707, in paintGL
self._vispy_canvas.events.draw(region=None)
File "D:\Python\NLradar_eigen\Python_files\vispy\util\event.py", line 455, in __call__
self._invoke_callback(cb, event) File "D:\Python\NLradar_eigen\Python_files\vispy\util\event.py", line 475, in _invoke_callback
self, cb_event=(cb, event)) << caught exception here: >>
File "D:\Python\NLradar_eigen\Python_files\vispy\gloo\gl\_gl2.py", line 735, in glGetShaderInfoLog
nativefunc = glGetShaderInfoLog._native AttributeError: 'function' object has no attribute '_native'
```
|
1.0
|
Errors on startup of my application with version v.0.6 (dev) - After having upgraded to the dev v.0.6 version, I always get the following error (error 1) during the startup of my application, causing it to crash. It seems related to issue #1277, where I also initially posted these errors, but as it is not the only type of error I sometimes receive (see post below), I have opened this new issue for it.
I checked whether the problem would be solved when removing the lines in which GL_LINE_SMOOTH is enabled/disabled, in the function _prepare_draw in visuals/line/line.py. This of course removed the error related to GL_LINE_SMOOTH, but then I got another error related to setting the line width (error 2).
After removing also those lines, just to check whether that would work, I got however another error (error 3).
I don't know whether this is al related to the same bug (with GL_LINE_SMOOTH), or if it involves multiple bugs. I put it here because the first error is the same as the one in this issue, but if it involves multiple bugs, then it could be moved.
Does anyone have ideas about how to solve this, or maybe a good way to circumvent this problem?
1:
```
File "D:\Python\NLradar_eigen\Python_files\vispy\util\event.py", line 455, in __call__
self._invoke_callback(cb, event)
File "D:\Python\NLradar_eigen\Python_files\vispy\util\event.py", line 475, in _invoke_callback self,
cb_event=(cb, event)) << caught exception here: >>
File "D:\Python\NLradar_eigen\Python_files\vispy\util\event.py", line 471, in _invoke_callback
cb(event)
File "D:\Python\NLradar_eigen\Python_files\vispy\scene\canvas.py", line 208, in on_draw
self._draw_scene()
File "D:\Python\NLradar_eigen\Python_files\vispy\scene\canvas.py", line 254, in _draw_scene
self.draw_visual(self.scene)
File "D:\Python\NLradar_eigen\Python_files\vispy\scene\canvas.py", line 292, in draw_visual
node.draw()
File "D:\Python\NLradar_eigen\Python_files\vispy\scene\visuals.py", line 98, in draw
self._visual_superclass.draw(self)
File "D:\Python\NLradar_eigen\Python_files\vispy\visuals\visual.py", line 588, in draw
v.draw()
File "D:\Python\NLradar_eigen\Python_files\vispy\visuals\visual.py", line 432, in draw
if self._prepare_draw(view=self) is False:
File "D:\Python\NLradar_eigen\Python_files\vispy\visuals\line\line.py", line 356, in _prepare_draw
GL.glDisable(GL.GL_LINE_SMOOTH)
File "C:\Anaconda3\lib\site-packages\OpenGL\platform\baseplatform.py", line 402, in __call__
return self( *args, **named )
File "C:\Anaconda3\lib\site-packages\OpenGL\error.py", line 232, in glCheckError
baseOperation = baseOperation, OpenGL.error.GLError: GLError( err = 1282, description = b'ongeldige bewerking', baseOperation = glDisable, cArguments = (GL_LINE_SMOOTH,)
```
2:
```
OpenGL.error.GLError: GLError( err = 1282, description = b'ongeldige bewerking', baseOperation = glLineWidth, cArguments = (1.0,)
```
3:
```
D:\Python\NLradar_eigen\Python_files\vispy\visuals\visual.py:442: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead logger.warn("Error drawing visual %r" % self) WARNING: Error drawing visual <vispy.visuals.line.line._GLLineVisual object at 0x000001E803483828> WARNING: Traceback (most recent call last):
File "nlr.py", line 2367, in <module>
main()
File "nlr.py", line 2364, in main
sys.exit(app.exec_())
File "D:\Python\NLradar_eigen\Python_files\vispy\app\backends\_qt.py", line 435, in event out =
super(QtBaseCanvasBackend, self).event(ev)
File "D:\Python\NLradar_eigen\Python_files\vispy\app\backends\_qt.py", line 707, in paintGL
self._vispy_canvas.events.draw(region=None)
File "D:\Python\NLradar_eigen\Python_files\vispy\util\event.py", line 455, in __call__
self._invoke_callback(cb, event) File "D:\Python\NLradar_eigen\Python_files\vispy\util\event.py", line 475, in _invoke_callback
self, cb_event=(cb, event)) << caught exception here: >>
File "D:\Python\NLradar_eigen\Python_files\vispy\gloo\gl\_gl2.py", line 735, in glGetShaderInfoLog
nativefunc = glGetShaderInfoLog._native AttributeError: 'function' object has no attribute '_native'
```
|
priority
|
errors on startup of my application with version v dev after having upgraded to the dev v version i always get the following error error during the startup of my application causing it to crash it seems related to issue where i also initially posted these errors but as it is not the only type of error i sometimes receive see post below i have opened this new issue for it i checked whether the problem would be solved when removing the lines in which gl line smooth is enabled disabled in the function prepare draw in visuals line line py this of course removed the error related to gl line smooth but then i got another error related to setting the line width error after removing also those lines just to check whether that would work i got however another error error i don t know whether this is al related to the same bug with gl line smooth or if it involves multiple bugs i put it here because the first error is the same as the one in this issue but if it involves multiple bugs then it could be moved does anyone have ideas about how to solve this or maybe a good way to circumvent this problem file d python nlradar eigen python files vispy util event py line in call self invoke callback cb event file d python nlradar eigen python files vispy util event py line in invoke callback self cb event cb event file d python nlradar eigen python files vispy util event py line in invoke callback cb event file d python nlradar eigen python files vispy scene canvas py line in on draw self draw scene file d python nlradar eigen python files vispy scene canvas py line in draw scene self draw visual self scene file d python nlradar eigen python files vispy scene canvas py line in draw visual node draw file d python nlradar eigen python files vispy scene visuals py line in draw self visual superclass draw self file d python nlradar eigen python files vispy visuals visual py line in draw v draw file d python nlradar eigen python files vispy visuals visual py line in draw if self prepare draw view self is false file d python nlradar eigen python files vispy visuals line line py line in prepare draw gl gldisable gl gl line smooth file c lib site packages opengl platform baseplatform py line in call return self args named file c lib site packages opengl error py line in glcheckerror baseoperation baseoperation opengl error glerror glerror err description b ongeldige bewerking baseoperation gldisable carguments gl line smooth opengl error glerror glerror err description b ongeldige bewerking baseoperation gllinewidth carguments d python nlradar eigen python files vispy visuals visual py deprecationwarning the warn method is deprecated use warning instead logger warn error drawing visual r self warning error drawing visual warning traceback most recent call last file nlr py line in main file nlr py line in main sys exit app exec file d python nlradar eigen python files vispy app backends qt py line in event out super qtbasecanvasbackend self event ev file d python nlradar eigen python files vispy app backends qt py line in paintgl self vispy canvas events draw region none file d python nlradar eigen python files vispy util event py line in call self invoke callback cb event file d python nlradar eigen python files vispy util event py line in invoke callback self cb event cb event file d python nlradar eigen python files vispy gloo gl py line in glgetshaderinfolog nativefunc glgetshaderinfolog native attributeerror function object has no attribute native
| 1
|
451,635
| 13,039,563,902
|
IssuesEvent
|
2020-07-28 16:58:06
|
OpenSRP/opensrp-server-core
|
https://api.github.com/repos/OpenSRP/opensrp-server-core
|
opened
|
Implement Queuing for Server side plan evaluation
|
Dynamic Tasking Priority: High question
|
We need Implement Queuing for Server side plan evaluation.
This is because plan evaluation may be evaluating a plan that maybe has jurisdictions against in country.
It has been decided that we shall rabbitMQ for queuing
We need to add a database table that will track the jobs posted to RabbitMQ. The information in the database table will allow queues to resume in case the queue is cleared for any reason while there were tasks queued up
We need to decide the unit of a task for plan evaluation
1. Use entity as task
2. Use jurisdiction and action as a task
**1. Use entity as task**
Using entity will mean we have as many tasks as per the entities targeted in the plan e.g all residential structures, all families, all family members, and all tasks that are applicable by the plan.
This has the advantages in that in case of restart we shall not process any tasks for entities already completed.
**2. Use jurisdiction and entity as a task**
This will mean that we have task for each jurisdiction that is applicable for the plan. We could break down so that we have task per action per jurisdiction. This will imply that each task will be handling an action in the plan per jurisdiction
This has the advantages in that we can track task generation by jurisdictions. In case jurisdictions have a lot of structures during any restart this would mean restarting evaluation for tasks that were not completed
When all the evaluation is complete and all rabbitMQ tasks are complete, we need to purge the jobs table
|
1.0
|
Implement Queuing for Server side plan evaluation - We need Implement Queuing for Server side plan evaluation.
This is because plan evaluation may be evaluating a plan that maybe has jurisdictions against in country.
It has been decided that we shall rabbitMQ for queuing
We need to add a database table that will track the jobs posted to RabbitMQ. The information in the database table will allow queues to resume in case the queue is cleared for any reason while there were tasks queued up
We need to decide the unit of a task for plan evaluation
1. Use entity as task
2. Use jurisdiction and action as a task
**1. Use entity as task**
Using entity will mean we have as many tasks as per the entities targeted in the plan e.g all residential structures, all families, all family members, and all tasks that are applicable by the plan.
This has the advantages in that in case of restart we shall not process any tasks for entities already completed.
**2. Use jurisdiction and entity as a task**
This will mean that we have task for each jurisdiction that is applicable for the plan. We could break down so that we have task per action per jurisdiction. This will imply that each task will be handling an action in the plan per jurisdiction
This has the advantages in that we can track task generation by jurisdictions. In case jurisdictions have a lot of structures during any restart this would mean restarting evaluation for tasks that were not completed
When all the evaluation is complete and all rabbitMQ tasks are complete, we need to purge the jobs table
|
priority
|
implement queuing for server side plan evaluation we need implement queuing for server side plan evaluation this is because plan evaluation may be evaluating a plan that maybe has jurisdictions against in country it has been decided that we shall rabbitmq for queuing we need to add a database table that will track the jobs posted to rabbitmq the information in the database table will allow queues to resume in case the queue is cleared for any reason while there were tasks queued up we need to decide the unit of a task for plan evaluation use entity as task use jurisdiction and action as a task use entity as task using entity will mean we have as many tasks as per the entities targeted in the plan e g all residential structures all families all family members and all tasks that are applicable by the plan this has the advantages in that in case of restart we shall not process any tasks for entities already completed use jurisdiction and entity as a task this will mean that we have task for each jurisdiction that is applicable for the plan we could break down so that we have task per action per jurisdiction this will imply that each task will be handling an action in the plan per jurisdiction this has the advantages in that we can track task generation by jurisdictions in case jurisdictions have a lot of structures during any restart this would mean restarting evaluation for tasks that were not completed when all the evaluation is complete and all rabbitmq tasks are complete we need to purge the jobs table
| 1
|
416,538
| 12,148,226,082
|
IssuesEvent
|
2020-04-24 14:16:16
|
ASbeletsky/TimeOffTracker
|
https://api.github.com/repos/ASbeletsky/TimeOffTracker
|
closed
|
Add server-side localization
|
enhancement high priority in progress mutable
|
## Overview
We should make the application adjustable to a convenient language for a user. It is an important task because if a user can't understand, the application UI will be rejected by the users.
## Requirements
* The localization should be done on server-side.
* The localization implementation should support three languages:
- English (Default)
- Russian
- Ukrainian
* All text on web pages should be correctly translated to a language specified by the user.
## Implementation guidelines
* [https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-3.1](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-3.1) can be used as a starting point.
Estimate: 15 hours
Deadline: 05.03.2020
|
1.0
|
Add server-side localization - ## Overview
We should make the application adjustable to a convenient language for a user. It is an important task because if a user can't understand, the application UI will be rejected by the users.
## Requirements
* The localization should be done on server-side.
* The localization implementation should support three languages:
- English (Default)
- Russian
- Ukrainian
* All text on web pages should be correctly translated to a language specified by the user.
## Implementation guidelines
* [https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-3.1](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-3.1) can be used as a starting point.
Estimate: 15 hours
Deadline: 05.03.2020
|
priority
|
add server side localization overview we should make the application adjustable to a convenient language for a user it is an important task because if a user can t understand the application ui will be rejected by the users requirements the localization should be done on server side the localization implementation should support three languages english default russian ukrainian all text on web pages should be correctly translated to a language specified by the user implementation guidelines can be used as a starting point estimate hours deadline
| 1
|
820,661
| 30,782,246,993
|
IssuesEvent
|
2023-07-31 10:49:57
|
opendatahub-io/odh-dashboard
|
https://api.github.com/repos/opendatahub-io/odh-dashboard
|
closed
|
Uploading a malformed pipeline yaml results in a blank page.
|
kind/bug priority/high feature/ds-pipelines field-priority
|
After generating the pipeline YAML from Elyra, I decided to edit the YAML manually.
All I did was to change the name of a task from "run-a-file" to "hello01".
From:

to:

When I import the pipeline:

It creates the pipeline:

But when I click on it, I get a blank screen:

The file i used (modified) is attached.
[TestPipeline01-modified.yaml.txt](https://github.com/opendatahub-io/opendatahub-community/files/11896292/TestPipeline01-modified.yaml.txt)
Clearly, as I failed to properly update/edit the file, I would not expect everything to work, but I would expect just a warning sign next to the pipeline, or something like that, not a blank screen with no navigation.
|
2.0
|
Uploading a malformed pipeline yaml results in a blank page. - After generating the pipeline YAML from Elyra, I decided to edit the YAML manually.
All I did was to change the name of a task from "run-a-file" to "hello01".
From:

to:

When I import the pipeline:

It creates the pipeline:

But when I click on it, I get a blank screen:

The file i used (modified) is attached.
[TestPipeline01-modified.yaml.txt](https://github.com/opendatahub-io/opendatahub-community/files/11896292/TestPipeline01-modified.yaml.txt)
Clearly, as I failed to properly update/edit the file, I would not expect everything to work, but I would expect just a warning sign next to the pipeline, or something like that, not a blank screen with no navigation.
|
priority
|
uploading a malformed pipeline yaml results in a blank page after generating the pipeline yaml from elyra i decided to edit the yaml manually all i did was to change the name of a task from run a file to from to when i import the pipeline it creates the pipeline but when i click on it i get a blank screen the file i used modified is attached clearly as i failed to properly update edit the file i would not expect everything to work but i would expect just a warning sign next to the pipeline or something like that not a blank screen with no navigation
| 1
|
239,205
| 7,787,298,738
|
IssuesEvent
|
2018-06-06 21:54:27
|
coq/coq
|
https://api.github.com/repos/coq/coq
|
opened
|
Interrupting printing completely borks coqtop
|
kind: anomaly part: STM priority: high
|
#### Version
8.8.0
#### Operating system
Linux
#### Description of the problem
Consider the code
```coq
Require Import Coq.ZArith.ZArith.
Definition foo := Eval vm_compute in List.repeat Z.div_eucl 20.
Set Printing Depth 1000000.
Set Printing All.
Print foo.
```
In ProofGeneral: Execute up to the `Set Printing All.` Then execute the `Print foo.`, wait a second or two or three (until the `*coq*` buffer starts showing output). Then spam `C-c` to send `SIGINT` to Coq. Then execute any command, such as `Check 1.` or `Reset Initial.` or even just something silly like `R.`. I get
```coq
Error:
Currently, the parsing api only supports parsing at the tip of the document.
You wanted to parse at: 1 but the current tip is: 63
```
cc @ejgallego @gares
|
1.0
|
Interrupting printing completely borks coqtop - #### Version
8.8.0
#### Operating system
Linux
#### Description of the problem
Consider the code
```coq
Require Import Coq.ZArith.ZArith.
Definition foo := Eval vm_compute in List.repeat Z.div_eucl 20.
Set Printing Depth 1000000.
Set Printing All.
Print foo.
```
In ProofGeneral: Execute up to the `Set Printing All.` Then execute the `Print foo.`, wait a second or two or three (until the `*coq*` buffer starts showing output). Then spam `C-c` to send `SIGINT` to Coq. Then execute any command, such as `Check 1.` or `Reset Initial.` or even just something silly like `R.`. I get
```coq
Error:
Currently, the parsing api only supports parsing at the tip of the document.
You wanted to parse at: 1 but the current tip is: 63
```
cc @ejgallego @gares
|
priority
|
interrupting printing completely borks coqtop version operating system linux description of the problem consider the code coq require import coq zarith zarith definition foo eval vm compute in list repeat z div eucl set printing depth set printing all print foo in proofgeneral execute up to the set printing all then execute the print foo wait a second or two or three until the coq buffer starts showing output then spam c c to send sigint to coq then execute any command such as check or reset initial or even just something silly like r i get coq error currently the parsing api only supports parsing at the tip of the document you wanted to parse at but the current tip is cc ejgallego gares
| 1
|
479,597
| 13,803,672,502
|
IssuesEvent
|
2020-10-11 04:34:14
|
The-Mu-Foundation/Mutorials
|
https://api.github.com/repos/The-Mu-Foundation/Mutorials
|
reopened
|
Dynamic problems
|
feature_request high_priority
|
This should randomise the numbers in each problem, and calculate the answer choices again, while respecting significant figures.
|
1.0
|
Dynamic problems - This should randomise the numbers in each problem, and calculate the answer choices again, while respecting significant figures.
|
priority
|
dynamic problems this should randomise the numbers in each problem and calculate the answer choices again while respecting significant figures
| 1
|
294,015
| 9,012,132,993
|
IssuesEvent
|
2019-02-05 16:12:33
|
Microsoft/Recommenders
|
https://api.github.com/repos/Microsoft/Recommenders
|
closed
|
[BUG] generate conda file is returning an error
|
bug high priority
|
### *What* is affected by this bug?
generate conda file is returning an error
### In *which* platform does it happen?
* *Azure Data Science Virtual Machine.*
### *How* do we replicate the issue?
```
sh scripts/generate_conda_file.sh
scripts/generate_conda_file.sh: 64: scripts/generate_conda_file.sh: Syntax error: "(" unexpected (expecting "then")
```
|
1.0
|
[BUG] generate conda file is returning an error - ### *What* is affected by this bug?
generate conda file is returning an error
### In *which* platform does it happen?
* *Azure Data Science Virtual Machine.*
### *How* do we replicate the issue?
```
sh scripts/generate_conda_file.sh
scripts/generate_conda_file.sh: 64: scripts/generate_conda_file.sh: Syntax error: "(" unexpected (expecting "then")
```
|
priority
|
generate conda file is returning an error what is affected by this bug generate conda file is returning an error in which platform does it happen azure data science virtual machine how do we replicate the issue sh scripts generate conda file sh scripts generate conda file sh scripts generate conda file sh syntax error unexpected expecting then
| 1
|
135,297
| 5,246,055,345
|
IssuesEvent
|
2017-02-01 08:04:15
|
domaindrivendev/Swashbuckle.AspNetCore
|
https://api.github.com/repos/domaindrivendev/Swashbuckle.AspNetCore
|
closed
|
Support for ASP.NET API Versioning?
|
high priority
|
Hi, in of our .Net Core API's I implemented [Microsoft ASP.NET API Versioning](https://github.com/Microsoft/aspnet-api-versioning), but it seems it's not picked up by Swagger.
Code example for a v2 version:
````cs
[ApiVersion("2")]
[Route("api/v{version:apiVersion}/{tenantid}/timeline")]
public class TimelineController : Controller
{
}
````
This results in

with this Swagger json that also contains strange data:
````javascript
{
"swagger": "2.0",
"info": {
"version": "v2",
},
"basePath": "/",
"paths": {
"/api/v{version}/{tenantid}/timeline/default": {
"get": {
"tags": ["Timeline"],
"operationId": "ApiV{versionByTenantidTimelineDefaultGet",
"parameters": [{
"name": "version",
"in": "path",
"required": true,
"type": "string"
}],
}
}
}
}
````
The version is now treated as a parameter. Can I fix this by configuration? Or am I doing something wrong?
|
1.0
|
Support for ASP.NET API Versioning? - Hi, in of our .Net Core API's I implemented [Microsoft ASP.NET API Versioning](https://github.com/Microsoft/aspnet-api-versioning), but it seems it's not picked up by Swagger.
Code example for a v2 version:
````cs
[ApiVersion("2")]
[Route("api/v{version:apiVersion}/{tenantid}/timeline")]
public class TimelineController : Controller
{
}
````
This results in

with this Swagger json that also contains strange data:
````javascript
{
"swagger": "2.0",
"info": {
"version": "v2",
},
"basePath": "/",
"paths": {
"/api/v{version}/{tenantid}/timeline/default": {
"get": {
"tags": ["Timeline"],
"operationId": "ApiV{versionByTenantidTimelineDefaultGet",
"parameters": [{
"name": "version",
"in": "path",
"required": true,
"type": "string"
}],
}
}
}
}
````
The version is now treated as a parameter. Can I fix this by configuration? Or am I doing something wrong?
|
priority
|
support for asp net api versioning hi in of our net core api s i implemented but it seems it s not picked up by swagger code example for a version cs public class timelinecontroller controller this results in with this swagger json that also contains strange data javascript swagger info version basepath paths api v version tenantid timeline default get tags operationid apiv versionbytenantidtimelinedefaultget parameters name version in path required true type string the version is now treated as a parameter can i fix this by configuration or am i doing something wrong
| 1
|
328,999
| 10,010,941,158
|
IssuesEvent
|
2019-07-15 09:19:32
|
mantidproject/mantid
|
https://api.github.com/repos/mantidproject/mantid
|
closed
|
TobyFit Resolution: Verify simulation in comparison with Tobyfit/Horace
|
Component: Direct Inelastic Misc: Roadmap Priority: High
|
This issue was originally [TRAC 11050](http://trac.mantidproject.org/mantid/ticket/11050)
This is an umbrella issue to track the issues contributing to the comparison of simulation of the TobyFit resolution function in Vates.
This will be made of sub-issues:
- #11056
- #15556
|
1.0
|
TobyFit Resolution: Verify simulation in comparison with Tobyfit/Horace - This issue was originally [TRAC 11050](http://trac.mantidproject.org/mantid/ticket/11050)
This is an umbrella issue to track the issues contributing to the comparison of simulation of the TobyFit resolution function in Vates.
This will be made of sub-issues:
- #11056
- #15556
|
priority
|
tobyfit resolution verify simulation in comparison with tobyfit horace this issue was originally this is an umbrella issue to track the issues contributing to the comparison of simulation of the tobyfit resolution function in vates this will be made of sub issues
| 1
|
737,172
| 25,504,416,975
|
IssuesEvent
|
2022-11-28 08:15:04
|
BVPyro/front
|
https://api.github.com/repos/BVPyro/front
|
closed
|
create bvpk.org/sicher-und-bunt
|
enhancement high priority
|
- create bvpk.org/sicher-und-bunt
- link to a cms-accessible page
- might look similar to bvpk.org/mitgliederversammlung
- maybe the space for text etc. could be a little wider...?
|
1.0
|
create bvpk.org/sicher-und-bunt - - create bvpk.org/sicher-und-bunt
- link to a cms-accessible page
- might look similar to bvpk.org/mitgliederversammlung
- maybe the space for text etc. could be a little wider...?
|
priority
|
create bvpk org sicher und bunt create bvpk org sicher und bunt link to a cms accessible page might look similar to bvpk org mitgliederversammlung maybe the space for text etc could be a little wider
| 1
|
110,214
| 4,423,423,952
|
IssuesEvent
|
2016-08-16 08:32:14
|
PowerlineApp/powerline-mobile
|
https://api.github.com/repos/PowerlineApp/powerline-mobile
|
closed
|
Facebook Login / API Change
|
enhancement P1 - High Priority
|
Per the e-mail I forwarded, the Facebook change requires our action by August 6th. We have time, but we may want to address this as part of the fix for #66
|
1.0
|
Facebook Login / API Change - Per the e-mail I forwarded, the Facebook change requires our action by August 6th. We have time, but we may want to address this as part of the fix for #66
|
priority
|
facebook login api change per the e mail i forwarded the facebook change requires our action by august we have time but we may want to address this as part of the fix for
| 1
|
306,404
| 9,392,654,150
|
IssuesEvent
|
2019-04-07 03:18:03
|
generative-music/generative.fm
|
https://api.github.com/repos/generative-music/generative.fm
|
closed
|
Update indicator animation
|
enhancement high priority low effort
|
Animate the update indicator above the "About" tab label so users click on it.
|
1.0
|
Update indicator animation - Animate the update indicator above the "About" tab label so users click on it.
|
priority
|
update indicator animation animate the update indicator above the about tab label so users click on it
| 1
|
624,657
| 19,703,654,916
|
IssuesEvent
|
2022-01-12 19:18:21
|
bounswe/2021SpringGroup1
|
https://api.github.com/repos/bounswe/2021SpringGroup1
|
closed
|
Writing the Final Milestone report
|
Priority: High Status: In Progress Platform: Android Platform: Frontend Platform: Backend
|
Final milestone report must be finished by tomorrow and we need to update the parts:
- RAM
- Adding final release notes
- Final project evaluation
Feel free to add some parts that I've missed by now or comment your contributions.
|
1.0
|
Writing the Final Milestone report - Final milestone report must be finished by tomorrow and we need to update the parts:
- RAM
- Adding final release notes
- Final project evaluation
Feel free to add some parts that I've missed by now or comment your contributions.
|
priority
|
writing the final milestone report final milestone report must be finished by tomorrow and we need to update the parts ram adding final release notes final project evaluation feel free to add some parts that i ve missed by now or comment your contributions
| 1
|
453,149
| 13,065,446,526
|
IssuesEvent
|
2020-07-30 19:49:57
|
red-hat-storage/ocs-ci
|
https://api.github.com/repos/red-hat-storage/ocs-ci
|
closed
|
Require Parameter for hostPrefix in install.conf during cluster deployment.
|
High Priority scale team/ecosystem
|
In Scale testing there is a need to create more than 500/1000 pods per node but after creation of 510 pods there is a IP limit problem on each node for more details please refer [1] point 8 related to hostPrefix. Due to the IP limits after creation of 500 pods new pod creation will be stuck in ContainerCreation state [2]
This change should be done at the start the cluster deployment i.e. it should be changed in install-config.yaml.
[1] https://docs.openshift.com/container-platform/4.1/installing/installing_bare_metal/installing-bare-metal.html#installation-bare-metal-config-yaml_installing-bare-metal
[2] pod error from describe output
`Warning FailedCreatePodSandBox 10s (x245 over 58m) kubelet, compute-2 (combined from similar events): Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_pod-test-cephfs-26636c33118d4c3095cbd37d91ffbdcd_namespace-test-04da39dd13384c368442462a0a46b146_d78b6a81-5a2e-47fd-becf-5baf3d787ecf_0(3aaed0634517bee401dba2ae417eba78ab66cd785cb5e05460cb334f5ae895b4): Multus: [namespace-test-04da39dd13384c368442462a0a46b146/pod-test-cephfs-26636c33118d4c3095cbd37d91ffbdcd]: error adding container to network "openshift-sdn": delegateAdd: error invoking confAdd - "openshift-sdn": error in getting result from AddNetwork: CNI request failed with status 400: 'failed to run IPAM for 3aaed0634517bee401dba2ae417eba78ab66cd785cb5e05460cb334f5ae895b4: failed to run CNI IPAM ADD: failed to allocate for range 0: no IP addresses available in range set: 10.130.2.1-10.130.3.254`
|
1.0
|
Require Parameter for hostPrefix in install.conf during cluster deployment. - In Scale testing there is a need to create more than 500/1000 pods per node but after creation of 510 pods there is a IP limit problem on each node for more details please refer [1] point 8 related to hostPrefix. Due to the IP limits after creation of 500 pods new pod creation will be stuck in ContainerCreation state [2]
This change should be done at the start the cluster deployment i.e. it should be changed in install-config.yaml.
[1] https://docs.openshift.com/container-platform/4.1/installing/installing_bare_metal/installing-bare-metal.html#installation-bare-metal-config-yaml_installing-bare-metal
[2] pod error from describe output
`Warning FailedCreatePodSandBox 10s (x245 over 58m) kubelet, compute-2 (combined from similar events): Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_pod-test-cephfs-26636c33118d4c3095cbd37d91ffbdcd_namespace-test-04da39dd13384c368442462a0a46b146_d78b6a81-5a2e-47fd-becf-5baf3d787ecf_0(3aaed0634517bee401dba2ae417eba78ab66cd785cb5e05460cb334f5ae895b4): Multus: [namespace-test-04da39dd13384c368442462a0a46b146/pod-test-cephfs-26636c33118d4c3095cbd37d91ffbdcd]: error adding container to network "openshift-sdn": delegateAdd: error invoking confAdd - "openshift-sdn": error in getting result from AddNetwork: CNI request failed with status 400: 'failed to run IPAM for 3aaed0634517bee401dba2ae417eba78ab66cd785cb5e05460cb334f5ae895b4: failed to run CNI IPAM ADD: failed to allocate for range 0: no IP addresses available in range set: 10.130.2.1-10.130.3.254`
|
priority
|
require parameter for hostprefix in install conf during cluster deployment in scale testing there is a need to create more than pods per node but after creation of pods there is a ip limit problem on each node for more details please refer point related to hostprefix due to the ip limits after creation of pods new pod creation will be stuck in containercreation state this change should be done at the start the cluster deployment i e it should be changed in install config yaml pod error from describe output warning failedcreatepodsandbox over kubelet compute combined from similar events failed to create pod sandbox rpc error code unknown desc failed to create pod network sandbox pod test cephfs namespace test becf multus error adding container to network openshift sdn delegateadd error invoking confadd openshift sdn error in getting result from addnetwork cni request failed with status failed to run ipam for failed to run cni ipam add failed to allocate for range no ip addresses available in range set
| 1
|
586,341
| 17,575,590,549
|
IssuesEvent
|
2021-08-15 14:47:00
|
umple/umple
|
https://api.github.com/repos/umple/umple
|
closed
|
Certain examples do not generate graphviz class diagram with traits and methods selected
|
bug Component-UmpleOnline Priority-High Diffic-Med Traits
|
EDIT: I believe this is s special case of #1753 -- in that issue examples with traits and methods selected do not show their complete diagram; in the Decisions example, the diagram is not shown at all. Please solve #1753 first. I have not edited the remainder of the text below. I believe what is going on is that the amount of diagram shown is so small that it appears blank in the Decisions case.
## Summary
Within the UmpleOnli -- ne, the users can choose a diagram that he/she want to view. In a sample scenario, when a user selects an example ("Decisions") and wants to view the "GraphViz Class" diagram, the system can not display the diagram. It returns an empty page. Moreover, the system does not display a message to mention the reason why the diagram cannot be generated.
## Steps to Reproduce
1. Click the "Tools" menu item, select the example as "Class Diagrams >> "Decisions".

2. Now, click the "Options" menu item, select the "GraphViz Class" and wait for the diagram.

The system does not return anything. The system does not display a feedback message to mention the reason for not being able to generate the diagram.
## Expected Feature
The system should display an appropriate error message when the generation of the diagram is not possible.
A similar implementation can be found for the "GraphViz State" diagram type.
|
1.0
|
Certain examples do not generate graphviz class diagram with traits and methods selected - EDIT: I believe this is s special case of #1753 -- in that issue examples with traits and methods selected do not show their complete diagram; in the Decisions example, the diagram is not shown at all. Please solve #1753 first. I have not edited the remainder of the text below. I believe what is going on is that the amount of diagram shown is so small that it appears blank in the Decisions case.
## Summary
Within the UmpleOnli -- ne, the users can choose a diagram that he/she want to view. In a sample scenario, when a user selects an example ("Decisions") and wants to view the "GraphViz Class" diagram, the system can not display the diagram. It returns an empty page. Moreover, the system does not display a message to mention the reason why the diagram cannot be generated.
## Steps to Reproduce
1. Click the "Tools" menu item, select the example as "Class Diagrams >> "Decisions".

2. Now, click the "Options" menu item, select the "GraphViz Class" and wait for the diagram.

The system does not return anything. The system does not display a feedback message to mention the reason for not being able to generate the diagram.
## Expected Feature
The system should display an appropriate error message when the generation of the diagram is not possible.
A similar implementation can be found for the "GraphViz State" diagram type.
|
priority
|
certain examples do not generate graphviz class diagram with traits and methods selected edit i believe this is s special case of in that issue examples with traits and methods selected do not show their complete diagram in the decisions example the diagram is not shown at all please solve first i have not edited the remainder of the text below i believe what is going on is that the amount of diagram shown is so small that it appears blank in the decisions case summary within the umpleonli ne the users can choose a diagram that he she want to view in a sample scenario when a user selects an example decisions and wants to view the graphviz class diagram the system can not display the diagram it returns an empty page moreover the system does not display a message to mention the reason why the diagram cannot be generated steps to reproduce click the tools menu item select the example as class diagrams decisions now click the options menu item select the graphviz class and wait for the diagram the system does not return anything the system does not display a feedback message to mention the reason for not being able to generate the diagram expected feature the system should display an appropriate error message when the generation of the diagram is not possible a similar implementation can be found for the graphviz state diagram type
| 1
|
446,126
| 12,840,019,498
|
IssuesEvent
|
2020-07-07 20:18:36
|
jasonlipo/contract-whist
|
https://api.github.com/repos/jasonlipo/contract-whist
|
closed
|
Structure of log
|
feature high priority
|
Player name should not be hard coded
Leaderboard should not be hard coded
Other ways to make smaller to fix #41
|
1.0
|
Structure of log - Player name should not be hard coded
Leaderboard should not be hard coded
Other ways to make smaller to fix #41
|
priority
|
structure of log player name should not be hard coded leaderboard should not be hard coded other ways to make smaller to fix
| 1
|
124,234
| 4,894,096,922
|
IssuesEvent
|
2016-11-19 03:48:45
|
caver456/issue_test
|
https://api.github.com/repos/caver456/issue_test
|
opened
|
install
|
enhancement help wanted Priority:High
|
make a clean installer. Investigate from scratch. pyqtdeploy? py2exe? jython / jar? https://wiki.python.org/moin/Freeze (linux only)
|
1.0
|
install - make a clean installer. Investigate from scratch. pyqtdeploy? py2exe? jython / jar? https://wiki.python.org/moin/Freeze (linux only)
|
priority
|
install make a clean installer investigate from scratch pyqtdeploy jython jar linux only
| 1
|
723,780
| 24,907,880,191
|
IssuesEvent
|
2022-10-29 13:45:58
|
bounswe/bounswe2022group7
|
https://api.github.com/repos/bounswe/bounswe2022group7
|
closed
|
Implement Single Art Item Endpoint
|
Status: Pending Review Priority: High Difficulty: Medium Type: Implementation Target: Backend
|
We need to implement an endpoint that returns a single art item to the art item detail page. The art item should be requested given the id of the art item which is an art item's primary key.
**Deadline:** 28/10/2022 23.59
**Reviewer:** @demet47
|
1.0
|
Implement Single Art Item Endpoint - We need to implement an endpoint that returns a single art item to the art item detail page. The art item should be requested given the id of the art item which is an art item's primary key.
**Deadline:** 28/10/2022 23.59
**Reviewer:** @demet47
|
priority
|
implement single art item endpoint we need to implement an endpoint that returns a single art item to the art item detail page the art item should be requested given the id of the art item which is an art item s primary key deadline reviewer
| 1
|
506,998
| 14,677,859,716
|
IssuesEvent
|
2020-12-31 01:02:05
|
ampproject/amphtml
|
https://api.github.com/repos/ampproject/amphtml
|
closed
|
amp-analytics: documentExit only works within same domain
|
Component: amp-analytics P1: High Priority Stale Type: Bug WG: analytics
|
## What's the issue?
When using `amp-analytics` page visibility trigger with the `visibilitySpec` configured to use `documentExit`, the event will only fire when navigating between documents on the same domain but if you navigate to a different domain, the event won’t fire.
```
...
"on": "visible",
"request": "event",
"visibilitySpec": {
"reportWhen": "documentExit"
}
...
```
## How do we reproduce the issue?
You can follow these steps using this reduced test case on JSBin:
https://jsbin.com/jujuhag/2/edit
(To observe the events, click on "Preserve log" in the network tab and look for `POST` requests to `https://httpbin.org/post`)
1. Reload while on the JSBin test case page. The event should fire as expected.
2. In the location bar of the browser enter a jsbin.com URL (example, http://jsbin.com/help/getting-started) or click on a link from the JSBin navigation and the event will again fire as expected.
3. Now, this time while on the test case page, enter a different domain in the location bar, example, https://google.com. No event fires when the document exits.
## What browsers are affected?
Chrome and Safari are both affected but works perfectly fine on FireFox.
## Which AMP version is affected?
Version 1906051812580
Not sure if this is a new issue but it's the first time we've attempted to use `documentExit`.
|
1.0
|
amp-analytics: documentExit only works within same domain - ## What's the issue?
When using `amp-analytics` page visibility trigger with the `visibilitySpec` configured to use `documentExit`, the event will only fire when navigating between documents on the same domain but if you navigate to a different domain, the event won’t fire.
```
...
"on": "visible",
"request": "event",
"visibilitySpec": {
"reportWhen": "documentExit"
}
...
```
## How do we reproduce the issue?
You can follow these steps using this reduced test case on JSBin:
https://jsbin.com/jujuhag/2/edit
(To observe the events, click on "Preserve log" in the network tab and look for `POST` requests to `https://httpbin.org/post`)
1. Reload while on the JSBin test case page. The event should fire as expected.
2. In the location bar of the browser enter a jsbin.com URL (example, http://jsbin.com/help/getting-started) or click on a link from the JSBin navigation and the event will again fire as expected.
3. Now, this time while on the test case page, enter a different domain in the location bar, example, https://google.com. No event fires when the document exits.
## What browsers are affected?
Chrome and Safari are both affected but works perfectly fine on FireFox.
## Which AMP version is affected?
Version 1906051812580
Not sure if this is a new issue but it's the first time we've attempted to use `documentExit`.
|
priority
|
amp analytics documentexit only works within same domain what s the issue when using amp analytics page visibility trigger with the visibilityspec configured to use documentexit the event will only fire when navigating between documents on the same domain but if you navigate to a different domain the event won’t fire on visible request event visibilityspec reportwhen documentexit how do we reproduce the issue you can follow these steps using this reduced test case on jsbin to observe the events click on preserve log in the network tab and look for post requests to reload while on the jsbin test case page the event should fire as expected in the location bar of the browser enter a jsbin com url example or click on a link from the jsbin navigation and the event will again fire as expected now this time while on the test case page enter a different domain in the location bar example no event fires when the document exits what browsers are affected chrome and safari are both affected but works perfectly fine on firefox which amp version is affected version not sure if this is a new issue but it s the first time we ve attempted to use documentexit
| 1
|
188,827
| 6,782,321,265
|
IssuesEvent
|
2017-10-30 07:27:59
|
Cloud-CV/EvalAI
|
https://api.github.com/repos/Cloud-CV/EvalAI
|
opened
|
Add feature to invite users to host team using URL
|
backend dependent hard-to-fix new-feature priority-high
|
Very similar to #1346.
## Deliverables
Add a feature to invite new team member to a participant team using a Unique URL. Also, don't forget to write unit tests. :)
## Steps
1. **user1** enters the email of his teammate (let's say **user2**)
2. Send an email to **user2** (if he/she is registered on EvalAI) with a unique URL
3. **user2** clicks on the URL to accept the invitation to the team.
4. *user1* gets an email saying that "**user2** has accepted your invite to team <blah>" (we can iterate over the email message later)
### Some important points to note
- [ ] Checks performed before inviting to the team should be similar to current invitation logic
|
1.0
|
Add feature to invite users to host team using URL - Very similar to #1346.
## Deliverables
Add a feature to invite new team member to a participant team using a Unique URL. Also, don't forget to write unit tests. :)
## Steps
1. **user1** enters the email of his teammate (let's say **user2**)
2. Send an email to **user2** (if he/she is registered on EvalAI) with a unique URL
3. **user2** clicks on the URL to accept the invitation to the team.
4. *user1* gets an email saying that "**user2** has accepted your invite to team <blah>" (we can iterate over the email message later)
### Some important points to note
- [ ] Checks performed before inviting to the team should be similar to current invitation logic
|
priority
|
add feature to invite users to host team using url very similar to deliverables add a feature to invite new team member to a participant team using a unique url also don t forget to write unit tests steps enters the email of his teammate let s say send an email to if he she is registered on evalai with a unique url clicks on the url to accept the invitation to the team gets an email saying that has accepted your invite to team we can iterate over the email message later some important points to note checks performed before inviting to the team should be similar to current invitation logic
| 1
|
23,744
| 2,660,967,536
|
IssuesEvent
|
2015-03-19 11:41:06
|
TypeStrong/atom-typescript
|
https://api.github.com/repos/TypeStrong/atom-typescript
|
closed
|
Atom TypeScript Update Failure
|
bug platform:windows priority:high
|
Just got this, this morning while trying to update Atom TypeScript to new version. I'm on Windows 7 (64-bit). I had no .ts files open at the time. Let me know if you need any more information.
After restarting Atom, it didn't show any updates for Atom TypeScript. It was indeed installed, but only partially? It didn't function at all and remained in "Installed Packages" without an image or version.
Resolved by uninstalling and reinstalling. Not a big deal, but just thought I'd submit.


|
1.0
|
Atom TypeScript Update Failure - Just got this, this morning while trying to update Atom TypeScript to new version. I'm on Windows 7 (64-bit). I had no .ts files open at the time. Let me know if you need any more information.
After restarting Atom, it didn't show any updates for Atom TypeScript. It was indeed installed, but only partially? It didn't function at all and remained in "Installed Packages" without an image or version.
Resolved by uninstalling and reinstalling. Not a big deal, but just thought I'd submit.


|
priority
|
atom typescript update failure just got this this morning while trying to update atom typescript to new version i m on windows bit i had no ts files open at the time let me know if you need any more information after restarting atom it didn t show any updates for atom typescript it was indeed installed but only partially it didn t function at all and remained in installed packages without an image or version resolved by uninstalling and reinstalling not a big deal but just thought i d submit
| 1
|
318,919
| 9,716,977,308
|
IssuesEvent
|
2019-05-29 08:11:37
|
huridocs/uwazi
|
https://api.github.com/repos/huridocs/uwazi
|
opened
|
Semantic search BETA
|
Priority: High Status: Sprint
|
- [ ] Remove launching the search from the selection of documents. Launch always on the filtered documents/whole library.
- [ ] When we have pagination it will only run the search on the documents displayed. It should run the search in all the documents affected by the filtering.
- [ ] Remove the search box from the panel and instead add a toggle button in library's search box.
- [ ] Make a component that will create a description of the search based in the multiselect options. Use this description as part of the title for the saved semantic search.
- [ ] Add an explanation of the feature on the side bar where the threshold and minimum relevant sentences are.
- [ ] Format the threshold % to just 2 decimals.
- [ ] Add explore and precision labels under the threshold bar.
- [ ] Add "per document" to the minimum sentences label.
- [ ] Also add the description of the search (created from the selected filters) in the semantic search results.
- [ ] Add the total amount of sentences in the cards. Ie. 345 out of 500.
- [ ] Remove the "Average sentence score" from the cards.
- [ ] Add a hard-coded order criteria "% of document above the threshold".
- [ ] Add the % of document sentences above the threshold in the cards.
- [ ] When you select a result, in the side panel, replace "Average sentence score" by "% of document above threshold".
- [ ] Add a bulk edit button that will trigger bulk edition for all documents above the thresholds.
|
1.0
|
Semantic search BETA - - [ ] Remove launching the search from the selection of documents. Launch always on the filtered documents/whole library.
- [ ] When we have pagination it will only run the search on the documents displayed. It should run the search in all the documents affected by the filtering.
- [ ] Remove the search box from the panel and instead add a toggle button in library's search box.
- [ ] Make a component that will create a description of the search based in the multiselect options. Use this description as part of the title for the saved semantic search.
- [ ] Add an explanation of the feature on the side bar where the threshold and minimum relevant sentences are.
- [ ] Format the threshold % to just 2 decimals.
- [ ] Add explore and precision labels under the threshold bar.
- [ ] Add "per document" to the minimum sentences label.
- [ ] Also add the description of the search (created from the selected filters) in the semantic search results.
- [ ] Add the total amount of sentences in the cards. Ie. 345 out of 500.
- [ ] Remove the "Average sentence score" from the cards.
- [ ] Add a hard-coded order criteria "% of document above the threshold".
- [ ] Add the % of document sentences above the threshold in the cards.
- [ ] When you select a result, in the side panel, replace "Average sentence score" by "% of document above threshold".
- [ ] Add a bulk edit button that will trigger bulk edition for all documents above the thresholds.
|
priority
|
semantic search beta remove launching the search from the selection of documents launch always on the filtered documents whole library when we have pagination it will only run the search on the documents displayed it should run the search in all the documents affected by the filtering remove the search box from the panel and instead add a toggle button in library s search box make a component that will create a description of the search based in the multiselect options use this description as part of the title for the saved semantic search add an explanation of the feature on the side bar where the threshold and minimum relevant sentences are format the threshold to just decimals add explore and precision labels under the threshold bar add per document to the minimum sentences label also add the description of the search created from the selected filters in the semantic search results add the total amount of sentences in the cards ie out of remove the average sentence score from the cards add a hard coded order criteria of document above the threshold add the of document sentences above the threshold in the cards when you select a result in the side panel replace average sentence score by of document above threshold add a bulk edit button that will trigger bulk edition for all documents above the thresholds
| 1
|
308,193
| 9,435,989,769
|
IssuesEvent
|
2019-04-13 02:00:50
|
avored/laravel-ecommerce
|
https://api.github.com/repos/avored/laravel-ecommerce
|
closed
|
select2 - bad work
|
High Priority backend bug
|
Hi.
Please review the select2 in product/basic. This selection not work properly

**In addition, you have consider to publish the admin UI?**
|
1.0
|
select2 - bad work - Hi.
Please review the select2 in product/basic. This selection not work properly

**In addition, you have consider to publish the admin UI?**
|
priority
|
bad work hi please review the in product basic this selection not work properly in addition you have consider to publish the admin ui
| 1
|
395,317
| 11,683,656,781
|
IssuesEvent
|
2020-03-05 04:09:59
|
StudioTBA/CoronaIO
|
https://api.github.com/repos/StudioTBA/CoronaIO
|
opened
|
Shooting for police officers
|
Character development Priority: High
|
**Is your feature request related to a problem? Please describe.**
Police officers should be able to shoot at the horde to defeat it.
**Describe the solution you would like**
Use raycasts and detect collisions. Next issue after this will involve lowering the horde's health.
|
1.0
|
Shooting for police officers - **Is your feature request related to a problem? Please describe.**
Police officers should be able to shoot at the horde to defeat it.
**Describe the solution you would like**
Use raycasts and detect collisions. Next issue after this will involve lowering the horde's health.
|
priority
|
shooting for police officers is your feature request related to a problem please describe police officers should be able to shoot at the horde to defeat it describe the solution you would like use raycasts and detect collisions next issue after this will involve lowering the horde s health
| 1
|
288,714
| 8,850,684,910
|
IssuesEvent
|
2019-01-08 13:56:53
|
cosmos/voyager
|
https://api.github.com/repos/cosmos/voyager
|
opened
|
Balance header availability not updated after submitting proposal
|
governance-1 :ballot_box: high priority
|
Description:
<!-- Steps to reproduce, logs, and screenshots are helpful for us to resolve the bug -->
Still shows original value. Maybe we should refactor how we're updating the header (or update it after querying the account) because this has been a recurring issue.
|
1.0
|
Balance header availability not updated after submitting proposal - Description:
<!-- Steps to reproduce, logs, and screenshots are helpful for us to resolve the bug -->
Still shows original value. Maybe we should refactor how we're updating the header (or update it after querying the account) because this has been a recurring issue.
|
priority
|
balance header availability not updated after submitting proposal description still shows original value maybe we should refactor how we re updating the header or update it after querying the account because this has been a recurring issue
| 1
|
127,222
| 5,026,412,673
|
IssuesEvent
|
2016-12-15 12:30:02
|
JuliaDocs/Documenter.jl
|
https://api.github.com/repos/JuliaDocs/Documenter.jl
|
closed
|
Travis build stalls on 0.5 when make.jl is run
|
Priority: High Type: Bug
|
Due to my package suddenly started failing on nightly I swapped to using 0.5 for the build (https://github.com/KristofferC/ContMechTensors.jl/commit/593ce54b36cf25e83ee8b32459b4dccb1d643797).
However, the build now seems to stall https://travis-ci.org/KristofferC/ContMechTensors.jl/jobs/184179783#L200.
Any help debugging this is appreciated.
|
1.0
|
Travis build stalls on 0.5 when make.jl is run - Due to my package suddenly started failing on nightly I swapped to using 0.5 for the build (https://github.com/KristofferC/ContMechTensors.jl/commit/593ce54b36cf25e83ee8b32459b4dccb1d643797).
However, the build now seems to stall https://travis-ci.org/KristofferC/ContMechTensors.jl/jobs/184179783#L200.
Any help debugging this is appreciated.
|
priority
|
travis build stalls on when make jl is run due to my package suddenly started failing on nightly i swapped to using for the build however the build now seems to stall any help debugging this is appreciated
| 1
|
234,971
| 7,733,363,178
|
IssuesEvent
|
2018-05-26 10:44:14
|
tuskyapp/Tusky
|
https://api.github.com/repos/tuskyapp/Tusky
|
closed
|
Remaining characters are calculated wrongly
|
bug priority: high
|
Links in Mastodon statuses are only counted as 23 characters, no matter how long they are. Tusky ignores this, which means you have less characters in Tusky than on Mastodon web.
|
1.0
|
Remaining characters are calculated wrongly - Links in Mastodon statuses are only counted as 23 characters, no matter how long they are. Tusky ignores this, which means you have less characters in Tusky than on Mastodon web.
|
priority
|
remaining characters are calculated wrongly links in mastodon statuses are only counted as characters no matter how long they are tusky ignores this which means you have less characters in tusky than on mastodon web
| 1
|
543,998
| 15,888,488,379
|
IssuesEvent
|
2021-04-10 07:35:22
|
bryntum/support
|
https://api.github.com/repos/bryntum/support
|
closed
|
Enable yarn support for installing packages
|
angular bug high-priority ionic react resolved vue
|
`@bryntum/gantt` package can be installed via npm, but yarn throws error.
```
node 14.2.0
yarn 1.17.3
npm 6.14.4
```
|
1.0
|
Enable yarn support for installing packages - `@bryntum/gantt` package can be installed via npm, but yarn throws error.
```
node 14.2.0
yarn 1.17.3
npm 6.14.4
```
|
priority
|
enable yarn support for installing packages bryntum gantt package can be installed via npm but yarn throws error node yarn npm
| 1
|
221,469
| 7,388,804,182
|
IssuesEvent
|
2018-03-16 05:12:17
|
opensmc/get-connected-smc
|
https://api.github.com/repos/opensmc/get-connected-smc
|
reopened
|
Users Without Kids Eligible for WIC and Free/Reduced Price School Lunches
|
High Priority bug help wanted
|
If a user responds that they do not have children, the results screen still shows that they may be eligible for WIC and free/reduced price school lunches.
Pregnant women with no other children are eligible for WIC, but users without children should not see free/reduced price school lunch.
Can we change the logic for WIC and free/reduced price lunch to something like
• Change logic for free/reduced price school lunches to number of kids > 0
• Change logic for WIC to kids 5 or under > 0 OR pregnant YES OR pregnant YES AND kids 5 or under > 0
Feedback from the End Hunger Task Force
|
1.0
|
Users Without Kids Eligible for WIC and Free/Reduced Price School Lunches - If a user responds that they do not have children, the results screen still shows that they may be eligible for WIC and free/reduced price school lunches.
Pregnant women with no other children are eligible for WIC, but users without children should not see free/reduced price school lunch.
Can we change the logic for WIC and free/reduced price lunch to something like
• Change logic for free/reduced price school lunches to number of kids > 0
• Change logic for WIC to kids 5 or under > 0 OR pregnant YES OR pregnant YES AND kids 5 or under > 0
Feedback from the End Hunger Task Force
|
priority
|
users without kids eligible for wic and free reduced price school lunches if a user responds that they do not have children the results screen still shows that they may be eligible for wic and free reduced price school lunches pregnant women with no other children are eligible for wic but users without children should not see free reduced price school lunch can we change the logic for wic and free reduced price lunch to something like • change logic for free reduced price school lunches to number of kids • change logic for wic to kids or under or pregnant yes or pregnant yes and kids or under feedback from the end hunger task force
| 1
|
638,078
| 20,712,387,198
|
IssuesEvent
|
2022-03-12 04:44:51
|
blackmichael/f1-pickem
|
https://api.github.com/repos/blackmichael/f1-pickem
|
opened
|
Add temporary email->userID lookup in submit-picks lambda
|
high priority backend
|
## Description
User auth is a lot of work. Gather emails, map them to static user IDs, reject unknown emails.
|
1.0
|
Add temporary email->userID lookup in submit-picks lambda - ## Description
User auth is a lot of work. Gather emails, map them to static user IDs, reject unknown emails.
|
priority
|
add temporary email userid lookup in submit picks lambda description user auth is a lot of work gather emails map them to static user ids reject unknown emails
| 1
|
709,893
| 24,396,103,366
|
IssuesEvent
|
2022-10-04 19:25:04
|
oresat/oresat-firmware
|
https://api.github.com/repos/oresat/oresat-firmware
|
closed
|
Enable/use LSE clock for C3 RTC
|
bug critical high priority C3
|
The RTC on C3 is still using the LSI clock source. This was to avoid triggering the WDT on first boot, but the WDT was updated to allow more grace time at boot. The RTC needs to be set back to using the LSE clock in order to keep time accurately. LSI is really terrible...
|
1.0
|
Enable/use LSE clock for C3 RTC - The RTC on C3 is still using the LSI clock source. This was to avoid triggering the WDT on first boot, but the WDT was updated to allow more grace time at boot. The RTC needs to be set back to using the LSE clock in order to keep time accurately. LSI is really terrible...
|
priority
|
enable use lse clock for rtc the rtc on is still using the lsi clock source this was to avoid triggering the wdt on first boot but the wdt was updated to allow more grace time at boot the rtc needs to be set back to using the lse clock in order to keep time accurately lsi is really terrible
| 1
|
485,031
| 13,960,082,618
|
IssuesEvent
|
2020-10-24 19:20:47
|
learnweb/moodle-mod_ratingallocate
|
https://api.github.com/repos/learnweb/moodle-mod_ratingallocate
|
closed
|
Adapt the plugin's code style to Moodle's code style
|
Effort: Very High Priority: Low enhancement
|
This is definitely not the most important issue, but should be tackled sometime:
If the code style would conform to Moodle's code style, the plugin would (hopefully) be
- easier to understand (especially for those who are new to the plugin but have experience with Moodle)
- easier to maintain (as a result from the first bullet point).
Furthermore, code quality of future additions could be checked more easily by a continuous integration server by invoking `moodle-plugin-ci codechecker` (using the awesome Moodle Plugin for Travis CI: https://github.com/moodlerooms/moodle-plugin-ci). But this can only happen if the current codebase already adheres to the code style.
|
1.0
|
Adapt the plugin's code style to Moodle's code style - This is definitely not the most important issue, but should be tackled sometime:
If the code style would conform to Moodle's code style, the plugin would (hopefully) be
- easier to understand (especially for those who are new to the plugin but have experience with Moodle)
- easier to maintain (as a result from the first bullet point).
Furthermore, code quality of future additions could be checked more easily by a continuous integration server by invoking `moodle-plugin-ci codechecker` (using the awesome Moodle Plugin for Travis CI: https://github.com/moodlerooms/moodle-plugin-ci). But this can only happen if the current codebase already adheres to the code style.
|
priority
|
adapt the plugin s code style to moodle s code style this is definitely not the most important issue but should be tackled sometime if the code style would conform to moodle s code style the plugin would hopefully be easier to understand especially for those who are new to the plugin but have experience with moodle easier to maintain as a result from the first bullet point furthermore code quality of future additions could be checked more easily by a continuous integration server by invoking moodle plugin ci codechecker using the awesome moodle plugin for travis ci but this can only happen if the current codebase already adheres to the code style
| 1
|
34,778
| 2,787,696,901
|
IssuesEvent
|
2015-05-08 08:19:11
|
restlet/restlet-framework-java
|
https://api.github.com/repos/restlet/restlet-framework-java
|
opened
|
JsonRepresentation should persist the object (JsonArray, JsonObject, etc) once representation has been parsed
|
Extension: JSON Priority: high State: new Type: enhancement
|
Just as the jacksonRepresentation does.
|
1.0
|
JsonRepresentation should persist the object (JsonArray, JsonObject, etc) once representation has been parsed - Just as the jacksonRepresentation does.
|
priority
|
jsonrepresentation should persist the object jsonarray jsonobject etc once representation has been parsed just as the jacksonrepresentation does
| 1
|
421,963
| 12,264,289,006
|
IssuesEvent
|
2020-05-07 03:47:04
|
c172p-team/c172p
|
https://api.github.com/repos/c172p-team/c172p
|
opened
|
Ignition switch fails when using the xml animation "Start"
|
bug high priority
|
I'm not sure what changed or why but the issue is if you use the interior view keyed ignition to start the aircraft it fails if you mouse over the "start" hot spot without first clicking on mag 1 and 2 .I don't think this used to be this way and I don't know that we changed any of the code in Models/Interior/Panel/Instruments/magneto-switch/magneto-switch.xml to cause this behavior.
~~~
<!-- Magneto switch -->
<animation>
<type>knob</type>
<object-name>key</object-name>
<object-name>start</object-name>
<object-name>magsw</object-name>
<visible>true</visible>
<action>
<binding>
<command>property-adjust</command>
<property>/controls/switches/magnetos</property>
<factor>1</factor>
<min>0</min>
<max>3</max>
</binding>
</action>
<increase>
<binding>
<command>nasal</command>
<script>c172p.click("magneto-forward")</script>
</binding>
</increase>
<decrease>
<binding>
<command>nasal</command>
<script>c172p.click("magneto-back")</script>
</binding>
</decrease>
<hovered>
<binding>
<command>set-tooltip</command>
<tooltip-id>magneto-switch</tooltip-id>
<label>Magnetos: %s</label>
<property>controls/switches/magnetos</property>
<mapping>nasal</mapping>
<script>
var m = arg[0];
if (m == 1) return 'RIGHT';
if (m == 2) return 'LEFT';
if (m == 3) return 'BOTH';
return 'OFF';
</script>
</binding>
</hovered>
</animation>
<!-- Starter -->
<animation>
<type>pick</type>
<object-name>click-S</object-name>
<visible>false</visible>
<action>
<name>starter</name>
<button>0</button>
<binding>
<command>property-assign</command>
<property>/controls/switches/starter</property>
<value>1</value>
</binding>
<binding>
<command>nasal</command>
<script>c172p.click("magneto-forward")</script>
</binding>
<mod-up>
<binding>
<command>property-assign</command>
<property>/controls/switches/starter</property>
<value>0</value>
</binding>
<binding>
<command>nasal</command>
<script>c172p.click("magneto-back")</script>
</binding>
</mod-up>
</action>
<hovered>
<binding>
<command>set-tooltip</command>
<tooltip-id>starter-switch</tooltip-id>
<label>Engine Starter</label>
</binding>
</hovered>
</animation>
~~~
Or it may be a change in fgdata/Nasal/controls.nas
|
1.0
|
Ignition switch fails when using the xml animation "Start" - I'm not sure what changed or why but the issue is if you use the interior view keyed ignition to start the aircraft it fails if you mouse over the "start" hot spot without first clicking on mag 1 and 2 .I don't think this used to be this way and I don't know that we changed any of the code in Models/Interior/Panel/Instruments/magneto-switch/magneto-switch.xml to cause this behavior.
~~~
<!-- Magneto switch -->
<animation>
<type>knob</type>
<object-name>key</object-name>
<object-name>start</object-name>
<object-name>magsw</object-name>
<visible>true</visible>
<action>
<binding>
<command>property-adjust</command>
<property>/controls/switches/magnetos</property>
<factor>1</factor>
<min>0</min>
<max>3</max>
</binding>
</action>
<increase>
<binding>
<command>nasal</command>
<script>c172p.click("magneto-forward")</script>
</binding>
</increase>
<decrease>
<binding>
<command>nasal</command>
<script>c172p.click("magneto-back")</script>
</binding>
</decrease>
<hovered>
<binding>
<command>set-tooltip</command>
<tooltip-id>magneto-switch</tooltip-id>
<label>Magnetos: %s</label>
<property>controls/switches/magnetos</property>
<mapping>nasal</mapping>
<script>
var m = arg[0];
if (m == 1) return 'RIGHT';
if (m == 2) return 'LEFT';
if (m == 3) return 'BOTH';
return 'OFF';
</script>
</binding>
</hovered>
</animation>
<!-- Starter -->
<animation>
<type>pick</type>
<object-name>click-S</object-name>
<visible>false</visible>
<action>
<name>starter</name>
<button>0</button>
<binding>
<command>property-assign</command>
<property>/controls/switches/starter</property>
<value>1</value>
</binding>
<binding>
<command>nasal</command>
<script>c172p.click("magneto-forward")</script>
</binding>
<mod-up>
<binding>
<command>property-assign</command>
<property>/controls/switches/starter</property>
<value>0</value>
</binding>
<binding>
<command>nasal</command>
<script>c172p.click("magneto-back")</script>
</binding>
</mod-up>
</action>
<hovered>
<binding>
<command>set-tooltip</command>
<tooltip-id>starter-switch</tooltip-id>
<label>Engine Starter</label>
</binding>
</hovered>
</animation>
~~~
Or it may be a change in fgdata/Nasal/controls.nas
|
priority
|
ignition switch fails when using the xml animation start i m not sure what changed or why but the issue is if you use the interior view keyed ignition to start the aircraft it fails if you mouse over the start hot spot without first clicking on mag and i don t think this used to be this way and i don t know that we changed any of the code in models interior panel instruments magneto switch magneto switch xml to cause this behavior knob key start magsw true property adjust controls switches magnetos nasal click magneto forward nasal click magneto back set tooltip magneto switch magnetos s controls switches magnetos nasal var m arg if m return right if m return left if m return both return off pick click s false starter property assign controls switches starter nasal click magneto forward property assign controls switches starter nasal click magneto back set tooltip starter switch engine starter or it may be a change in fgdata nasal controls nas
| 1
|
413,048
| 12,059,689,248
|
IssuesEvent
|
2020-04-15 19:44:40
|
xournalpp/xournalpp
|
https://api.github.com/repos/xournalpp/xournalpp
|
closed
|
Surface could not find kpsewhich in PATH
|
PR available Windows bug confirmed priority: high
|
**Affects versions :**
- OS: Windows 10 on Surface Pro 6
- Version of Xournal++ 1.0.17 (Git commit 12febf7e, Built on Feb 3, 2020, 02:51:48)
**Describe the bug**
Xournal++ could not find kpsewhich in PATH, although I have already install MiKTeX 2.9, and make sure kpsewhich is in PATH, and can be run from shell
**To Reproduce**
Steps to reproduce the behavior:
open Xournalpp
Click on the button to input Math TeX
Pop-up says: Could not find kpsewhich in PATH; please install kpsewhich and put it on path
**Expected behavior**
Able to input TeX using my MiKTeX installation and kpsewhich binary that's on PATH
**Screenshots of Problem**
Please see attached screenshot

|
1.0
|
Surface could not find kpsewhich in PATH - **Affects versions :**
- OS: Windows 10 on Surface Pro 6
- Version of Xournal++ 1.0.17 (Git commit 12febf7e, Built on Feb 3, 2020, 02:51:48)
**Describe the bug**
Xournal++ could not find kpsewhich in PATH, although I have already install MiKTeX 2.9, and make sure kpsewhich is in PATH, and can be run from shell
**To Reproduce**
Steps to reproduce the behavior:
open Xournalpp
Click on the button to input Math TeX
Pop-up says: Could not find kpsewhich in PATH; please install kpsewhich and put it on path
**Expected behavior**
Able to input TeX using my MiKTeX installation and kpsewhich binary that's on PATH
**Screenshots of Problem**
Please see attached screenshot

|
priority
|
surface could not find kpsewhich in path affects versions os windows on surface pro version of xournal git commit built on feb describe the bug xournal could not find kpsewhich in path although i have already install miktex and make sure kpsewhich is in path and can be run from shell to reproduce steps to reproduce the behavior open xournalpp click on the button to input math tex pop up says could not find kpsewhich in path please install kpsewhich and put it on path expected behavior able to input tex using my miktex installation and kpsewhich binary that s on path screenshots of problem please see attached screenshot
| 1
|
308,619
| 9,441,179,404
|
IssuesEvent
|
2019-04-14 23:40:42
|
Pandry/go-scienzabot
|
https://api.github.com/repos/Pandry/go-scienzabot
|
closed
|
Implement spam filter
|
enhancement priority:high
|
Implementare uno o più dei seguenti tipi di spam filter (ordine di priorità, valuta cosa viene più facile):
- Piccolo Captcha (`Benvenuto nel gruppo scienza, scrivi "ciao gruppo scienza" e una breve presentazione nei prossimi 5 minuti per evitare il kick e rimanere nel gruppo`) e/o obbligo di presentazione
- Vietare di default inoltro e messaggi con link, foto o gif a chi entra. Sblocco dopo 100 messaggi o qualche tempo.
- Blacklist (autokick/ban a chiunque abbia "bot" nel nome)
|
1.0
|
Implement spam filter - Implementare uno o più dei seguenti tipi di spam filter (ordine di priorità, valuta cosa viene più facile):
- Piccolo Captcha (`Benvenuto nel gruppo scienza, scrivi "ciao gruppo scienza" e una breve presentazione nei prossimi 5 minuti per evitare il kick e rimanere nel gruppo`) e/o obbligo di presentazione
- Vietare di default inoltro e messaggi con link, foto o gif a chi entra. Sblocco dopo 100 messaggi o qualche tempo.
- Blacklist (autokick/ban a chiunque abbia "bot" nel nome)
|
priority
|
implement spam filter implementare uno o più dei seguenti tipi di spam filter ordine di priorità valuta cosa viene più facile piccolo captcha benvenuto nel gruppo scienza scrivi ciao gruppo scienza e una breve presentazione nei prossimi minuti per evitare il kick e rimanere nel gruppo e o obbligo di presentazione vietare di default inoltro e messaggi con link foto o gif a chi entra sblocco dopo messaggi o qualche tempo blacklist autokick ban a chiunque abbia bot nel nome
| 1
|
398,187
| 11,738,974,700
|
IssuesEvent
|
2020-03-11 16:55:38
|
level73/membernet
|
https://api.github.com/repos/level73/membernet
|
opened
|
NES/CBI reporting forms back end: error messages
|
Platform: Membernet Priority: High Project: M&E Type: Bug
|
in case we encounter an error, as in the below, could we please do 2 things if possible:
1) have more clear error messages so the user knows what the problem is and is able to take action
2) if there is an error message that prevents the entry from saving, could we at least make it so that all that was to be compiled does not get erased and we can try to fix the error? as otherwise we waste loads of time compiling information and then get it all wiped in an instant...
|
1.0
|
NES/CBI reporting forms back end: error messages - in case we encounter an error, as in the below, could we please do 2 things if possible:
1) have more clear error messages so the user knows what the problem is and is able to take action
2) if there is an error message that prevents the entry from saving, could we at least make it so that all that was to be compiled does not get erased and we can try to fix the error? as otherwise we waste loads of time compiling information and then get it all wiped in an instant...
|
priority
|
nes cbi reporting forms back end error messages in case we encounter an error as in the below could we please do things if possible have more clear error messages so the user knows what the problem is and is able to take action if there is an error message that prevents the entry from saving could we at least make it so that all that was to be compiled does not get erased and we can try to fix the error as otherwise we waste loads of time compiling information and then get it all wiped in an instant
| 1
|
633,765
| 20,265,135,330
|
IssuesEvent
|
2022-02-15 11:18:04
|
meDracula/Pyshare
|
https://api.github.com/repos/meDracula/Pyshare
|
closed
|
CSS navigation bar
|
High priority!!!
|
# Navigation bar
Home Post Pyshare Account Inbox
- [x] Center Pyshare text
- [x] Pyshare background-color rotate linear gradient on loading...
- [x] Space out Home Post Pyshare Account Inbox
|
1.0
|
CSS navigation bar - # Navigation bar
Home Post Pyshare Account Inbox
- [x] Center Pyshare text
- [x] Pyshare background-color rotate linear gradient on loading...
- [x] Space out Home Post Pyshare Account Inbox
|
priority
|
css navigation bar navigation bar home post pyshare account inbox center pyshare text pyshare background color rotate linear gradient on loading space out home post pyshare account inbox
| 1
|
372,274
| 11,012,096,302
|
IssuesEvent
|
2019-12-04 17:32:00
|
yugabyte/yugabyte-db
|
https://api.github.com/repos/yugabyte/yugabyte-db
|
opened
|
[Platform] AWS refreshing pricing data fails
|
area/platform priority/high
|
2019-12-04 17:31:28,069 [ERROR] from com.yugabyte.yw.cloud.AbstractInitializer in application-akka.actor.default-dispatcher-8 - AWS initialize failed
java.lang.IllegalArgumentException: No enum constant com.yugabyte.yw.models.InstanceType.VolumeType.GB
at java.lang.Enum.valueOf(Enum.java:238)
at com.yugabyte.yw.models.InstanceType$VolumeType.valueOf(InstanceType.java:34)
at com.yugabyte.yw.cloud.AWSInitializer.storeInstanceTypeInfoToDB(AWSInitializer.java:537)
at com.yugabyte.yw.cloud.AWSInitializer.initialize(AWSInitializer.java:99)
at com.yugabyte.yw.controllers.CloudProviderController.initialize(CloudProviderController.java:462)
at v1.Routes$$anonfun$routes$1$$anonfun$applyOrElse$14$$anonfun$apply$14.apply(Routes.scala:2247)
at v1.Routes$$anonfun$routes$1$$anonfun$applyOrElse$14$$anonfun$apply$14.apply(Routes.scala:2247)
at play.core.routing.HandlerInvokerFactory$$anon$4.resultCall(HandlerInvoker.scala:157)
at play.core.routing.HandlerInvokerFactory$$anon$4.resultCall(HandlerInvoker.scala:156)
at play.core.routing.HandlerInvokerFactory$JavaActionInvokerFactory$$anon$14$$anon$3$$anon$1.invocation(HandlerInvoker.scala:136)
at play.core.j.JavaAction$$anon$1.call(JavaAction.scala:73)
at play.http.HttpRequestHandler$1.call(HttpRequestHandler.java:54)
at com.yugabyte.yw.controllers.TokenAuthenticator.call(TokenAuthenticator.java:61)
at play.core.j.JavaAction$$anonfun$7.apply(JavaAction.scala:108)
at play.core.j.JavaAction$$anonfun$7.apply(JavaAction.scala:108)
at scala.concurrent.impl.Future$PromiseCompletingRunnable.liftedTree1$1(Future.scala:24)
at scala.concurrent.impl.Future$PromiseCompletingRunnable.run(Future.scala:24)
at play.core.j.HttpExecutionContext$$anon$2.run(HttpExecutionContext.scala:56)
at play.api.libs.iteratee.Execution$trampoline$.execute(Execution.scala:70)
at play.core.j.HttpExecutionContext.execute(HttpExecutionContext.scala:48)
at scala.concurrent.impl.Future$.apply(Future.scala:31)
at scala.concurrent.Future$.apply(Future.scala:492)
at play.core.j.JavaAction.apply(JavaAction.scala:108)
at play.api.mvc.Action$$anonfun$apply$2$$anonfun$apply$5$$anonfun$apply$6.apply(Action.scala:112)
at play.api.mvc.Action$$anonfun$apply$2$$anonfun$apply$5$$anonfun$apply$6.apply(Action.scala:112)
at play.utils.Threads$.withContextClassLoader(Threads.scala:21)
at play.api.mvc.Action$$anonfun$apply$2$$anonfun$apply$5.apply(Action.scala:111)
at play.api.mvc.Action$$anonfun$apply$2$$anonfun$apply$5.apply(Action.scala:110)
at scala.Option.map(Option.scala:146)
at play.api.mvc.Action$$anonfun$apply$2.apply(Action.scala:110)
at play.api.mvc.Action$$anonfun$apply$2.apply(Action.scala:103)
at scala.concurrent.Future$$anonfun$flatMap$1.apply(Future.scala:251)
at scala.concurrent.Future$$anonfun$flatMap$1.apply(Future.scala:249)
at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:32)
at akka.dispatch.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)
at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)
at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)
at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)
at scala.concurrent.BlockContext$.withBlockContext(BlockContext.scala:72)
at akka.dispatch.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)
at akka.dispatch.TaskInvocation.run(AbstractDispatcher.scala:39)
at akka.dispatch.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(AbstractDispatcher.scala:405)
at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)
at scala.concurrent.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)
at scala.concurrent.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979)
at scala.concurrent.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)
2019-12-04 17:31:28,069 [ERROR] from com.yugabyte.yw.common.ApiResponse in application-akka.actor.default-dispatcher-8 - Hit error 500, message: {"error":"No enum constant com.yugabyte.yw.models.InstanceType.VolumeType.GB"}
|
1.0
|
[Platform] AWS refreshing pricing data fails - 2019-12-04 17:31:28,069 [ERROR] from com.yugabyte.yw.cloud.AbstractInitializer in application-akka.actor.default-dispatcher-8 - AWS initialize failed
java.lang.IllegalArgumentException: No enum constant com.yugabyte.yw.models.InstanceType.VolumeType.GB
at java.lang.Enum.valueOf(Enum.java:238)
at com.yugabyte.yw.models.InstanceType$VolumeType.valueOf(InstanceType.java:34)
at com.yugabyte.yw.cloud.AWSInitializer.storeInstanceTypeInfoToDB(AWSInitializer.java:537)
at com.yugabyte.yw.cloud.AWSInitializer.initialize(AWSInitializer.java:99)
at com.yugabyte.yw.controllers.CloudProviderController.initialize(CloudProviderController.java:462)
at v1.Routes$$anonfun$routes$1$$anonfun$applyOrElse$14$$anonfun$apply$14.apply(Routes.scala:2247)
at v1.Routes$$anonfun$routes$1$$anonfun$applyOrElse$14$$anonfun$apply$14.apply(Routes.scala:2247)
at play.core.routing.HandlerInvokerFactory$$anon$4.resultCall(HandlerInvoker.scala:157)
at play.core.routing.HandlerInvokerFactory$$anon$4.resultCall(HandlerInvoker.scala:156)
at play.core.routing.HandlerInvokerFactory$JavaActionInvokerFactory$$anon$14$$anon$3$$anon$1.invocation(HandlerInvoker.scala:136)
at play.core.j.JavaAction$$anon$1.call(JavaAction.scala:73)
at play.http.HttpRequestHandler$1.call(HttpRequestHandler.java:54)
at com.yugabyte.yw.controllers.TokenAuthenticator.call(TokenAuthenticator.java:61)
at play.core.j.JavaAction$$anonfun$7.apply(JavaAction.scala:108)
at play.core.j.JavaAction$$anonfun$7.apply(JavaAction.scala:108)
at scala.concurrent.impl.Future$PromiseCompletingRunnable.liftedTree1$1(Future.scala:24)
at scala.concurrent.impl.Future$PromiseCompletingRunnable.run(Future.scala:24)
at play.core.j.HttpExecutionContext$$anon$2.run(HttpExecutionContext.scala:56)
at play.api.libs.iteratee.Execution$trampoline$.execute(Execution.scala:70)
at play.core.j.HttpExecutionContext.execute(HttpExecutionContext.scala:48)
at scala.concurrent.impl.Future$.apply(Future.scala:31)
at scala.concurrent.Future$.apply(Future.scala:492)
at play.core.j.JavaAction.apply(JavaAction.scala:108)
at play.api.mvc.Action$$anonfun$apply$2$$anonfun$apply$5$$anonfun$apply$6.apply(Action.scala:112)
at play.api.mvc.Action$$anonfun$apply$2$$anonfun$apply$5$$anonfun$apply$6.apply(Action.scala:112)
at play.utils.Threads$.withContextClassLoader(Threads.scala:21)
at play.api.mvc.Action$$anonfun$apply$2$$anonfun$apply$5.apply(Action.scala:111)
at play.api.mvc.Action$$anonfun$apply$2$$anonfun$apply$5.apply(Action.scala:110)
at scala.Option.map(Option.scala:146)
at play.api.mvc.Action$$anonfun$apply$2.apply(Action.scala:110)
at play.api.mvc.Action$$anonfun$apply$2.apply(Action.scala:103)
at scala.concurrent.Future$$anonfun$flatMap$1.apply(Future.scala:251)
at scala.concurrent.Future$$anonfun$flatMap$1.apply(Future.scala:249)
at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:32)
at akka.dispatch.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)
at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)
at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)
at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)
at scala.concurrent.BlockContext$.withBlockContext(BlockContext.scala:72)
at akka.dispatch.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)
at akka.dispatch.TaskInvocation.run(AbstractDispatcher.scala:39)
at akka.dispatch.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(AbstractDispatcher.scala:405)
at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)
at scala.concurrent.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)
at scala.concurrent.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979)
at scala.concurrent.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)
2019-12-04 17:31:28,069 [ERROR] from com.yugabyte.yw.common.ApiResponse in application-akka.actor.default-dispatcher-8 - Hit error 500, message: {"error":"No enum constant com.yugabyte.yw.models.InstanceType.VolumeType.GB"}
|
priority
|
aws refreshing pricing data fails from com yugabyte yw cloud abstractinitializer in application akka actor default dispatcher aws initialize failed java lang illegalargumentexception no enum constant com yugabyte yw models instancetype volumetype gb at java lang enum valueof enum java at com yugabyte yw models instancetype volumetype valueof instancetype java at com yugabyte yw cloud awsinitializer storeinstancetypeinfotodb awsinitializer java at com yugabyte yw cloud awsinitializer initialize awsinitializer java at com yugabyte yw controllers cloudprovidercontroller initialize cloudprovidercontroller java at routes anonfun routes anonfun applyorelse anonfun apply apply routes scala at routes anonfun routes anonfun applyorelse anonfun apply apply routes scala at play core routing handlerinvokerfactory anon resultcall handlerinvoker scala at play core routing handlerinvokerfactory anon resultcall handlerinvoker scala at play core routing handlerinvokerfactory javaactioninvokerfactory anon anon anon invocation handlerinvoker scala at play core j javaaction anon call javaaction scala at play http httprequesthandler call httprequesthandler java at com yugabyte yw controllers tokenauthenticator call tokenauthenticator java at play core j javaaction anonfun apply javaaction scala at play core j javaaction anonfun apply javaaction scala at scala concurrent impl future promisecompletingrunnable future scala at scala concurrent impl future promisecompletingrunnable run future scala at play core j httpexecutioncontext anon run httpexecutioncontext scala at play api libs iteratee execution trampoline execute execution scala at play core j httpexecutioncontext execute httpexecutioncontext scala at scala concurrent impl future apply future scala at scala concurrent future apply future scala at play core j javaaction apply javaaction scala at play api mvc action anonfun apply anonfun apply anonfun apply apply action scala at play api mvc action anonfun apply anonfun apply anonfun apply apply action scala at play utils threads withcontextclassloader threads scala at play api mvc action anonfun apply anonfun apply apply action scala at play api mvc action anonfun apply anonfun apply apply action scala at scala option map option scala at play api mvc action anonfun apply apply action scala at play api mvc action anonfun apply apply action scala at scala concurrent future anonfun flatmap apply future scala at scala concurrent future anonfun flatmap apply future scala at scala concurrent impl callbackrunnable run promise scala at akka dispatch batchingexecutor abstractbatch processbatch batchingexecutor scala at akka dispatch batchingexecutor blockablebatch anonfun run apply mcv sp batchingexecutor scala at akka dispatch batchingexecutor blockablebatch anonfun run apply batchingexecutor scala at akka dispatch batchingexecutor blockablebatch anonfun run apply batchingexecutor scala at scala concurrent blockcontext withblockcontext blockcontext scala at akka dispatch batchingexecutor blockablebatch run batchingexecutor scala at akka dispatch taskinvocation run abstractdispatcher scala at akka dispatch forkjoinexecutorconfigurator akkaforkjointask exec abstractdispatcher scala at scala concurrent forkjoin forkjointask doexec forkjointask java at scala concurrent forkjoin forkjoinpool workqueue runtask forkjoinpool java at scala concurrent forkjoin forkjoinpool runworker forkjoinpool java at scala concurrent forkjoin forkjoinworkerthread run forkjoinworkerthread java from com yugabyte yw common apiresponse in application akka actor default dispatcher hit error message error no enum constant com yugabyte yw models instancetype volumetype gb
| 1
|
756,229
| 26,463,161,936
|
IssuesEvent
|
2023-01-16 19:56:06
|
Canadian-Geospatial-Platform/geoview
|
https://api.github.com/repos/Canadian-Geospatial-Platform/geoview
|
closed
|
WMS unsupported query
|
bug-type: broken use case priority: high core: geo functions
|
Multiple values for LAYER/LAYERS parameter are not supported at this time
See example:
https://geo.weather.gc.ca/geomet?service=WMS&version=1.3.0&request=GetCapabilities&Layers=CURRENT_CONDITIONS,METNOTES
The unsupported query is in wms.ts / line 117. This would need to be rewritten to get each metadata individually
|
1.0
|
WMS unsupported query - Multiple values for LAYER/LAYERS parameter are not supported at this time
See example:
https://geo.weather.gc.ca/geomet?service=WMS&version=1.3.0&request=GetCapabilities&Layers=CURRENT_CONDITIONS,METNOTES
The unsupported query is in wms.ts / line 117. This would need to be rewritten to get each metadata individually
|
priority
|
wms unsupported query multiple values for layer layers parameter are not supported at this time see example the unsupported query is in wms ts line this would need to be rewritten to get each metadata individually
| 1
|
239,031
| 7,785,941,017
|
IssuesEvent
|
2018-06-06 17:21:37
|
dojot/dojot
|
https://api.github.com/repos/dojot/dojot
|
closed
|
GUI: Nothing is shown when the type of the data differs from the expected type
|
Priority:High Team:Frontend Type:Bug
|
If you create an attribute of type string and publish float data, nothing is shown in the device detail page. Why don't convert the data to string or display an error message?

|
1.0
|
GUI: Nothing is shown when the type of the data differs from the expected type - If you create an attribute of type string and publish float data, nothing is shown in the device detail page. Why don't convert the data to string or display an error message?

|
priority
|
gui nothing is shown when the type of the data differs from the expected type if you create an attribute of type string and publish float data nothing is shown in the device detail page why don t convert the data to string or display an error message
| 1
|
449,795
| 12,975,135,105
|
IssuesEvent
|
2020-07-21 16:29:35
|
kubermatic/machine-controller
|
https://api.github.com/repos/kubermatic/machine-controller
|
closed
|
NodeCSRApprover doesn't approve requests on GCP
|
kind/bug priority/high team/lifecycle
|
The NodeCSRApprover controller is not approving CSRs for GCP worker nodes due to lack of private IP address and DNS name in the `.status.Addresses` field in the Machine object.
The CSR includes both private IP address and DNS name and as those are not in the Machine object, the validation fails, therefore the CSR is not signed.
As a workaround, until the issue is not fixed, the operator can manually approve the CSR, by following the instructions from [the CSR docs](https://kubernetes.io/docs/tasks/tls/managing-tls-in-a-cluster/#approving-certificate-signing-requests).
As a fix, the [following function](https://github.com/kubermatic/machine-controller/blob/e18497b5a6096dcaf31d909d3ea22ed5e95a1db9/pkg/cloudprovider/provider/gce/instance.go#L60-L67) should be extended to include the other type of addresses.
|
1.0
|
NodeCSRApprover doesn't approve requests on GCP - The NodeCSRApprover controller is not approving CSRs for GCP worker nodes due to lack of private IP address and DNS name in the `.status.Addresses` field in the Machine object.
The CSR includes both private IP address and DNS name and as those are not in the Machine object, the validation fails, therefore the CSR is not signed.
As a workaround, until the issue is not fixed, the operator can manually approve the CSR, by following the instructions from [the CSR docs](https://kubernetes.io/docs/tasks/tls/managing-tls-in-a-cluster/#approving-certificate-signing-requests).
As a fix, the [following function](https://github.com/kubermatic/machine-controller/blob/e18497b5a6096dcaf31d909d3ea22ed5e95a1db9/pkg/cloudprovider/provider/gce/instance.go#L60-L67) should be extended to include the other type of addresses.
|
priority
|
nodecsrapprover doesn t approve requests on gcp the nodecsrapprover controller is not approving csrs for gcp worker nodes due to lack of private ip address and dns name in the status addresses field in the machine object the csr includes both private ip address and dns name and as those are not in the machine object the validation fails therefore the csr is not signed as a workaround until the issue is not fixed the operator can manually approve the csr by following the instructions from as a fix the should be extended to include the other type of addresses
| 1
|
417,439
| 12,165,831,869
|
IssuesEvent
|
2020-04-27 08:14:52
|
canonical-web-and-design/jp.ubuntu.com
|
https://api.github.com/repos/canonical-web-and-design/jp.ubuntu.com
|
closed
|
Title breaking to a new line and spacing in Japanese
|
Priority: High
|
The title "Ubuntu 20.04 LTS の新機能とは?" breaks in a odd way in Japanese:
<img width="1175" alt="Screenshot 2020-04-24 at 10 25 20" src="https://user-images.githubusercontent.com/1953388/80197092-16e91d00-8616-11ea-9666-43be5fd8d653.png">
Can we change to:
<img width="1196" alt="Screenshot 2020-04-24 at 10 26 05" src="https://user-images.githubusercontent.com/1953388/80197114-1c466780-8616-11ea-9c6d-25df08acfb33.png">
And also remove the space between "LTS" and '"の":
LTSの
---
*Reported from: https://jp.ubuntu.com/*
|
1.0
|
Title breaking to a new line and spacing in Japanese - The title "Ubuntu 20.04 LTS の新機能とは?" breaks in a odd way in Japanese:
<img width="1175" alt="Screenshot 2020-04-24 at 10 25 20" src="https://user-images.githubusercontent.com/1953388/80197092-16e91d00-8616-11ea-9666-43be5fd8d653.png">
Can we change to:
<img width="1196" alt="Screenshot 2020-04-24 at 10 26 05" src="https://user-images.githubusercontent.com/1953388/80197114-1c466780-8616-11ea-9c6d-25df08acfb33.png">
And also remove the space between "LTS" and '"の":
LTSの
---
*Reported from: https://jp.ubuntu.com/*
|
priority
|
title breaking to a new line and spacing in japanese the title ubuntu lts の新機能とは? breaks in a odd way in japanese img width alt screenshot at src can we change to img width alt screenshot at src and also remove the space between lts and の ltsの reported from
| 1
|
679,643
| 23,240,776,614
|
IssuesEvent
|
2022-08-03 15:24:09
|
BIDMCDigitalPsychiatry/LAMP-platform
|
https://api.github.com/repos/BIDMCDigitalPsychiatry/LAMP-platform
|
closed
|
mindLAMP Dashboard Data Report
|
bug 2day frontend urgent external priority HIGH
|
**Describe the bug**
On the mindLAMP dashboard, the tag 'last active data' has been providing reports of active data inconsistent with the data portal. The tag further appears green, despite reporting 'never'.
**Expected behavior**
The recent active data tags show the most recent active data shown in the portal, and if there are none, appear gray, rather than green.
**Screenshots**
<img width="1205" alt="Screen Shot 2022-07-22 at 11 08 11 AM" src="https://user-images.githubusercontent.com/104088715/180468966-9d708534-bef6-40b3-94eb-cf5c12113e18.png">
<img width="1197" alt="Screen Shot 2022-07-22 at 11 45 11 AM" src="https://user-images.githubusercontent.com/104088715/180475777-2564c19a-1647-4642-bf41-97a4b51868b5.png">
**Desktop (please complete the following information):**
- OS: [OS Monterey]
- Browser [chrome]
- Version [12.2.1]
|
1.0
|
mindLAMP Dashboard Data Report - **Describe the bug**
On the mindLAMP dashboard, the tag 'last active data' has been providing reports of active data inconsistent with the data portal. The tag further appears green, despite reporting 'never'.
**Expected behavior**
The recent active data tags show the most recent active data shown in the portal, and if there are none, appear gray, rather than green.
**Screenshots**
<img width="1205" alt="Screen Shot 2022-07-22 at 11 08 11 AM" src="https://user-images.githubusercontent.com/104088715/180468966-9d708534-bef6-40b3-94eb-cf5c12113e18.png">
<img width="1197" alt="Screen Shot 2022-07-22 at 11 45 11 AM" src="https://user-images.githubusercontent.com/104088715/180475777-2564c19a-1647-4642-bf41-97a4b51868b5.png">
**Desktop (please complete the following information):**
- OS: [OS Monterey]
- Browser [chrome]
- Version [12.2.1]
|
priority
|
mindlamp dashboard data report describe the bug on the mindlamp dashboard the tag last active data has been providing reports of active data inconsistent with the data portal the tag further appears green despite reporting never expected behavior the recent active data tags show the most recent active data shown in the portal and if there are none appear gray rather than green screenshots img width alt screen shot at am src img width alt screen shot at am src desktop please complete the following information os browser version
| 1
|
518,721
| 15,033,396,921
|
IssuesEvent
|
2021-02-02 11:26:06
|
Sa-wol/eCommerceSite
|
https://api.github.com/repos/Sa-wol/eCommerceSite
|
closed
|
Create database to store products
|
enhancement high priority
|
Create a database to store products.
Products should contain:
- ProductId(Primary Key)
- Title
- Price
- Category
|
1.0
|
Create database to store products - Create a database to store products.
Products should contain:
- ProductId(Primary Key)
- Title
- Price
- Category
|
priority
|
create database to store products create a database to store products products should contain productid primary key title price category
| 1
|
23,783
| 2,663,381,266
|
IssuesEvent
|
2015-03-20 04:42:18
|
AtlasOfLivingAustralia/layers-service
|
https://api.github.com/repos/AtlasOfLivingAustralia/layers-service
|
reopened
|
Load Layer: Important Bird Areas (IBAs) - Australia
|
priority-high type-enhancement
|
The Important Bird (and Biodiversity) Areas (see http://www.birdlife.org.au/projects/important-bird-areas/iba-maps) are internationally recognised and IUCN-supported area of significane for bird species. They are in addition to CAPAD areas.
Criteria for IBAs (metadata): http://www.birdlife.org/datazone/info/ibacritglob
International data: http://www.birdlife.org/datazone/geomap.php?r=i&bbox=-150%20-50%20150%2080 but can't see how to get GIS data.
No counterparts to deprecate.
|
1.0
|
Load Layer: Important Bird Areas (IBAs) - Australia - The Important Bird (and Biodiversity) Areas (see http://www.birdlife.org.au/projects/important-bird-areas/iba-maps) are internationally recognised and IUCN-supported area of significane for bird species. They are in addition to CAPAD areas.
Criteria for IBAs (metadata): http://www.birdlife.org/datazone/info/ibacritglob
International data: http://www.birdlife.org/datazone/geomap.php?r=i&bbox=-150%20-50%20150%2080 but can't see how to get GIS data.
No counterparts to deprecate.
|
priority
|
load layer important bird areas ibas australia the important bird and biodiversity areas see are internationally recognised and iucn supported area of significane for bird species they are in addition to capad areas criteria for ibas metadata international data but can t see how to get gis data no counterparts to deprecate
| 1
|
122,951
| 4,847,474,159
|
IssuesEvent
|
2016-11-10 15:03:35
|
CSC-IT-Center-for-Science/iow-ui
|
https://api.github.com/repos/CSC-IT-Center-for-Science/iow-ui
|
closed
|
E2E tests with protractor
|
epic frontend High priority
|
# Sections
- [x] Frontpage
- [x] Add model
- [x] Edit model
- [x] Model vocabularies
- [x] Model reference data
- [x] Model links
- [x] Model namespaces
- [x] Remove model
- [x] Add class (by concept, reference, external)
- [x] Add predicate (by concept, reference, external)
- [x] Edit class
- [x] Add property (by concept, existing predicate, external)
- [x] Edit property
- [x] Property predicate view
- [x] Edit predicate
- [x] Remove class
- [x] Remove predicate
- [x] Remove property
- [ ] Concept editor ! wont fix before termeditor is in use
|
1.0
|
E2E tests with protractor - # Sections
- [x] Frontpage
- [x] Add model
- [x] Edit model
- [x] Model vocabularies
- [x] Model reference data
- [x] Model links
- [x] Model namespaces
- [x] Remove model
- [x] Add class (by concept, reference, external)
- [x] Add predicate (by concept, reference, external)
- [x] Edit class
- [x] Add property (by concept, existing predicate, external)
- [x] Edit property
- [x] Property predicate view
- [x] Edit predicate
- [x] Remove class
- [x] Remove predicate
- [x] Remove property
- [ ] Concept editor ! wont fix before termeditor is in use
|
priority
|
tests with protractor sections frontpage add model edit model model vocabularies model reference data model links model namespaces remove model add class by concept reference external add predicate by concept reference external edit class add property by concept existing predicate external edit property property predicate view edit predicate remove class remove predicate remove property concept editor wont fix before termeditor is in use
| 1
|
373,549
| 11,045,547,946
|
IssuesEvent
|
2019-12-09 15:18:13
|
openshift/odo
|
https://api.github.com/repos/openshift/odo
|
closed
|
No pre check is done for existence of same component in the cluster
|
kind/bug priority/High triage/unresolved
|
/kind bug
<!--
Welcome! - We kindly ask you to:
1. Fill out the issue template below
2. Use the Google group if you have a question rather than a bug or feature request.
The group is at: https://groups.google.com/forum/#!forum/odo-users
Thanks for understanding, and for contributing to the project!
-->
## What versions of software are you using?
**Operating System:**
supported
**Output of `odo version`:**
master
## How did you run odo exactly?
```
$ odo create nodejs backend --context
/Users/amit/go/src/github.com/openshift/odo/tests/examples/source/nodejs/
--project test123
$ odo push --context /Users/amit/go/src/github.com/openshift/odo/tests/examples/source/nodejs/
$ odo component list --context
/Users/amit/go/src/github.com/openshift/odo/tests/examples/source/nodejs/
APP NAME TYPE SOURCE STATE
app backend nodejs file://./ Pushed -------------- Looks good
$ odo create python backend --context
/Users/amit/go/src/github.com/openshift/odo/tests/examples/source/nodejs/
--project test123
$ odo push --context /Users/amit/go/src/github.com/openshift/odo/tests/examples/source/python/
$ odo component list --context /Users/amit/go/src/github.com/openshift/odo/tests/examples/source/nodejs/
APP NAME TYPE SOURCE STATE
app backend python file://./ Pushed <----- nodejs component is replaced
$ odo component list --context /Users/amit/go/src/github.com/openshift/odo/tests/examples/source/python/
APP NAME TYPE SOURCE STATE
app backend python file://./ Pushed <----- nodejs component is replaced
```
## Actual behavior
Replacing the deployed component of same name
## Expected behavior
Should throw error of something like
```There is already a component of same name exist in the same app and in same namespace.```
## Any logs, error output, etc?
|
1.0
|
No pre check is done for existence of same component in the cluster - /kind bug
<!--
Welcome! - We kindly ask you to:
1. Fill out the issue template below
2. Use the Google group if you have a question rather than a bug or feature request.
The group is at: https://groups.google.com/forum/#!forum/odo-users
Thanks for understanding, and for contributing to the project!
-->
## What versions of software are you using?
**Operating System:**
supported
**Output of `odo version`:**
master
## How did you run odo exactly?
```
$ odo create nodejs backend --context
/Users/amit/go/src/github.com/openshift/odo/tests/examples/source/nodejs/
--project test123
$ odo push --context /Users/amit/go/src/github.com/openshift/odo/tests/examples/source/nodejs/
$ odo component list --context
/Users/amit/go/src/github.com/openshift/odo/tests/examples/source/nodejs/
APP NAME TYPE SOURCE STATE
app backend nodejs file://./ Pushed -------------- Looks good
$ odo create python backend --context
/Users/amit/go/src/github.com/openshift/odo/tests/examples/source/nodejs/
--project test123
$ odo push --context /Users/amit/go/src/github.com/openshift/odo/tests/examples/source/python/
$ odo component list --context /Users/amit/go/src/github.com/openshift/odo/tests/examples/source/nodejs/
APP NAME TYPE SOURCE STATE
app backend python file://./ Pushed <----- nodejs component is replaced
$ odo component list --context /Users/amit/go/src/github.com/openshift/odo/tests/examples/source/python/
APP NAME TYPE SOURCE STATE
app backend python file://./ Pushed <----- nodejs component is replaced
```
## Actual behavior
Replacing the deployed component of same name
## Expected behavior
Should throw error of something like
```There is already a component of same name exist in the same app and in same namespace.```
## Any logs, error output, etc?
|
priority
|
no pre check is done for existence of same component in the cluster kind bug welcome we kindly ask you to fill out the issue template below use the google group if you have a question rather than a bug or feature request the group is at thanks for understanding and for contributing to the project what versions of software are you using operating system supported output of odo version master how did you run odo exactly odo create nodejs backend context users amit go src github com openshift odo tests examples source nodejs project odo push context users amit go src github com openshift odo tests examples source nodejs odo component list context users amit go src github com openshift odo tests examples source nodejs app name type source state app backend nodejs file pushed looks good odo create python backend context users amit go src github com openshift odo tests examples source nodejs project odo push context users amit go src github com openshift odo tests examples source python odo component list context users amit go src github com openshift odo tests examples source nodejs app name type source state app backend python file pushed nodejs component is replaced odo component list context users amit go src github com openshift odo tests examples source python app name type source state app backend python file pushed nodejs component is replaced actual behavior replacing the deployed component of same name expected behavior should throw error of something like there is already a component of same name exist in the same app and in same namespace any logs error output etc
| 1
|
476,263
| 13,736,109,546
|
IssuesEvent
|
2020-10-05 11:13:47
|
stylelint/stylelint
|
https://api.github.com/repos/stylelint/stylelint
|
closed
|
Fix file paths that contain the `+` character being ignored
|
priority: high status: ready to implement type: bug
|
> Clearly describe the bug
File paths that contain a `+` are either not linted or will fail with an error.
If the glob pattern itself contains a `+` itself it will throw this error even if it's quoted or escaped:
```
Error: No files matching the pattern "src/app/+route" were found.
at globby.then.filePaths (/.../node_modules/stylelint/lib/standalone.js:206:17)
at process._tickCallback (internal/process/next_tick.js:68:7)
error Command failed with exit code 1.
```
If the glob pattern does not contain a `+` but the pattern would match paths that do contain a `+` it will not error, but it also won't lint those files either. It seems to just ignore them.
> Which rule, if any, is the bug related to?
n/a
> What CSS is needed to reproduce the bug?
n/a
> What stylelint configuration is needed to reproduce the bug?
n/a
> Which version of stylelint are you using?
`10.1.0`
> How are you running stylelint: CLI, PostCSS plugin, Node.js API?
- `stylelint src/app/+route/styles.scss`
- `stylelint src/app/+route`
- `stylelint 'src/app/+route/styles.scss'`
- `stylelint src/app/\+route/styles.scss`
> Does the bug relate to non-standard syntax (e.g. SCSS, Less etc.)?
n/a
> What did you expect to happen?
It will lint file paths that contain the `+` symbol it does not throw an error and also lints files that might be in paths that contain a `+`.
> What actually happened (e.g. what warnings or errors did you get)?
Doesn't lint the files or throws an error.
<!--
Before posting, please check that the bug hasn't already been:
1. fixed in the next release (https://github.com/stylelint/stylelint/blob/master/CHANGELOG.md)
2. discussed previously (https://github.com/stylelint/stylelint/search)
-->
<!--
You can help us fix the bug more quickly by:
1. Figuring out what needs to be done and proposing it
2. Submitting a PR with failing tests.
Once the bug has been confirmed, you can help out further by:
1. Writing the code and submitting a PR.
-->
Some initial investigation seems to suggest this might be an issue in `globby`. I tried updating `globby` to the latest version and it no longer threw the errors. However, it also didn't pick up actual linting errors for any files contained with paths that contain `+`. I've tried the same with other linters `TSLint` & `ESLint` and both seem to handle these paths fine. However, they also don't use `globby` either.
|
1.0
|
Fix file paths that contain the `+` character being ignored - > Clearly describe the bug
File paths that contain a `+` are either not linted or will fail with an error.
If the glob pattern itself contains a `+` itself it will throw this error even if it's quoted or escaped:
```
Error: No files matching the pattern "src/app/+route" were found.
at globby.then.filePaths (/.../node_modules/stylelint/lib/standalone.js:206:17)
at process._tickCallback (internal/process/next_tick.js:68:7)
error Command failed with exit code 1.
```
If the glob pattern does not contain a `+` but the pattern would match paths that do contain a `+` it will not error, but it also won't lint those files either. It seems to just ignore them.
> Which rule, if any, is the bug related to?
n/a
> What CSS is needed to reproduce the bug?
n/a
> What stylelint configuration is needed to reproduce the bug?
n/a
> Which version of stylelint are you using?
`10.1.0`
> How are you running stylelint: CLI, PostCSS plugin, Node.js API?
- `stylelint src/app/+route/styles.scss`
- `stylelint src/app/+route`
- `stylelint 'src/app/+route/styles.scss'`
- `stylelint src/app/\+route/styles.scss`
> Does the bug relate to non-standard syntax (e.g. SCSS, Less etc.)?
n/a
> What did you expect to happen?
It will lint file paths that contain the `+` symbol it does not throw an error and also lints files that might be in paths that contain a `+`.
> What actually happened (e.g. what warnings or errors did you get)?
Doesn't lint the files or throws an error.
<!--
Before posting, please check that the bug hasn't already been:
1. fixed in the next release (https://github.com/stylelint/stylelint/blob/master/CHANGELOG.md)
2. discussed previously (https://github.com/stylelint/stylelint/search)
-->
<!--
You can help us fix the bug more quickly by:
1. Figuring out what needs to be done and proposing it
2. Submitting a PR with failing tests.
Once the bug has been confirmed, you can help out further by:
1. Writing the code and submitting a PR.
-->
Some initial investigation seems to suggest this might be an issue in `globby`. I tried updating `globby` to the latest version and it no longer threw the errors. However, it also didn't pick up actual linting errors for any files contained with paths that contain `+`. I've tried the same with other linters `TSLint` & `ESLint` and both seem to handle these paths fine. However, they also don't use `globby` either.
|
priority
|
fix file paths that contain the character being ignored clearly describe the bug file paths that contain a are either not linted or will fail with an error if the glob pattern itself contains a itself it will throw this error even if it s quoted or escaped error no files matching the pattern src app route were found at globby then filepaths node modules stylelint lib standalone js at process tickcallback internal process next tick js error command failed with exit code if the glob pattern does not contain a but the pattern would match paths that do contain a it will not error but it also won t lint those files either it seems to just ignore them which rule if any is the bug related to n a what css is needed to reproduce the bug n a what stylelint configuration is needed to reproduce the bug n a which version of stylelint are you using how are you running stylelint cli postcss plugin node js api stylelint src app route styles scss stylelint src app route stylelint src app route styles scss stylelint src app route styles scss does the bug relate to non standard syntax e g scss less etc n a what did you expect to happen it will lint file paths that contain the symbol it does not throw an error and also lints files that might be in paths that contain a what actually happened e g what warnings or errors did you get doesn t lint the files or throws an error before posting please check that the bug hasn t already been fixed in the next release discussed previously you can help us fix the bug more quickly by figuring out what needs to be done and proposing it submitting a pr with failing tests once the bug has been confirmed you can help out further by writing the code and submitting a pr some initial investigation seems to suggest this might be an issue in globby i tried updating globby to the latest version and it no longer threw the errors however it also didn t pick up actual linting errors for any files contained with paths that contain i ve tried the same with other linters tslint eslint and both seem to handle these paths fine however they also don t use globby either
| 1
|
667,359
| 22,468,112,775
|
IssuesEvent
|
2022-06-22 05:03:36
|
pipalacademy/engage
|
https://api.github.com/repos/pipalacademy/engage
|
closed
|
[Story] Code review for problem submissions
|
priority: high
|
As a trainer
- [x] I should be able to see review comments left by me and other trainers
- [ ] I should be able to see which comments are stale
- [ ] ~~I should be able to see the submissions on which my review was requested~~
- [x] I should be able to add comments on problem submissions
- [ ] I should be able to add a rating for correctness and clarity
As a participant
- [x] I should be able to see the comments on my submission
- [x] I should be able to submit again and ask for a re-review
|
1.0
|
[Story] Code review for problem submissions - As a trainer
- [x] I should be able to see review comments left by me and other trainers
- [ ] I should be able to see which comments are stale
- [ ] ~~I should be able to see the submissions on which my review was requested~~
- [x] I should be able to add comments on problem submissions
- [ ] I should be able to add a rating for correctness and clarity
As a participant
- [x] I should be able to see the comments on my submission
- [x] I should be able to submit again and ask for a re-review
|
priority
|
code review for problem submissions as a trainer i should be able to see review comments left by me and other trainers i should be able to see which comments are stale i should be able to see the submissions on which my review was requested i should be able to add comments on problem submissions i should be able to add a rating for correctness and clarity as a participant i should be able to see the comments on my submission i should be able to submit again and ask for a re review
| 1
|
339,563
| 10,256,197,883
|
IssuesEvent
|
2019-08-21 17:04:57
|
ngageoint/hootenanny-ui
|
https://api.github.com/repos/ngageoint/hootenanny-ui
|
closed
|
UI adv opts sends mismatching matcher/merger config strings to web service
|
Category: UI Defined Priority: High Type: Bug
|
**Don't start on this until https://github.com/ngageoint/hootenanny/pull/2148 is merged.**
The hoot core settings "match.creators" and "merger.creators" are both a semicolon delimited string made of individual matchers/mergers and always must be of the same length. Currently, the UI adv opts sends strings with different numbers of inputs for each.
As part of [2145](https://github.com/ngageoint/hootenanny/issues/2145) a check was added to core to throw an exception when this happens. When running on the ? branch now, you will see an error like this if a mismatch is sent to the web services:
`22:05:43.787 DEBUG ...core/conflate/MatchFactory.cpp( 154) matchCreators: [5]{hoot::PoiPolygonMatchCreator, hoot::NetworkMatchCreator, hoot::BuildingMatchCreator, hoot::ScriptMatchCreator,PoiGeneric.js, hoot::ScriptMatchCreator,LinearWaterway.js}
22:05:43.788 DEBUG ...core/conflate/MatchFactory.cpp( 156) mergerCreators: [4]{hoot::PoiPolygonMergerCreator, hoot::NetworkMergerCreator, hoot::BuildingMergerCreator, hoot::ScriptMergerCreator}
], stderr=[Error running conflate:
The number of configured match creators (5) does not equal the number of configured merger creators (4)`
The adv opts UI needs to be corrected so that the number of matchers/creators is the same. The overall ordering of matchers/creators in both config strings is not important (e.g. match.creators="hoot::BuildingMatchCreator;hoot::NetworkMatchCreator" is equivalent to match.creators="hoot::NetworkMatchCreator;hoot::BuildingMatchCreator"), but each entry in the matchers list always needs to match in the correct order with the corresponding entry in the mergers list. (e.g. the following would be wrong: match.creators="hoot::BuildingMatchCreator;hoot::NetworkMatchCreator" and merger.creators=""hoot::NetworkMergerCreator;hoot::BuildingMergerCreator). Here is the current list of matchers and valid mergers:
- hoot::BuildingMatchCreator/hoot::BuildingMergerCreator
- hoot::HighwayMatchCreator/hoot::HighwaySnapMergerCreator
- hoot::NetworkMatchCreator/hoot::NetworkMergerCreator
- hoot::PoiPolygonMatchCreator/hoot::PoiPolygonMergerCreator
- hoot::ScriptMatchCreator,Area.js/hoot::ScriptMergerCreator
- hoot::ScriptMatchCreator,LinearWaterway.js/hoot::ScriptMergerCreator
- hoot::ScriptMatchCreator,PoiGeneric.js/hoot::ScriptMergerCreator
There must always be a separate hoot::ScriptMergerCreator entry for each hoot::ScriptMatchCreator,* entry.
For more info on matchers/mergers, see [match creators](https://github.com/ngageoint/hootenanny/blob/develop/conf/core/ConfigOptions.asciidoc#matchcreators) and [merger creators](https://github.com/ngageoint/hootenanny/blob/develop/conf/core/ConfigOptions.asciidoc#mergercreators).
When this and the following options are done, the autocorrect.options parameter can be removed from both the UI and the core:
* #969
* #970
* #971
|
1.0
|
UI adv opts sends mismatching matcher/merger config strings to web service - **Don't start on this until https://github.com/ngageoint/hootenanny/pull/2148 is merged.**
The hoot core settings "match.creators" and "merger.creators" are both a semicolon delimited string made of individual matchers/mergers and always must be of the same length. Currently, the UI adv opts sends strings with different numbers of inputs for each.
As part of [2145](https://github.com/ngageoint/hootenanny/issues/2145) a check was added to core to throw an exception when this happens. When running on the ? branch now, you will see an error like this if a mismatch is sent to the web services:
`22:05:43.787 DEBUG ...core/conflate/MatchFactory.cpp( 154) matchCreators: [5]{hoot::PoiPolygonMatchCreator, hoot::NetworkMatchCreator, hoot::BuildingMatchCreator, hoot::ScriptMatchCreator,PoiGeneric.js, hoot::ScriptMatchCreator,LinearWaterway.js}
22:05:43.788 DEBUG ...core/conflate/MatchFactory.cpp( 156) mergerCreators: [4]{hoot::PoiPolygonMergerCreator, hoot::NetworkMergerCreator, hoot::BuildingMergerCreator, hoot::ScriptMergerCreator}
], stderr=[Error running conflate:
The number of configured match creators (5) does not equal the number of configured merger creators (4)`
The adv opts UI needs to be corrected so that the number of matchers/creators is the same. The overall ordering of matchers/creators in both config strings is not important (e.g. match.creators="hoot::BuildingMatchCreator;hoot::NetworkMatchCreator" is equivalent to match.creators="hoot::NetworkMatchCreator;hoot::BuildingMatchCreator"), but each entry in the matchers list always needs to match in the correct order with the corresponding entry in the mergers list. (e.g. the following would be wrong: match.creators="hoot::BuildingMatchCreator;hoot::NetworkMatchCreator" and merger.creators=""hoot::NetworkMergerCreator;hoot::BuildingMergerCreator). Here is the current list of matchers and valid mergers:
- hoot::BuildingMatchCreator/hoot::BuildingMergerCreator
- hoot::HighwayMatchCreator/hoot::HighwaySnapMergerCreator
- hoot::NetworkMatchCreator/hoot::NetworkMergerCreator
- hoot::PoiPolygonMatchCreator/hoot::PoiPolygonMergerCreator
- hoot::ScriptMatchCreator,Area.js/hoot::ScriptMergerCreator
- hoot::ScriptMatchCreator,LinearWaterway.js/hoot::ScriptMergerCreator
- hoot::ScriptMatchCreator,PoiGeneric.js/hoot::ScriptMergerCreator
There must always be a separate hoot::ScriptMergerCreator entry for each hoot::ScriptMatchCreator,* entry.
For more info on matchers/mergers, see [match creators](https://github.com/ngageoint/hootenanny/blob/develop/conf/core/ConfigOptions.asciidoc#matchcreators) and [merger creators](https://github.com/ngageoint/hootenanny/blob/develop/conf/core/ConfigOptions.asciidoc#mergercreators).
When this and the following options are done, the autocorrect.options parameter can be removed from both the UI and the core:
* #969
* #970
* #971
|
priority
|
ui adv opts sends mismatching matcher merger config strings to web service don t start on this until is merged the hoot core settings match creators and merger creators are both a semicolon delimited string made of individual matchers mergers and always must be of the same length currently the ui adv opts sends strings with different numbers of inputs for each as part of a check was added to core to throw an exception when this happens when running on the branch now you will see an error like this if a mismatch is sent to the web services debug core conflate matchfactory cpp matchcreators hoot poipolygonmatchcreator hoot networkmatchcreator hoot buildingmatchcreator hoot scriptmatchcreator poigeneric js hoot scriptmatchcreator linearwaterway js debug core conflate matchfactory cpp mergercreators hoot poipolygonmergercreator hoot networkmergercreator hoot buildingmergercreator hoot scriptmergercreator stderr error running conflate the number of configured match creators does not equal the number of configured merger creators the adv opts ui needs to be corrected so that the number of matchers creators is the same the overall ordering of matchers creators in both config strings is not important e g match creators hoot buildingmatchcreator hoot networkmatchcreator is equivalent to match creators hoot networkmatchcreator hoot buildingmatchcreator but each entry in the matchers list always needs to match in the correct order with the corresponding entry in the mergers list e g the following would be wrong match creators hoot buildingmatchcreator hoot networkmatchcreator and merger creators hoot networkmergercreator hoot buildingmergercreator here is the current list of matchers and valid mergers hoot buildingmatchcreator hoot buildingmergercreator hoot highwaymatchcreator hoot highwaysnapmergercreator hoot networkmatchcreator hoot networkmergercreator hoot poipolygonmatchcreator hoot poipolygonmergercreator hoot scriptmatchcreator area js hoot scriptmergercreator hoot scriptmatchcreator linearwaterway js hoot scriptmergercreator hoot scriptmatchcreator poigeneric js hoot scriptmergercreator there must always be a separate hoot scriptmergercreator entry for each hoot scriptmatchcreator entry for more info on matchers mergers see and when this and the following options are done the autocorrect options parameter can be removed from both the ui and the core
| 1
|
411,340
| 12,017,129,859
|
IssuesEvent
|
2020-04-10 17:40:35
|
geomstats/geomstats
|
https://api.github.com/repos/geomstats/geomstats
|
opened
|
Remove warnings with nose2
|
high priority
|
Running nose2 with np, pytorch and tf prints a lot of warnings, specifically for the examples with np.
We should fix the issue, or prevent these warnings to be printed when using nose2.
|
1.0
|
Remove warnings with nose2 - Running nose2 with np, pytorch and tf prints a lot of warnings, specifically for the examples with np.
We should fix the issue, or prevent these warnings to be printed when using nose2.
|
priority
|
remove warnings with running with np pytorch and tf prints a lot of warnings specifically for the examples with np we should fix the issue or prevent these warnings to be printed when using
| 1
|
513,249
| 14,918,461,791
|
IssuesEvent
|
2021-01-22 21:44:23
|
3YOURMIND/kotti
|
https://api.github.com/repos/3YOURMIND/kotti
|
closed
|
Re-enable Jest for KtForm
|
package:kotti-ui priority:4-high scope:linting state:help wanted type:enhancement
|
We have unit tests for the KtForm that were disabled since moving to Lerna. We should re-enable them.
---
Split from #241
|
1.0
|
Re-enable Jest for KtForm - We have unit tests for the KtForm that were disabled since moving to Lerna. We should re-enable them.
---
Split from #241
|
priority
|
re enable jest for ktform we have unit tests for the ktform that were disabled since moving to lerna we should re enable them split from
| 1
|
152,016
| 5,831,629,238
|
IssuesEvent
|
2017-05-08 19:49:30
|
VulcanDev/FinalProjectICS4U
|
https://api.github.com/repos/VulcanDev/FinalProjectICS4U
|
closed
|
Completion of planet generation code.
|
enhancement high priority
|
Need to complete the code for planet generation to allow for modular spawning of planets based on climateID.
This way we can add and removal planets at will and it won't change the core function when generating planets.
|
1.0
|
Completion of planet generation code. - Need to complete the code for planet generation to allow for modular spawning of planets based on climateID.
This way we can add and removal planets at will and it won't change the core function when generating planets.
|
priority
|
completion of planet generation code need to complete the code for planet generation to allow for modular spawning of planets based on climateid this way we can add and removal planets at will and it won t change the core function when generating planets
| 1
|
125,780
| 4,964,696,571
|
IssuesEvent
|
2016-12-03 22:25:43
|
yairodriguez/uxmyths
|
https://api.github.com/repos/yairodriguez/uxmyths
|
opened
|
Myth 9
|
[priority] high [status] accepted [type] feature
|
### Description
Create the **Myth 9**, *Design has to be original*.
---
### Issue Checklist
- [ ] Write the needed tests.
- [ ] Create the markup for the component.
- [ ] Add the correct styles.
- [ ] Use the lint to clean `CSS` code.
- [ ] Document all things.
---
### Assignees
- [ ] Final assign @yairodriguez
|
1.0
|
Myth 9 - ### Description
Create the **Myth 9**, *Design has to be original*.
---
### Issue Checklist
- [ ] Write the needed tests.
- [ ] Create the markup for the component.
- [ ] Add the correct styles.
- [ ] Use the lint to clean `CSS` code.
- [ ] Document all things.
---
### Assignees
- [ ] Final assign @yairodriguez
|
priority
|
myth description create the myth design has to be original issue checklist write the needed tests create the markup for the component add the correct styles use the lint to clean css code document all things assignees final assign yairodriguez
| 1
|
342,631
| 10,319,846,460
|
IssuesEvent
|
2019-08-30 18:41:13
|
dasaderi/PIT_fellows_workgroup
|
https://api.github.com/repos/dasaderi/PIT_fellows_workgroup
|
closed
|
Steering committee members personal outreach
|
MozFest high_priority_level outreach
|
Everyone from the committee should reach out to their personal networks to share the survey. Please add bullet points as you plan your personal outreach.
- [x] Daniela to post on MoFo fellows' Slack
- [x] Reach out to Amel, Moz Science Fellow
- [x] Jen to send info out to Tech Exchange fellows
- [x] Becca to email the 2017-18 Mozilla fellows cohort
|
1.0
|
Steering committee members personal outreach - Everyone from the committee should reach out to their personal networks to share the survey. Please add bullet points as you plan your personal outreach.
- [x] Daniela to post on MoFo fellows' Slack
- [x] Reach out to Amel, Moz Science Fellow
- [x] Jen to send info out to Tech Exchange fellows
- [x] Becca to email the 2017-18 Mozilla fellows cohort
|
priority
|
steering committee members personal outreach everyone from the committee should reach out to their personal networks to share the survey please add bullet points as you plan your personal outreach daniela to post on mofo fellows slack reach out to amel moz science fellow jen to send info out to tech exchange fellows becca to email the mozilla fellows cohort
| 1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.