- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 201 for 8128 (0.06 seconds)
-
tests/migrate_test.go
} for _, columnType := range columnTypes { switch columnType.Name() { case "name": if length, _ := columnType.Length(); (fullSupported || length != 0) && length != 128 { t.Fatalf("name's length should be 128, but got %v", length) } case "salary": if precision, o, _ := columnType.DecimalSize(); (fullSupported || precision != 0) && precision != 2 {Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Wed Aug 20 04:51:17 GMT 2025 - 65.2K bytes - Click Count (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<match value="\n@article{" type="stringignorecase" offset="2:128"/> <match value="\n@book{" type="stringignorecase" offset="2:128"/> <match value="\n@inbook{" type="stringignorecase" offset="2:128"/> <match value="\n@incollection{" type="stringignorecase" offset="2:128"/> <match value="\n@inproceedings{" type="stringignorecase" offset="2:128"/>Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Oct 16 07:46:32 GMT 2025 - 320.2K bytes - Click Count (5) -
src/cmd/asm/internal/asm/testdata/mips64.s
VMOVH 110(R19), W8 // 78379a21 VMOVH -70(R12), W3 // 7bdd60e1 VMOVW (R3), W31 // 78001fe2 VMOVW 64(R20), W16 // 7810a422 VMOVW -104(R17), W24 // 7be68e22 VMOVD (R3), W2 // 780018a3 VMOVD 128(R23), W19 // 7810bce3 VMOVD -256(R31), W0 // 7be0f823 VMOVB W8, (R0) // 78000224 VMOVB W0, 511(R3) // 79ff1824 VMOVB W21, -512(R12) // 7a006564 VMOVH W12, (R24) // 7800c325
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue Aug 08 12:17:12 GMT 2023 - 12.4K bytes - Click Count (0) -
lib/fips140/v1.1.0-rc1.zip
V11 VXORV V4, V12, V12 VXORV V5, V13, V13 VXORV V6, V14, V14 VXORV V7, V15, V15 VMOVQ V8, (R4) VMOVQ V9, 16(R4) VMOVQ V10, 32(R4) VMOVQ V11, 48(R4) VMOVQ V12, 64(R4) VMOVQ V13, 80(R4) VMOVQ V14, 96(R4) VMOVQ V15, 112(R4) SGTU $128, R7, R8 ADDV $128, R5 ADDV $128, R6 ADDV $128, R4 BEQ R8, xor_128_lsx_loop BEQ R7, end xor_64_lsx_check: SGTU $64, R7, R8 BNE R8, xor_32_lsx_check xor_64_lsx: SUBV $64, R7 VMOVQ (R5), V0 VMOVQ 16(R5), V1 VMOVQ 32(R5), V2 VMOVQ 48(R5), V3 VMOVQ (R6), V4 VMOVQ 16(R6), V5 VMOVQ...
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Dec 11 16:27:41 GMT 2025 - 663K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java
} @Override public Version getVersion() { return version; } @Override public String toString() { StringBuilder buffer = new StringBuilder(128); buffer.append('[').append(getSeverity()).append("] "); buffer.append(getMessage()); buffer.append(" @ ").append(ModelProblemUtils.formatLocation(this, null));Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 5.6K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtension.java
* * @return The extension id in the form {@code <groupId>:<artifactId>:<version>}, never {@code null}. */ public String getId() { StringBuilder id = new StringBuilder(128); id.append((getGroupId() == null) ? "[unknown-group-id]" : getGroupId()); id.append(":"); id.append((getArtifactId() == null) ? "[unknown-artifact-id]" : getArtifactId()); id.append(":");Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 4.5K bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsProblem.java
} @Override public Severity getSeverity() { return severity; } @Override public String toString() { StringBuilder buffer = new StringBuilder(128); buffer.append('[').append(getSeverity()).append("] "); buffer.append(getMessage()); String location = getLocation(); if (!location.isEmpty()) { buffer.append(" @ ");Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 4.4K bytes - Click Count (0) -
cmd/perf-tests.go
atomic.AddUint64(&m.n, uint64(n)) return n, nil } func netperf(ctx context.Context, duration time.Duration) madmin.NetperfNodeResult { r := &netperfReader{eof: make(chan struct{})} r.buf = make([]byte, 128*humanize.KiByte) rand.Read(r.buf) connectionsPerPeer := 16 if len(globalNotificationSys.peerClients) > 16 { // For a large cluster it's enough to have 1 connection per peer to saturate the network.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 11.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/net/NetShareEnumResponse.java
int off = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; off = (off & 0xFFFF) - this.converter; off = start + off; e.remark = readString(buffer, off, 128, false); if (log.isTraceEnabled()) { log.trace(e.toString()); } } setResults(results); return bufferIndex - start; }
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/SipHashFunction.java
// The number of compression rounds. private final int c; // The number of finalization rounds. private final int d; // Two 64-bit keys (represent a single 128-bit key). private final long k0; private final long k1; /** * @param c the number of compression rounds (must be positive) * @param d the number of finalization rounds (must be positive)
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 5.3K bytes - Click Count (0)