- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 222 for nums (0.04 sec)
-
schema/field.go
} } } if num, ok := field.TagSettings["AUTOINCREMENTINCREMENT"]; ok { field.AutoIncrementIncrement, _ = strconv.ParseInt(num, 10, 64) } if v, ok := field.TagSettings["DEFAULT"]; ok { field.HasDefaultValue = true field.DefaultValue = v } if num, ok := field.TagSettings["SIZE"]; ok { if field.Size, err = strconv.Atoi(num); err != nil { field.Size = -1 } }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 32K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/ArrayUtilTest.java
Array.set(o, 0, Integer.valueOf(1)); Array.set(o, 1, Integer.valueOf(2)); Array.set(o, 2, Integer.valueOf(3)); final int[] num = (int[]) o; assertArrayEquals(new int[] { 1, 2, 3 }, num); } /** * @throws Exception */ @Test public void testToObjectArray() throws Exception {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 10.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/schema-extra-example.md
`example` nos padrões. Versões recentes do JSON Schema definem um campo <a href="https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.9.5" class="external-link" target="_blank">`examples`</a>, mas o OpenAPI 3.0.3 é baseado numa versão mais antiga do JSON Schema que não tinha `examples`. Por isso, o OpenAPI 3.0.3 definiu o seu próprio <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md#fixed-fields-20" class="external-link" target...
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.1K bytes - Viewed (0) -
generics.go
q.db.Offset(offset) return q } func (q *preloadBuilder) Order(value interface{}) PreloadBuilder { q.db.Order(value) return q } func (q *preloadBuilder) LimitPerRecord(num int) PreloadBuilder { q.limitPerRecord = num return q } func (c chainG[T]) Joins(jt clause.JoinTarget, on func(db JoinBuilder, joinTable clause.Table, curTable clause.Table) error) ChainInterface[T] { return c.with(func(db *DB) *DB {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 15.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
p.errorf("expected register; found %s", name) return 0, false } p.get('(') tok := p.get(scanner.Int) num, err := strconv.ParseInt(tok.String(), 10, 16) p.get(')') if err != nil { p.errorf("parsing register list: %s", err) return 0, false } r, ok := p.arch.RegisterNumber(name, int16(num)) if !ok { p.errorf("illegal register %s(%d)", name, r) return 0, false } return r, true }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 14 15:13:11 UTC 2025 - 37.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/ImmutableIntArrayTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.2K bytes - Viewed (0) -
cmd/object_api_suite_test.go
parts := make(map[int]string) metadata := make(map[string]string) for i := 1; i <= 10; i++ { randomPerm := rand.Perm(10) randomString := "" for _, num := range randomPerm { randomString += strconv.Itoa(num) } expectedETaghex := getMD5Hash([]byte(randomString)) metadata["md5"] = expectedETaghex var calcPartInfo PartInfo
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java
/** Highlight query parameters. */ public String[] hq; /** Search query parameter for error page. */ public String q; /** Number of results parameter for error page. */ public String num; /** Sort parameter for error page. */ public String sort; /** Language parameter for error page. */ public String lang; /** Additional fields map for cache operations. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
docs/bigdata/README.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 14.7K bytes - Viewed (0) -
docs/site-replication/run-replication-with-checksum-header.sh
rm -rf /tmp/minio{1,2} echo "done" } # Function to convert number to corresponding alphabet num_to_alpha() { local num=$1 # ASCII value of 'a' is 97, so we add (num - 1) to 97 to get the corresponding alphabet local ascii_value=$((96 + num)) # Convert the ASCII value to the character using printf printf "\\$(printf '%03o' "$ascii_value")" } cleanup export MINIO_CI_CD=1
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Jan 20 14:49:07 UTC 2025 - 11.5K bytes - Viewed (0)