- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 394 for bounds (0.18 sec)
-
tensorflow/c/c_api.cc
} \ if (index < 0 || index >= list->response.size()) { \ status->status = InvalidArgument("index out of bounds"); \ return err_val; \ } \
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
doc/go1.17_spec.html
1e10 uint64 10000000000 is in the set of unsigned 64-bit integers 2.718281828459045 float32 2.718281828459045 rounds to 2.7182817 which is in the set of float32 values -1e-1000 float64 -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0 0i int 0 is an integer value
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
src/main/webapp/css/fonts/fa-brands-400.svg
fa-brands-400.svg...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Dec 14 21:22:25 UTC 2019 - 692.1K bytes - Viewed (0) -
src/main/webapp/css/admin/fonts/fa-brands-400.svg
fa-brands-400.svg...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Dec 14 21:22:25 UTC 2019 - 692.1K bytes - Viewed (0) -
api/go1.txt
pkg image, method (*RGBA64) ColorModel() color.Model pkg image, method (*RGBA64) Opaque() bool pkg image, method (*RGBA64) PixOffset(int, int) int pkg image, method (*RGBA64) Set(int, int, color.Color) pkg image, method (*RGBA64) SetRGBA64(int, int, color.RGBA64) pkg image, method (*RGBA64) SubImage(Rectangle) Image pkg image, method (*Uniform) At(int, int) color.Color pkg image, method (*Uniform) Bounds() Rectangle
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
doc/go_spec.html
(or even be just another bound type parameter). In a process of repeated simplification, the bound type parameters in each type argument are substituted with the respective type arguments for those type parameters until each type argument is free of bound type parameters. </p> <p> If type arguments contain cyclic references to themselves through bound type parameters, simplification and thus type inference fails.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.11.md
* PVC may not be synced to controller local cache in time if PV is bound by external PV binder (e.g. kube-scheduler), double check if PVC is not found to prevent reclaiming PV wrongly. ([#67062](https://github.com/kubernetes/kubernetes/pull/67062), [@cofyc](https://github.com/cofyc))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 328.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableRangeSet.java
* contents, such as {@code "[1..100]}"}. * * @throws IllegalArgumentException if neither this range nor the domain has a lower bound, or if * neither has an upper bound */ public ImmutableSortedSet<C> asSet(DiscreteDomain<C> domain) { checkNotNull(domain); if (isEmpty()) { return ImmutableSortedSet.of(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 27K bytes - Viewed (0) -
BUG-BOUNTY.md
Yuri Schimke <******@****.***> 1579981977 -0600
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 25 19:52:57 UTC 2020 - 361 bytes - Viewed (0) -
android/guava/src/com/google/common/collect/GeneralRange.java
T lbound = uncheckedCastNullableTToT(getLowerEndpoint()); int cmp = comparator.compare(t, lbound); return cmp < 0 | (cmp == 0 & getLowerBoundType() == OPEN); } boolean tooHigh(@ParametricNullness T t) { if (!hasUpperBound()) { return false; } // The cast is safe because of the hasUpperBound() check. T ubound = uncheckedCastNullableTToT(getUpperEndpoint());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 21:19:52 UTC 2024 - 10.8K bytes - Viewed (0)