- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 427 for decodeId (0.05 sec)
-
docs/sts/client-grants.go
if err != nil { return nil, err } defer resp.Body.Close() if resp.StatusCode != http.StatusOK { return nil, fmt.Errorf("%s", resp.Status) } var idpToken JWTToken if err = json.NewDecoder(resp.Body).Decode(&idpToken); err != nil { return nil, err } return &credentials.ClientGrantsToken{Token: idpToken.AccessToken, Expiry: idpToken.Expiry}, nil } func main() { flag.Parse()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 19 01:35:22 UTC 2021 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
} } final String targetUrl = pathMappingHelper.replaceUrl(url); String hash; if (StringUtil.isNotBlank(form.hash)) { final String value = URLUtil.decode(form.hash, Constants.UTF_8); if (targetUrl.indexOf('#') == -1) { final StringBuilder buf = new StringBuilder(value.length() + 100); for (final char c : value.toCharArray()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/Referral.java
* * @return the expandedNames */ public final String[] getExpandedNames() { return this.expandedNames; } @Override public int decode(final byte[] buffer, int bufferIndex, final int len) { final int start = bufferIndex; this.version = SMBUtil.readInt2(buffer, bufferIndex); if (this.version != 3 && this.version != 1) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/RecordedRequest.kt
* with chunked encoding. */ public val chunkSizes: List<Int>?, /** * The failure MockWebServer recorded when attempting to decode this request. If, for example, * the inbound request was truncated, this exception will be non-null. */ public val failure: IOException? = null, ) { public val requestLine: String
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 3.2K bytes - Viewed (0) -
cmd/utils.go
return input, nil } // xmlDecoder provide decoded value in xml. func xmlDecoder(body io.Reader, v any, size int64) error { var lbody io.Reader if size > 0 { lbody = io.LimitReader(body, size) } else { lbody = body } d := xml.NewDecoder(lbody) // Ignore any encoding set in the XML body d.CharsetReader = nopCharsetConverter err := d.Decode(v) if errors.Is(err, io.EOF) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 33K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java
SMBUtil.writeInt2(algo, dst, dstIndex); dstIndex += 2; } return dstIndex - start; } @Override public int decode(byte[] buffer, int bufferIndex, int len) throws SMBProtocolDecodingException { if (len < 8) { throw new SMBProtocolDecodingException("Invalid compression context length: " + len); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureCredentialStorage.java
public char[] decryptFromString(String encryptedString) throws GeneralSecurityException { if (encryptedString == null) { return null; } byte[] encrypted = Base64.getDecoder().decode(encryptedString); return decryptCredentials(encrypted); } /** * Get the salt used for key derivation * * @return salt bytes */ public byte[] getSalt() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
CHANGELOG.md
capability. * Fix: Don't crash on `trailers()` if the response doesn't have a body. We broke [Retrofit] users who read the trailers on the `raw()` OkHttp response, after its body was decoded. ## Version 5.0.0 _2025-07-02_ This is our first stable release of OkHttp since 2023. Here's the highlights if you're upgrading from OkHttp 4.x:
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 31.6K bytes - Viewed (1) -
docs/debugging/xl-meta/main.go
foundData := make(map[string][]byte) partDataToVerID := make(map[string][2]string) var baseName string // versionID -> combineFiles := make(map[string][]string) decode := func(r io.Reader, file string) ([]byte, error) { file = strings.ReplaceAll(file, ":", "_") b, err := io.ReadAll(r) if err != nil { return nil, err } b, _, minor, err := checkXL2V1(b)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 40.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java
final int start = bufferIndex; final FileInformation inf = createFileInformation(); if (inf != null) { bufferIndex += inf.decode(buffer, bufferIndex, getDataCount()); this.info = inf; } return bufferIndex - start; } private FileInformation createFileInformation() { FileInformation inf;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0)