- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 524 for decoder (0.03 sec)
-
helm-releases/minio-3.1.0.tgz
client - https://docs.minio.io/docs/minio-client-quickstart-guide 2. export ACCESS_KEY=$(kubectl get secret {{ template "minio.secretName" . }} -o jsonpath="{.data.rootUser}" | base64 --decode) 3. export SECRET_KEY=$(kubectl get secret {{ template "minio.secretName" . }} -o jsonpath="{.data.rootPassword}" | base64 --decode) 4. mc alias set {{ template "minio.fullname" . }}-local http://localhost:{{ .Values.service.port }} "$ACCESS_KEY" "$SECRET_KEY" --api s3v4 5. mc ls {{ template "minio.fullname" . }}-local...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 12 18:19:27 UTC 2021 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
* @param text * the text to decrypt * @return the decrypted text */ public String decryptoText(final String text) { try { return new String(decrypto(Base64Util.decode(text)), charsetName); } catch (final UnsupportedEncodingException e) { throw new UnsupportedEncodingRuntimeException(e); } } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
return access; } /** * Return the SID associated with this ACE. * @return the SID for this ACE */ public SID getSID() { return sid; } int decode(final byte[] buf, int bi) { allow = buf[bi] == (byte) 0x00; bi++; flags = buf[bi++] & 0xFF; final int size = ServerMessageBlock.readInt2(buf, bi); bi += 2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
docs/em/docs/tutorial/testing.md
/// info ๐ ๐ `TestClient` ๐จ ๐ฝ ๐ ๐ช ๐ ๐ป, ๐ซ Pydantic ๐ท. ๐ฅ ๐ โ๏ธ Pydantic ๐ท ๐ ๐ฏ & ๐ ๐ ๐จ ๐ฎ ๐ฝ ๐ธ โฎ๏ธ ๐ฌ, ๐ ๐ช โ๏ธ `jsonable_encoder` ๐ฌ [๐ป ๐ ๐ข](encoder.md){.internal-link target=_blank}. /// ## ๐ โซ๏ธ โฎ๏ธ ๐, ๐ ๐ช โ `pytest`: <div class="termy"> ```console $ pip install pytest ---> 100% ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.9K bytes - Viewed (0) -
docs/erasure/README.md
MinIO protects data against hardware failures and silent data corruption using erasure code and checksums. With the highest level of redundancy, you may lose up to half (N/2) of the total drives and still be able to recover the data. ## What is Erasure Code?
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 4.2K bytes - Viewed (0) -
docs/en/docs/history-design-future.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.2K bytes - Viewed (0) -
docs/es/docs/tutorial/sql-databases.md
Si revisas la aplicaciรณn anterior, en la interfaz verรกs que, hasta ahora, permite al cliente decidir el `id` del `Hero` a crear. ๐ฑ No deberรญamos permitir que eso suceda, podrรญan sobrescribir un `id` que ya tenemos asignado en la base de datos. Decidir el `id` deberรญa ser tarea del **backend** o la **base de datos**, **no del cliente**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
} /* negotiation complete, remove the challenge object */ ssn.removeAttribute("NtlmHttpChal"); } else { final String auth = new String(Base64.decode(msg.substring(6)), "US-ASCII"); int index = auth.indexOf(':'); String user = index != -1 ? auth.substring(0, index) : auth;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
cci = Math.max(cci, createContextStart + nameOffset + nameLength); final CreateContextResponse cc = createContext(nameBytes); if (cc != null) { cc.decode(buffer, createContextStart + dataOffset, dataLength); contexts.add(cc); } cci = Math.max(cci, createContextStart + dataOffset + dataLength);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt
import okhttp3.HttpUrl.Companion.toHttpUrl import okhttp3.internal.idn.Punycode import okio.Buffer import okio.ByteString import okio.ByteString.Companion.encodeUtf8 /** * Tests how each code point is encoded and decoded in the context of each URL component. * * This supports [HttpUrlTest]. */ class UrlComponentEncodingTester private constructor() { private val encodings: MutableMap<Int, Encoding> = LinkedHashMap()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12.3K bytes - Viewed (0)