- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 1,501 for implement (0.57 sec)
-
docs/es/docs/how-to/conditional-openapi.md
* Asegúrate de tener modelos Pydantic bien definidos para tus request bodies y responses. * Configura los permisos y roles necesarios usando dependencias. * Nunca guardes contraseñas en texto plano, solo hashes de contraseñas. * Implementa y utiliza herramientas criptográficas bien conocidas, como Passlib y JWT tokens, etc. * Añade controles de permisos más detallados con OAuth2 scopes donde sea necesario. * ...etc.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 2.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeRangeSet.java
} else { rangesByLowerBound.put(range.lowerBound, range); } } @LazyInit private transient @Nullable RangeSet<C> complement; @Override public RangeSet<C> complement() { RangeSet<C> result = complement; return (result == null) ? complement = new Complement() : result; } @VisibleForTesting static final class RangesByUpperBound<C extends Comparable<?>>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 32.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/compression/DefaultCompressionService.java
return compressLZ77Huffman(data, offset, length); case COMPRESSION_LZNT1: throw new CIFSException("LZNT1 compression not yet implemented"); case COMPRESSION_PATTERN_V1: throw new CIFSException("Pattern_V1 compression not yet implemented"); default: throw new CIFSException("Unknown compression algorithm: " + algorithm); } } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/LockHeldAssertingSet.java
/** * {@link Set} implementation that asserts that a given lock is held whenever one of its methods is * called. */ @NullUnmarked class LockHeldAssertingSet<E> extends ForwardingSet<E> implements Serializable { final Set<E> delegate; final Object mutex; LockHeldAssertingSet(Set<E> delegate, Object mutex) { checkNotNull(mutex); this.delegate = delegate; this.mutex = mutex; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/LockHeldAssertingSet.java
/** * {@link Set} implementation that asserts that a given lock is held whenever one of its methods is * called. */ @NullUnmarked class LockHeldAssertingSet<E> extends ForwardingSet<E> implements Serializable { final Set<E> delegate; final Object mutex; LockHeldAssertingSet(Set<E> delegate, Object mutex) { checkNotNull(mutex); this.delegate = delegate; this.mutex = mutex; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
* HostPortSyncer: operates only with one IP family, skipping portmap entries with different IP families * Implement the documented API semantics of list-type and map-type atomic to reject non-atomic sub-types. ([#84722](https://github.com/kubernetes/kubernetes/pull/84722), [@sttts](https://github.com/sttts))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
src/main/java/jcifs/internal/smb2/rdma/RdmaConnection.java
/** * Abstract base class for RDMA connections. * * Manages connection state, credit flow control, and provides * abstract methods for RDMA operations that must be implemented * by specific provider implementations. */ public abstract class RdmaConnection implements AutoCloseable { /** * RDMA connection state enumeration */ public enum RdmaConnectionState { /** Connection is not established */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 8.2K bytes - Viewed (0) -
guava/src/com/google/common/base/Predicates.java
return new ContainsPatternPredicate(new JdkPattern(pattern)); } // End public API, begin private implementation classes. private enum ObjectPredicate implements Predicate<@Nullable Object> { /** * @see Predicates#alwaysTrue() */ ALWAYS_TRUE { @Override public boolean apply(@Nullable Object o) { return true; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 26.6K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Murmur3_128HashFunction.java
final class Murmur3_128HashFunction extends AbstractHashFunction implements Serializable { static final HashFunction MURMUR3_128 = new Murmur3_128HashFunction(0); static final HashFunction GOOD_FAST_HASH_128 = new Murmur3_128HashFunction(Hashing.GOOD_FAST_HASH_SEED); // TODO(user): when the shortcuts are implemented, update BloomFilterStrategies private final int seed;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 5.8K bytes - Viewed (0) -
docs/en/docs/release-notes.md
* Add link to Chinese article in [External Links](https://fastapi.tiangolo.com/external-links/). PR [810](https://github.com/tiangolo/fastapi/pull/810) by [@wxq0309](https://github.com/wxq0309). * Implement `OAuth2AuthorizationCodeBearer` class. PR [#797](https://github.com/tiangolo/fastapi/pull/797) by [@kuwv](https://github.com/kuwv).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0)