- Sort Score
- Result 10 results
- Languages All
Results 11 - 14 of 14 for acc (0.03 sec)
-
cmd/iam-store.go
return updatedAt, errors.New("unknown account status value") } m, err := getClaimsFromTokenWithSecret(cr.SessionToken, currentSecretKey) if err != nil { return updatedAt, fmt.Errorf("unable to get svc acc claims: %v", err) } // Extracted session policy name string can be removed as its not useful // at this point. m.Delete(sessionPolicyNameExtracted)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 87.1K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<glob pattern="*.azs"/> </mime-type> <mime-type type="application/vnd.amazon.ebook"> <glob pattern="*.azw"/> </mime-type> <mime-type type="application/vnd.americandynamics.acc"> <glob pattern="*.acc"/> </mime-type> <mime-type type="application/vnd.amiga.ami"> <glob pattern="*.ami"/> </mime-type> <mime-type type="application/vnd.anser-web-certificate-issue-initiation">
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Oct 16 07:46:32 UTC 2025 - 320.2K bytes - Viewed (5) -
lib/fips140/v1.1.0-rc1.zip
b)) if bitlen <= 0 || bitlen > 16 { panic("mldsa: internal error: invalid bitlen") } out, v := sliceForAppend(buf, n*bitlen/8) var acc uint32 var accBits uint for i := range r { w := int32(b) - fieldCenteredMod(r[i]) acc |= uint32(w) << accBits accBits += uint(bitlen) for accBits >= 8 { v[0] = byte(acc) v = v[1:] acc >>= 8 accBits -= 8 } } if accBits > 0 { v[0] = byte(acc) } return out } func bitUnpackSlow(v []byte, a, b int) (ringElement, error) { bitlen := bits.Len(uint(a + b)) if bitlen <= 0 || bitlen...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0) -
lib/fips140/v1.0.0-c2097c7c.zip
not the identity element, and returns the // x-coordinate of the result, performing Steps 2-5 of Section 5.7.1.2. return p.BytesX() } // isZero reports whether x is all zeroes in constant time. func isZero(x []byte) bool { var acc byte for _, b := range x { acc |= b } return acc == 0 } // isLess reports whether a < b, where a and b are big-endian buffers of the // same length and shorter than 72 bytes. func isLess(a, b []byte) bool { if len(a) != len(b) { panic("crypto/ecdh: internal error: mismatched...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0)