- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 80 for EMBEDDED (0.07 seconds)
-
internal/grid/grid_types_msgp_test.go
z.Embedded.Num, err = dc.ReadInt() if err != nil { err = msgp.WrapError(err, "Embedded", "Num") return } case "String": z.Embedded.String, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "Embedded", "String") return } default: err = dc.Skip() if err != nil { err = msgp.WrapError(err, "Embedded") return
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 8.1K bytes - Click Count (0) -
schema/schema_test.go
{Name: "Name", DBName: "company_name", BindNames: []string{"Base", "Name"}, DataType: schema.String, TagSettings: map[string]string{"EMBEDDED": "EMBEDDED", "EMBEDDEDPREFIX": "company_"}}, {Name: "Ignored", BindNames: []string{"Base", "Ignored"}, TagSettings: map[string]string{"-": "-", "EMBEDDED": "EMBEDDED", "EMBEDDEDPREFIX": "company_"}},Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Thu Aug 28 02:57:17 GMT 2025 - 13.3K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java
} public Builder stdErr(OutputStream stdErr) { this.stdErr = stdErr; return this; } public Builder embedded(boolean embedded) { this.embedded = embedded; return this; } public ParserRequest build() { return new ParserRequestImpl( command,Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Jun 07 06:22:47 GMT 2025 - 15.9K bytes - Click Count (0) -
src/cmd/api/testdata/src/pkg/p1/golden.txt
pkg p1, type S2 struct pkg p1, type S2 struct, Extra bool pkg p1, type S2 struct, embedded S pkg p1, type S2 struct, embedded S //deprecated pkg p1, type SI struct pkg p1, type SI struct, I int pkg p1, type T struct pkg p1, type TPtrExported struct pkg p1, type TPtrExported struct, embedded *Embedded pkg p1, type TPtrUnexported struct pkg p1, type Time struct pkg p1, type URL //deprecated
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jul 24 16:04:17 GMT 2025 - 3.6K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
*/ boolean parsingFailed(); /** * Returns {@code true} if this call happens in "embedded" mode. * * @see ParserRequest#embedded() */ default boolean embedded() { return parserRequest().embedded(); } /** * Returns the current working directory for the Maven execution.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 6.7K bytes - Click Count (0) -
schema/schema.go
return field } return nil } // LookUpFieldByBindName looks for the closest field in the embedded struct. // // type Struct struct { // Embedded struct { // ID string // is selected by LookUpFieldByBindName([]string{"Embedded", "ID"}, "ID") // } // ID string // is selected by LookUpFieldByBindName([]string{"ID"}, "ID") // }Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:35:55 GMT 2026 - 13.3K bytes - Click Count (0) -
android/guava/src/com/google/common/net/InetAddresses.java
return false; } return true; } /** * Returns the IPv4 address embedded in an IPv4 compatible address. * * @param ip {@link Inet6Address} to be examined for an embedded IPv4 address * @return {@link Inet4Address} of the embedded IPv4 address * @throws IllegalArgumentException if the argument is not a valid IPv4 compatible address */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 47.7K bytes - Click Count (0) -
callbacks/preload.go
if relation.Schema == s { setPreloadMap(relation.Name, value, args) } } for embedded, embeddedRelations := range s.Relationships.EmbeddedRelations { for _, value := range embeddedValues(embeddedRelations) { setPreloadMap(embedded, value, args) } } } else { setPreloadMap(preloadFields[0], value, args) } } return preloadMap }Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sun May 25 07:40:40 GMT 2025 - 11.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/net/PercentEscaperTest.java
// simple string tests assertThat(e.escape("")).isEqualTo(""); assertThat(e.escape("safestring")).isEqualTo("safestring"); assertThat(e.escape("embedded\0null")).isEqualTo("embedded%00null"); assertThat(e.escape("max\uffffchar")).isEqualTo("max%EF%BF%BFchar"); } /** Tests the various ways that the space character can be handled */ public void testPlusForSpace() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 5.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/net/UrlEscaperTesting.java
assertUnicodeEscaping(e, "%F4%8F%BF%BF", '\uDBFF', '\uDFFF'); assertThat(e.escape("")).isEqualTo(""); assertThat(e.escape("safestring")).isEqualTo("safestring"); assertThat(e.escape("embedded\0null")).isEqualTo("embedded%00null"); assertThat(e.escape("max\uffffchar")).isEqualTo("max%EF%BF%BFchar"); } // Helper to assert common expected behaviour of uri escapers. static void assertBasicUrlEscaper(UnicodeEscaper e) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 3.7K bytes - Click Count (0)