- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 7,083 for returned (0.1 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java
/** * Helper method to create an array of the appropriate type used by this generator. The returned * array will contain only nulls. */ E[] createArray(int length); /** * Returns the iteration ordering of elements, given the order in which they were added to the * container. This method may return the original list unchanged, the original list modified in * place, or a different list. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 21 16:49:06 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceLocator.java
* this method will return the referral path to which it maps. Otherwise * <code>null</code> is returned. * * @return URL to the DFS volume */ String getDfsPath (); /** * @return the transport port, if specified */ int getPort (); /** * @return the original URL */ URL getURL ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterators.java
* Returns a view of the supplied {@code iterator} that removes each element from the supplied * {@code iterator} as it is returned. * * <p>The provided iterator must support {@link Iterator#remove()} or else the returned iterator * will fail on the first call to {@code next}. The returned {@link Iterator} is also not * thread-safe. * * @param iterator the iterator to remove and return elements from
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 50.3K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Shorts.java
* * <p>The returned list maintains the values, but not the identities, of {@code Short} objects * written to or read from it. For example, whether {@code list.get(0) == list.get(0)} is true for * the returned list is unspecified. * * <p>The returned list is serializable. * * @param backingArray the array to back the list * @return a list view of the array */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 25.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Shorts.java
* * <p>The returned list maintains the values, but not the identities, of {@code Short} objects * written to or read from it. For example, whether {@code list.get(0) == list.get(0)} is true for * the returned list is unspecified. * * <p>The returned list is serializable. * * @param backingArray the array to back the list * @return a list view of the array */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 25.5K bytes - Viewed (0) -
docs/en/docs/advanced/response-cookies.md
``` And then you can return any object you need, as you normally would (a `dict`, a database model, etc). And if you declared a `response_model`, it will still be used to filter and convert the object you returned. **FastAPI** will use that *temporal* response to extract the cookies (also headers and status code), and will put them in the final response that contains the value you returned, filtered by any `response_model`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmAuthenticator.java
return this.sae; } /** * Used internally by jCIFS when an <tt>SmbAuthException</tt> is trapped to retrieve new user credentials. * * @param url * @param sae * @return credentials returned by prompt */ public static NtlmPasswordAuthenticator requestNtlmPasswordAuthentication ( String url, SmbAuthException sae ) { return requestNtlmPasswordAuthentication(auth, url, sae);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.4K bytes - Viewed (0) -
internal/ringbuffer/ring_buffer.go
defer r.mu.Unlock() if r.w == r.r { if r.isFull { return r.size } return 0 } if r.w > r.r { return r.w - r.r } return r.size - r.r + r.w } // Capacity returns the size of the underlying buffer. func (r *RingBuffer) Capacity() int { return r.size } // Free returns the length of available bytes to write. func (r *RingBuffer) Free() int {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 15 00:11:04 UTC 2024 - 13.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/RangeSet.java
* Iterable#iterator} method return the ranges in increasing order of lower bound (equivalently, * of upper bound). */ Set<Range<C>> asRanges(); /** * Returns a descending view of the {@linkplain Range#isConnected disconnected} ranges that make * up this range set. The returned set may be empty. The iterators returned by its {@link
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 21:19:52 UTC 2024 - 10.2K bytes - Viewed (0) -
tensorflow/c/c_api.h
// case though). // // If the evaluation is successful, this function returns true and `output`s // value is returned in `result`. Otherwise returns false. An error status is // returned if something is wrong with the graph or input. Note that this may // return false even if no error status is set. TF_CAPI_EXPORT extern unsigned char TF_TryEvaluateConstant(TF_Graph* graph,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0)