- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,243 for language (0.14 sec)
-
tests/associations_many2many_test.go
} languages2 := []Language{} languages3 := []Language{ {Code: "language-many2many-append-3-1", Name: "language-many2many-append-3-1"}, {Code: "language-many2many-append-3-2", Name: "language-many2many-append-3-2"}, } DB.Create(&languages1) DB.Create(&languages3) DB.Model(&users).Association("Languages").Append(&languages1, &languages2, &languages3) AssertAssociationCount(t, users, "Languages", 9, "After Append")
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Jun 10 13:05:19 UTC 2023 - 13.2K bytes - Viewed (0) -
src/main/assemblies/extension/kibana/fess_log.ndjson
{"attributes":{"description":"","kibanaSavedObjectMeta":{"searchSourceJSON":"{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}"},"title":"search-query-counts-per-sec","uiStateJSON":"{}","version":1,"visState":"{\"title\":\"search-query-counts-per-sec\",\"type\":\"histogram\",\"...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Aug 12 01:26:21 UTC 2019 - 18.2K bytes - Viewed (0) -
docs/en/docs/contributing.md
#### Existing language Let's say you want to translate a page for a language that already has translations for some pages, like Spanish. In the case of Spanish, the 2-letter code is `es`. So, the directory for Spanish translations is located at `docs/es/`. /// tip The main ("official") language is English, located at `docs/en/`. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 25 02:44:06 UTC 2024 - 12.7K bytes - Viewed (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt
val applicationStructureChoice = if (descriptor.language === Language.CPP || descriptor.language === Language.SWIFT) "" else """ Select application structure: 1: Single application project 2: Application and library project Enter selection (default: Single application project) [1..2] 1 """ val toolChain = when { descriptor.language === Language.SWIFT -> {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 22 11:11:17 UTC 2024 - 13.5K bytes - Viewed (0) -
tests/update_test.go
result.Toys = append(user.Toys, result.Toys...) sort.Slice(result.Languages, func(i, j int) bool { return strings.Compare(result.Languages[i].Code, result.Languages[j].Code) > 0 }) sort.Slice(result.Toys, func(i, j int) bool { return result.Toys[i].ID < result.Toys[j].ID }) sort.Slice(result2.Languages, func(i, j int) bool {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Dec 04 03:50:58 UTC 2023 - 30.3K bytes - Viewed (0) -
docs/recipes.md
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Feb 18 08:52:22 UTC 2022 - 40.2K bytes - Viewed (0) -
docs/features/https.md
=== ":material-language-kotlin: Kotlin" ```kotlin private val client = OkHttpClient.Builder() .certificatePinner( CertificatePinner.Builder()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Dec 24 00:16:30 UTC 2022 - 10.5K bytes - Viewed (0) -
docs/fr/docs/contributing.md
``` raise TemplateNotFound(template) jinja2.exceptions.TemplateNotFound: partials/language/xx.html ``` Cela signifie que le thรจme ne supporte pas cette langue (dans ce cas, avec un faux code de 2 lettres de `xx`).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 16.2K bytes - Viewed (0) -
docs/em/docs/contributing.md
jinja2.exceptions.TemplateNotFound: partials/language/xx.html ``` ๐ โ ๐ ๐ข ๐ซ ๐โ๐ฆบ ๐ ๐ช๐ธ (๐ ๐ผ, โฎ๏ธ โ 2๏ธโฃ-๐ค ๐ `xx`). โ๏ธ ๐ซ ๐, ๐ ๐ช โ ๐ข ๐ช๐ธ ๐ช๐ธ & โคด๏ธ ๐ฌ ๐ ๐ฉบ. ๐ฅ ๐ ๐ช ๐, โ `mkdocs.yml` ๐ ๐ ๐ช๐ธ, โซ๏ธ ๐ โ๏ธ ๐ณ ๐: ```YAML hl_lines="5" site_name: FastAPI # More stuff theme: # More stuff language: xx ``` ๐ ๐ ๐ช๐ธ โช๏ธโก๏ธ `xx` (โช๏ธโก๏ธ ๐ ๐ช๐ธ ๐) `en`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.4K bytes - Viewed (0) -
tests/upsert_test.go
} var langs []Language if err := DB.Find(&langs, "code = ?", lang.Code).Error; err != nil { t.Errorf("no error should happen when find languages with code, but got %v", err) } else if len(langs) != 1 { t.Errorf("should only find only 1 languages, but got %+v", langs) } lang3 := Language{Code: "upsert", Name: "Upsert"} if err := DB.Clauses(clause.OnConflict{
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Sep 05 07:39:19 UTC 2022 - 11.4K bytes - Viewed (0)