- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 213 for refused (0.08 sec)
-
guava/src/com/google/common/collect/ImmutableList.java
- * .add(new Color(0, 191, 255))
- * .build();
- * }</pre>
- *
- * <p>Elements appear in the resulting list in the same order they were added to the builder.
- *
- * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build
- * multiple lists in series. Each new list contains all the elements of the ones created before
- * it.
- *
- * @since 2.0
- */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 16 19:14:45 UTC 2024 - 30.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multiset.java
- * {@link #toString} on the {@link #entrySet}, yielding a result such as {@code [a x 3, c, d x 2,
- * e]}.
- */
- @Override
- String toString();
- // Refined Collection Methods
- /**
- * {@inheritDoc}
- *
- * <p>Elements that occur multiple times in the multiset will appear multiple times in this
- * iterator, though not necessarily sequentially.
- */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Jun 17 14:40:53 UTC 2023 - 21K bytes - Viewed (0) -
internal/s3select/sql/value.go
- errCmpMismatchedTypes = errors.New("cannot compare values of different types")
- errCmpInvalidBoolOperator = errors.New("invalid comparison operator for boolean arguments")
- )
- // Value represents a value of restricted type reduced from an
- // expression represented by an ASTNode. Only one of the fields is
- // non-nil.
- //
- // In cases where we are fetching data from a data source (like csv),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Feb 25 20:31:19 UTC 2022 - 20.2K bytes - Viewed (0) -
cmd/storage-datatypes.go
- buf := grid.GetByteBufferCap(32 + 16<<10)
- return &RenameDataInlineHandlerParams{RenameDataHandlerParams{FI: FileInfo{Data: buf[:0]}}}
- }
- // Recycle will reuse the memory allocated for the FileInfo data.
- func (r *RenameDataInlineHandlerParams) Recycle() {
- if r == nil {
- return
- }
- if cap(r.FI.Data) >= xioutil.SmallBlock {
- grid.PutByteBuffer(r.FI.Data)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 17.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java
- * .addCopies(Bean.GARDEN, 6)
- * .addCopies(Bean.RED, 8)
- * .addCopies(Bean.BLACK_EYED, 10)
- * .build();
- * }</pre>
- *
- * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build
- * multiple multisets in series.
- *
- * @since 12.0
- */
- public static class Builder<E> extends ImmutableMultiset.Builder<E> {
- /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 21:21:17 UTC 2024 - 35.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java
- * type. Later, RegularImmutableSortedSet.toArray() calls System.arraycopy()
- * to copy from that array to the destination array. This would be fine, but
- * GWT has a bug: It refuses to copy from an E[] to an Object[] when E is an
- * interface type.
- */
- // TODO: test other collections for this problem
- public void testOf_gwtArraycopyBug() {
- /*
- * The test requires:
- *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 46.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedSet.java
- * new ImmutableSortedSet.Builder<Number>(ODDS_FIRST_COMPARATOR)
- * .addAll(SINGLE_DIGIT_PRIMES)
- * .add(42)
- * .build();
- * }</pre>
- *
- * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build
- * multiple sets in series. Each set is a superset of the set created before it.
- *
- * @since 2.0
- */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 36.9K bytes - Viewed (0) -
cmd/xl-storage-disk-id-check.go
- // logSuccess will update the last successful operation time.
- func (h *healthDiskCtxValue) logSuccess() {
- atomic.StoreInt64(h.lastSuccess, time.Now().UnixNano())
- }
- // noopDoneFunc is a no-op done func.
- // Can be reused.
- var noopDoneFunc = func(_ int64, _ *error) {}
- // TrackDiskHealth for this request.
- // When a non-nil error is returned 'done' MUST be called
- // with the status of the response, if it corresponds to disk health.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:56:26 UTC 2024 - 34.5K bytes - Viewed (0) -
LICENSE
- so that distribution is permitted only in or among countries not thus
- excluded. In such case, this License incorporates the limitation as if
- written in the body of this License.
- 13. The Free Software Foundation may publish revised and/or new
- versions of the Lesser General Public License from time to time.
- Such new versions will be similar in spirit to the present version,
- but may differ in detail to address new problems or concerns.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Jan 18 20:25:38 UTC 2016 - 25.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
- // It's possible to race and suspend the thread just before the park call actually takes effect,
- // causing the thread to be suspended for 3.5 seconds, and then park itself for 2 seconds after
- // being resumed. To avoid a flake in this scenario, calculate how long that thread actually
- // waited and assert based on that time. Empirically, the race where the thread ends up waiting
- // for 5.5 seconds happens about 2% of the time.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 47.1K bytes - Viewed (0)