-
Here is the error:
```
RPC_ERROR
Odoo Server Error
Traceback (most recent call last):
File "/opt/odoo-test/odoo/odoo/http.py", line 1764, in _serve_db
return service_model.retrying(self.…
-
## 📝 Provide detailed reproduction steps (if any)
[Reproduction repo](https://github.com/Joel-Levi/ck-editor-5-reproductions)
(Open the index.html in the sample folder)
1. Have an editor with…
-
How use 'and' and 'or' filter ?
``` python
obj = Peta.Query.filter(lokasi__nearSphere=my_loc)
obj = obj.filter(lokasi__maxDistanceInKilometers=27.0)
```
give me empty result.
With raw REST request …
ghost updated
9 years ago
-
I'd suggest adding the support table for the column combinator
See https://www.w3.org/TR/selectors4/#column-combinator
with a warning :
_The following features are at-risk and may be dropped during t…
Yopai updated
8 years ago
-
```ts
type Combination = K extends U
? K extends string
? K | `${K} ${Combination}`
: ""
: "";
```
-
```ts
type Constraint = string | number | bigint | boolean | null | undefined;
type Join<
T extends unknown[],
U extends Constraint,
Result extends string = ''
> = T extends [infer F exten…
-
```ts
type AllCombinations<
T extends string[],
S extends string = T[number]
> = [S] extends [never]
? ''
: '' | {[K in S]: `${K} ${AllCombinations}`}[S]
type TrimRight=T extends …
-
```ts
type Helper = T extends [infer F,...infer R]? Helper: Suffix
type Join<
T extends any[],
Prefix extends string = ''
> =
T extends [infer F,...infer R]?
Join
: Prefix;
ty…
-
**This is a(n):**
- [x] New algorithm
- [ ] Update to an existing algorithm
- [ ] Error
- [ ] Proposal to the Repository
**Details:**
String algorithm:
You are given a string of l…
-
**Is your feature request related to a problem? Please describe.**
It is not possible to use the output (NodeCollection) of SelectNodesByMask() as an input to DumpLayerConnections().
**Describe th…