- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 4,015 for name (0.04 sec)
-
cmd/metacache-entries_test.go
want := append(loadMetacacheSampleNames, loadMetacacheSampleNames...) sort.Strings(want) got := a.entries().names() if len(got) != len(want) { t.Errorf("unexpected count, want %v, got %v", len(want), len(got)) } for i, name := range got { if want[i] != name { t.Errorf("unexpected name, want %q, got %q", want[i], name) } } } func Test_metaCacheEntries_filterObjects(t *testing.T) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 31.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassDoc.groovy
} PropertyDoc findProperty(String name) { return classProperties.find { it.name == name } } BlockDoc getBlock(String name) { def block = classBlocks.find { it.name == name } if (block) { return block } for (extensionDoc in classExtensions) { block = extensionDoc.extensionBlocks.find { it.name == name } if (block) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 6.2K bytes - Viewed (0) -
src/main/resources/fess_thumbnail.xml
</component> <component name="msofficeThumbnailGenerator" class="org.codelibs.fess.thumbnail.impl.CommandGenerator"> <property name="name">"msofficeThumbnailGenerator"</property> <property name="commandList"> ["${path}/generate-thumbnail", "msoffice", "${url}", "${outputFile}"] </property> <property name="generatorList"> ["${path}/generate-thumbnail"] </property>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:34:52 UTC 2019 - 5.4K bytes - Viewed (0) -
.github/workflows/sigbuild-docker.yml
steps: - name: Delete unnecessary tools folder run: rm -rf /opt/hostedtoolcache - name: Checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1 - name: Login to DockerHub
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Nov 01 08:40:10 UTC 2024 - 4.3K bytes - Viewed (0) -
src/main/resources/esclient.xml
<!-- Dictionaries --> <postConstruct name="addConfigFile"> <arg>"fess"</arg> <arg>"mapping.txt"</arg> </postConstruct> <postConstruct name="addConfigFile"> <arg>"fess"</arg> <arg>"synonym.txt"</arg> </postConstruct> <postConstruct name="addConfigFile"> <arg>"fess"</arg> <arg>"ar/protwords.txt"</arg> </postConstruct> <postConstruct name="addConfigFile"> <arg>"fess"</arg>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Oct 21 12:20:52 UTC 2024 - 16K bytes - Viewed (0) -
tests/test_tutorial/test_separate_openapi_schemas/test_tutorial001_py310.py
@needs_py310 def test_read_items(client: TestClient) -> None: response = client.get("/items/") assert response.status_code == 200, response.text assert response.json() == [ { "name": "Portal Gun", "description": "Device to travel through the multi-rick-verse", }, {"name": "Plumbus", "description": None}, ]
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Sep 28 04:14:40 UTC 2023 - 4.9K bytes - Viewed (0) -
tests/test_tutorial/test_separate_openapi_schemas/test_tutorial002.py
def test_read_items(client: TestClient) -> None: response = client.get("/items/") assert response.status_code == 200, response.text assert response.json() == [ { "name": "Portal Gun", "description": "Device to travel through the multi-rick-verse", }, {"name": "Plumbus", "description": None}, ] @needs_pydanticv2
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 25 19:10:22 UTC 2023 - 4.8K bytes - Viewed (0) -
tests/count_test.go
} DB.Model(&User{}).Where("name = ?", user1.Name).Count(&count1).Or("name in ?", []string{user2.Name, user3.Name}).Count(&count2) if count1 != 1 || count2 != 3 { t.Errorf("multiple count in chain should works") } tx := DB.Model(&User{}).Where("name = ?", user1.Name).Session(&gorm.Session{}) tx.Count(&count1) tx.Or("name in ?", []string{user2.Name, user3.Name}).Count(&count2) if count1 != 1 || count2 != 3 {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Oct 30 09:15:49 UTC 2023 - 6.9K bytes - Viewed (0) -
apache-maven/src/main/appended-resources/META-INF/LICENSE.vm
#* *### #* *### infer SPDX license id #* *##if ( $MITLicenseNames.contains( $license.name ) ) #* *##set ( $spdx = 'MIT' ) #* *##elseif ( $license.name == "Eclipse Public License, Version 1.0" ) #* *##set ( $spdx = 'EPL-1.0' ) #* *##elseif ( $license.name == "Eclipse Public License, Version 2.0" ) #* *##set ( $spdx = 'EPL-2.0' )
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Jun 04 06:45:16 UTC 2024 - 4.1K bytes - Viewed (0) -
tests/group_by_test.go
} if err := DB.Model(&User{}).Select("name, sum(age) as total").Where("name LIKE ?", "groupby%").Group("name").Having("name = ?", "groupby1").Row().Scan(&name, &total); err != nil { t.Errorf("no error should happen, but got %v", err) } if name != "groupby1" || total != 660 { t.Errorf("name should be groupby, but got %v, total should be 660, but got %v", name, total) } result := struct { Name string
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Jan 06 07:02:53 UTC 2022 - 3.3K bytes - Viewed (0)