- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for opcodes (0.06 sec)
-
src/cmd/asm/internal/asm/testdata/ppc64.s
XOR $1234567, R5, R3 // 6ca300126863d687 XORIS $15, R3, R4 // 6c64000f XOR $983040, R3, R4 // 6c64000f // TODO: cleanup inconsistency of printing CMPx opcodes with explicit CR arguments. CMP R3, R4 // 7c232000 CMP R3, R0 // 7c230000 CMP R3, R0, CR1 // CMP R3,CR1,R0 // 7ca30000
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Oct 29 13:14:38 UTC 2024 - 51K bytes - Viewed (0) -
cmd/api-errors.go
ErrTooManyRequests ErrInvalidRequest ErrTransitionStorageClassNotFoundError // MinIO storage class error codes ErrInvalidStorageClass ErrBackendDown // Add new extended error codes here. // Please open a https://github.com/minio/minio/issues before adding // new error codes here. ErrMalformedJSON ErrAdminNoSuchUser ErrAdminNoSuchUserLDAPWarn ErrAdminLDAPExpectedLoginName
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 92.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
int[] codes = (int[]) propMap.get(CRAWLER_FAILURE_URL_STATUS_CODES); if (codes == null) { codes = split(getCrawlerFailureUrlStatusCodes(), ",") .get(stream -> stream.filter(StringUtil::isNotBlank).mapToInt(Integer::parseInt).toArray()); propMap.put(CRAWLER_FAILURE_URL_STATUS_CODES, codes); } for (final int v : codes) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 87.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/HttpUrl.kt
* * [Punycode](http://ietf.org/rfc/rfc3492.txt) converts a Unicode string to an ASCII string to make * international domain names work everywhere. For example, "σ" encodes as "xn--4xa". The encoded * string is not human readable, but can be used with classes like [InetAddress] to establish * connections. * * ## Why another URL model? *
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 09 12:33:05 UTC 2024 - 63.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm.s
// // MCR MRC // // LTYPEJ cond con ',' expr ',' spreg ',' creg ',' creg oexpr // { // var g obj.Addr // // g = nullgen; // g.Type = obj.TYPE_CONST; // g.Offset = int64( // (0xe << 24) | /* opcode */ // ($1 << 20) | /* MCR/MRC */ // (($2^C_SCOND_XOR) << 28) | /* scond */ // (($3 & 15) << 8) | /* coprocessor number */ // (($5 & 7) << 21) | /* coprocessor operation */
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 15 20:51:01 UTC 2023 - 69K bytes - Viewed (0) -
cmd/erasure-object.go
} return fi.ToObjectInfo(minioMetaBucket, key, opts.Versioned || opts.VersionSuspended), nil } // PutObject - creates an object upon reading from the input stream // until EOF, erasure codes the data across all disk and additionally // writes `xl.meta` which carries the necessary metadata for future // object operations.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 78.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
boolean checkStatus ( ServerMessageBlock req, ServerMessageBlock resp ) throws SmbException { boolean cont = false; if ( resp.getErrorCode() == 0x30002 ) { // if using DOS error codes this indicates a DFS referral resp.setErrorCode(NtStatus.NT_STATUS_PATH_NOT_COVERED); } else { resp.setErrorCode(SmbException.getStatusByCode(resp.getErrorCode())); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
guava/src/com/google/common/base/CharMatcher.java
return JavaLowerCase.INSTANCE; } /** * Determines whether a character is an ISO control character as specified by {@link * Character#isISOControl(char)}. * * <p>All ISO control codes are on the BMP and thus supported by this API. * * @since 19.0 (since 1.0 as constant {@code JAVA_ISO_CONTROL}) */ public static CharMatcher javaIsoControl() { return JavaIsoControl.INSTANCE; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 53.9K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
`HeldCertificate` is a TLS certificate and its private key. Generate a certificate with its builder then use it to sign another certificate or perform a TLS handshake. The `certificatePem()` method encodes the certificate in the familiar PEM format (`--- BEGIN CERTIFICATE ---`); the `privateKeyPkcs8Pem()` does likewise for the private key.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Sets.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 78.8K bytes - Viewed (0)