- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 54 for EMBEDDED (0.15 seconds)
-
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) -
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) -
android/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) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotes.java
/** * The release notes specific CSS file */ public abstract RegularFileProperty getReleaseNotesCssFile(); /** * The JavaScript embedded in the release notes */ public abstract RegularFileProperty getReleaseNotesJsFile(); /** * The location of the release notes assets */Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 22 12:08:23 GMT 2026 - 1.6K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
* Otherwise, they are cross-site URLs. * * When a URL is requested, it may be in the context of another URL. * * * **Embedded resources like images and iframes** in browsers use the context as the page in * the address bar and the subject is the URL of an embedded resource. * * * **Potentially-destructive navigations such as HTTP POST calls** use the context as the page
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 23.1K bytes - Click Count (0) -
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/InetAddressesTest.java
// 2 6to4 addresses differing in the embedded IPv4 address should // hash to the different values. assertThat(InetAddresses.getCoercedIPv4Address(InetAddresses.forString("2002:0102:0304::1"))) .isNotEqualTo( InetAddresses.getCoercedIPv4Address(InetAddresses.forString("2002:0506:0708::1"))); // 2 6to4 addresses NOT differing in the embedded IPv4 address should // hash to the same value.Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 36.3K bytes - Click Count (0) -
schema/field.go
field.Creatable = false } if !strings.Contains(v, "update") { field.Updatable = false } } } // Normal anonymous field or having `EMBEDDED` tag if _, ok := field.TagSettings["EMBEDDED"]; ok || (field.GORMDataType != Time && field.GORMDataType != Bytes && !isValuer && fieldStruct.Anonymous && (field.Creatable || field.Updatable || field.Readable)) {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Nov 22 03:14:36 GMT 2025 - 32.2K bytes - Click Count (0)