-
Currently, we do not support using global variables inside a function's body:
```python
x = 1
def sum(y):
return x + y
sum(y)
```
The above will break since `sum` is using a variable …
-
As discussed in #13875, there is currently support for specifying the colors, based on the configuration in the theme in the following format: "common.white". For example:
```
text
```
This wo…
-
Currently I sign the release artefacts. This was needed in lieu of a LF process to perform this signing as part of a github action.
The LF have now completed the prep work to enable signing in a gith…
-
Ribbon makes extensive use of split packages (e.g. package com.netflix.client being both in ribbon-core and ribbon-loadbalancer, or package com.netflix.client.http in both ribbon-httpclient and ribbon…
-
### Suggestion
More separation between Public torrents and Private torrents - but also more integration - as follows
multi instance controlled from singe UI so each instance has different settin…
ghost updated
3 months ago
-
### Describe the suggested improvement
#### Is your improvement related to a problem? Please describe.
Our current Vue.js application has some remaining composables that maintain state at the mo…
-
I've discussed this partially elsewhere (e.g. [here](https://github.com/rust-lang/rfcs/pull/239#issuecomment-69131959) and [here](https://github.com/rust-lang/rfcs/pull/320#issuecomment-68871331), but…
-
When executing `MSG_SHIP_CREATE` the following bit of code is getting run:
https://github.com/storm-devs/storm-engine/blob/ee274cc0789fac2d7a2766cab378ec3c8316d075/src/libs/ship/src/ship.cpp#L1937-…
-
As suggested by @eregon in this StackOverflow question https://stackoverflow.com/questions/76567012/extending-monkey-patching-java-classes-in-truffle-ruby, I am opening an issue here.
We are curren…
-
## Given
The following condition:
``` java
String result1 = null;
for (String s : sortedSet) {
result1 = s.toString();
}
String result2 = null;
for (String s : list) {
result2 = s.toString(…