- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 270 for 256 (0.71 sec)
-
src/cmd/asm/internal/asm/testdata/amd64enc_extra.s
VADDPD 8192(DX), Z28, Z29 // 62619d4058aa00200000 VADDPD 8192(DX)(AX*2), Z0, Z29 // 6261fd4858ac4200200000 VADDPD 8192(DX)(AX*2), Z29, Z1 // 62f19540588c4200200000 // EVEX: Y registers; VL=256. VADDPD Y30, Y1, Y0 // 6291f52858c6 VADDPD Y0, Y29, Y2 // 62f1952058d0 VADDPD Y0, Y29, Y30 // 6261952058f0 VADDPD Y28, Y1, Y2 // 6291f52858d4
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Feb 20 11:20:03 UTC 2025 - 57.7K bytes - Viewed (0) -
cmd/api-errors.go
HTTPStatusCode: http.StatusUnauthorized, }, ErrExpressionTooLong: { Code: "ExpressionTooLong", Description: "The SQL expression is too long: The maximum byte-length for the SQL expression is 256 KB.", HTTPStatusCode: http.StatusBadRequest, }, ErrIllegalSQLFunctionArgument: { Code: "IllegalSqlFunctionArgument", Description: "Illegal argument was used in the SQL function.",Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 93K bytes - Viewed (3) -
doc/asm.html
This function is a closure so it uses its incoming context register. </li> <li> <code>LOCAL</code> = 128 <br> This symbol is local to the dynamic shared object. </li> <li> <code>TLSBSS</code> = 256 <br> (For <code>DATA</code> and <code>GLOBL</code> items.) Put this data in thread local storage. </li> <li> <code>NOFRAME</code> = 512 <br> (For <code>TEXT</code> items.)
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Nov 14 19:09:46 UTC 2025 - 36.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
assertEquals(expected, pom.getValue(expression)); } private static String createPath(List<String> elements) { StringBuilder buffer = new StringBuilder(256); for (String s : elements) { buffer.append(s).append(File.separator); } return buffer.toString().substring(0, buffer.length() - 1); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 94.8K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Size for no-match query highlight. query.highlight.no.match.size=0 # Order for query highlight fragments. query.highlight.order=score # Phrase limit for query highlighting. query.highlight.phrase.limit=256 # Fields for content description in query highlighting. query.highlight.content.description.fields=hl_content,digest # Whether to detect boundary position in query highlighting. query.highlight.boundary.position.detect=true
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/bytes/bytes_test.go
// 4 bytes {"𡌀", '𡌀', 0}, {"a", '𡌀', -1}, {" 𡌀", '𡌀', 2}, {" a", '𡌀', -1}, {strings.Repeat("𡋀", 64) + "𡌀", '𡌀', 256}, // test cutover {strings.Repeat("𡋀", 64) + "𡌀", '𣌀', -1}, // '𡌀' and '𣌀' share the same last two bytes // RuneError should match any invalid UTF-8 byte sequence. {"�", '�', 0}, {"\xff", '�', 0},Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 23 23:54:14 UTC 2025 - 62.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* The value is, e.g. 256 <br> * comment: Phrase limit for query highlighting. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getQueryHighlightPhraseLimit(); /** * Get the value for the key 'query.highlight.phrase.limit' as {@link Integer}. <br> * The value is, e.g. 256 <br>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
cmd/erasure-server-pool.go
n = 2048 } // Avoid allocating more than half of the available memory if maxN := availableMemory() / (blockSizeV2 * 2); n > maxN { n = maxN } if globalIsCICD || strconv.IntSize == 32 { n = 256 // 256MiB for CI/CD environments is sufficient or on 32bit platforms. } // Initialize byte pool once for all sets, bpool size is set to // setCount * setDriveCount with each memory upto blockSizeV2.
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 89.2K bytes - Viewed (0) -
api/go1.2.txt
pkg syscall (freebsd-386-cgo), type Dirent struct pkg syscall (freebsd-386-cgo), type Dirent struct, Fileno uint32 pkg syscall (freebsd-386-cgo), type Dirent struct, Name [256]int8 pkg syscall (freebsd-386-cgo), type Dirent struct, Namlen uint8 pkg syscall (freebsd-386-cgo), type Dirent struct, Reclen uint16 pkg syscall (freebsd-386-cgo), type Dirent struct, Type uint8
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Oct 18 04:36:59 UTC 2013 - 1.9M bytes - Viewed (1) -
doc/go_spec.html
internal representation with limited precision. That said, every implementation must: </p> <ul> <li>Represent integer constants with at least 256 bits.</li> <li>Represent floating-point constants, including the parts of a complex constant, with a mantissa of at least 256 bits and a signed binary exponent of at least 16 bits.</li> <li>Give an error if unable to represent an integer constant precisely.</li>
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 02 23:07:19 UTC 2025 - 286.5K bytes - Viewed (1)