-
Get rid of getter and setter methods throughout code, as these are not needed in python.
-
```
Expected output :
@Getter(annotations = { "@MyAnnotation" })
private Foo bar;
to generate :
@MyAnnotation
public Foo getBar() {
return this.bar;
}
```
Original issue reported on code.googl…
-
Currently, the signature of optimizers only allows the following:
```
def __init__(self, wrt, f, ...):
# ...
```
However, in some cases, this can lead to problems with the GPU: e.g. theano does …
-
SQLAlchemy 1.2 was recently released, and changed its behavior of `hybrid_property` a bit to line up with how Python's `@property` works. Specifically, it's now necessary to use the same method name f…
-
Something I'm trying to figure out how to implement is a way to have multiple Cradle stories get/set StoryVars from a shared location. This way, Cradle stories can share information with one another, …
-
I suggest we use [project lombok](https://projectlombok.org/) for Phoenicis to help us generate methods like getter, setter, hashcode and equals methods.
What do you think?
-
```
Expected output :
@Getter(annotations = { "@MyAnnotation" })
private Foo bar;
to generate :
@MyAnnotation
public Foo getBar() {
return this.bar;
}
```
Original issue reported on code.googl…
-
In MIDL, developers can define methods that refer to properties in COM by attributing methods with particular signatures with the `propget`, `propput`, or `propputref` attributes. In built-in COM mars…
-
**Purpose:**
Creating this issue, as per discussion on [this Slack thread](https://openlineage.slack.com/archives/C01CK9T7HKR/p1699266123453379).
For teams trying to adopt openlineage at scale i…
-
- Getter and setter are correctly set
- Invocations candidates are not nil (see #498 )