- Sort Score
- Num 10 results
- Language All
Results 681 - 690 of 816 for puts (0.02 seconds)
-
cmd/erasure-multipart.go
// Add input readahead. // We use 2 buffers, so we always have a full buffer of input. pool := globalBytePoolCap.Load() bufA := pool.Get() bufB := pool.Get() defer pool.Put(bufA) defer pool.Put(bufB) ra, err := readahead.NewReaderBuffer(data, [][]byte{bufA[:fi.Erasure.BlockSize], bufB[:fi.Erasure.BlockSize]}) if err == nil { toEncode = ra defer ra.Close() } }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Oct 24 04:05:31 GMT 2025 - 47.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java
if (authScope.getHost() != null && authScheme != null) { final HttpHost targetHost = new HttpHost(authScope.getSchemeName(), authScope.getHost(), authScope.getPort()); authCache.put(targetHost, authScheme); } } } httpClientContext.setAuthCache(authCache); httpClientContext.setCredentialsProvider(credentialsProvider);
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sat Jan 31 12:23:29 GMT 2026 - 62.2K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/simple-oauth2.md
"full_name": "John Doe", "disabled": false, "hashed_password": "fakehashedsecret" } ``` <img src="/img/tutorial/security/image06.png"> Si vous cliquez sur l'icône de cadenas et vous vous déconnectez, puis réessayez la même opération, vous obtiendrez une erreur HTTP 401 : ```JSON { "detail": "Not authenticated" } ``` ### Utilisateur inactif { #inactive-user }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 11.2K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
} final String destPropertyName = options.toMapDestPropertyName(srcPropertyName); final Object convertedValue = options.convertValue(value, destPropertyName, null); dest.put(destPropertyName, convertedValue); } } /** * Copies from a {@literal Map} to a Bean. * * @param src The source {@literal Map}. Must not be {@literal null}.Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 23.5K bytes - Click Count (0) -
docs/contribute/concurrency.md
Since HTTP requests frequently happen in parallel, connection pooling must be thread-safe.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 06 16:35:36 GMT 2022 - 7K bytes - Click Count (0) -
src/main/java/jcifs/smb/PreauthIntegrityService.java
throw new CIFSException("Unsupported hash algorithm: " + hashAlgorithm); } PreauthIntegrityContext context = new PreauthIntegrityContext(salt, hashAlgorithm); sessionContexts.put(sessionId, context); log.debug("Initialized preauth integrity context for session {}", sessionId); return context; } /** * Updates the preauth integrity hash with a new message.
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 12.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
if (existing == null || !existing.matches(size, lastModified, attributes)) { children.put(childName, newInfo); hasChanges = true; lastUpdateTime = System.currentTimeMillis(); } } finally { lock.writeLock().unlock(); } }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 11.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/util/transport/Transport.java
public synchronized void sendrecv(final Request request, final Response response, long timeout) throws IOException { makeKey(request); response.isReceived = false; try { response_map.put(request, response); doSend(request); response.expiration = System.currentTimeMillis() + timeout; while (!response.isReceived) { wait(timeout);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 11.3K bytes - Click Count (0) -
compat/maven-model-builder/pom.xml
<!-- <exclude>org.apache.maven.model.building.ModelCache#put(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Object):METHOD_REMOVED</exclude>-->
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 12.3K bytes - Click Count (0) -
docs/fr/docs/tutorial/body.md
/// info Pour envoyer de la donnée, vous devez utiliser : `POST` (le plus populaire), `PUT`, `DELETE` ou `PATCH`. Envoyer un corps dans une requête `GET` a un comportement non défini dans les spécifications, cela est néanmoins supporté par **FastAPI**, seulement pour des cas d'utilisation très complexes/extrêmes.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.8K bytes - Click Count (0)