-
## Description
https://github.com/user-attachments/assets/8c002067-cba8-4775-8427-4fdd1a1719c3
## Expected behavior
Type casting should work.
## To Reproduce
- Try to import a CSV wit…
-
I am trying to use both of my GPUs who are passed through to my docker container.
```
services: faster-whisper-server-cuda: image: fedirz/faster-whisper-server:latest-cuda build: dockerfile: Dockerf…
-
Type argument inference for raw types should be improved and the "ignoreRawTypeArguments" option should be made optional again.
-
Example expressions:
1) `if(b.R5[Int].isDefined) {None} else {(pk, value)}`.
2) `val noneInt: Option[Int] = None`
SigmaTyper should be fixed, in particular method
`def assignType(env: Map[Strin…
-
**Minimal Complete Verifiable Example**:
```python
import numpy as np
import pandas as pd
import dask.dataframe as dd
df = pd.DataFrame([[4,np.asarray([[2, 7]])],[2,np.asarray([[0,5],[1,1]]…
-
(Scala 2.12.4, jdk1.8.0_121 x64)
I've been experimenting with tagged types in Scala and found a strange case, which I think in a bug in type inference system.
```scala
sealed trait CompanyIdTag
…
-
Given an environment where T is not bound to some type, I can get this error message:
```scala
Foo.scala:21: error: type mismatch;
found : Foo.Exp[Seq[T]]
required: Foo.Exp[Seq[Nothing]]
…
-
Below is an reproduction of the problem, on both 2.12.8 and 2.13.0-M5.
```scala
scala> :paste
// Entering paste mode (ctrl-D to finish)
object Bug {
import java.nio._
def apply[T,B]…
-
Some[Any]?
```scala
class A {
// Inferred type is Some[Any]
def f1(x: Any) = x match { case y @ Some(Some(Some(_: String))) => y }
}
```
-
Rust fails to properly infer types when there is a type parameter that implements are trait that contains associated types that have relationships between each other.
Suppose there are two structs …