- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 476 for etag (0.02 sec)
-
src/test/java/org/codelibs/fess/it/admin/dict/SynonymTests.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.it.admin.dict; import java.util.HashMap; import java.util.Map; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; @Tag("it") public class SynonymTests extends DictCrudTestBase { private static final String NAME_PREFIX = "synonymTest_"; private static final String API_PATH = "/api/admin/dict/synonym";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/dict/KuromojiTests.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.it.admin.dict; import java.util.HashMap; import java.util.Map; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; @Tag("it") public class KuromojiTests extends DictCrudTestBase { private static final String NAME_PREFIX = "kuromojiTest_"; private static final String API_PATH = "/api/admin/dict/kuromoji";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
Makefile
docker-hotfix-push: docker-hotfix @docker push -q $(TAG) && echo "Published new container $(TAG)" docker-hotfix: hotfix-push checks ## builds minio docker container with hotfix tags @echo "Building minio docker image '$(TAG)'" @docker build -q --no-cache -t $(TAG) --build-arg RELEASE=$(VERSION) . -f Dockerfile.hotfix docker: build ## builds minio docker container @echo "Building minio docker image '$(TAG)'"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 11.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
/** * The date of last modification of the file. This date should be in W3C * Datetime format. This format allows you to omit the time portion, if * desired, and use YYYY-MM-DD. * * Note that this tag is separate from the If-Modified-Since (304) header * the server can return, and search engines may use the information from * both sources differently. */ private String lastmod; /**
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/WebConfigTests.java
*/ package org.codelibs.fess.it.admin; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.it.CrudTestBase; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; @Tag("it") public class WebConfigTests extends CrudTestBase { private static final String NAME_PREFIX = "webConfigTest_"; private static final String API_PATH = "/api/admin/webconfig";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/DispatcherTest.kt
} private fun newRequest(url: String): Request { return Request.Builder().url(url).build() } private fun newRequest( url: String, tag: String, ): Request { return Request.Builder().url(url).tag(tag).build() }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Apr 05 03:30:42 UTC 2024 - 12.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java
buffer.append(value); scanner.next(); } private void parseJavadocTag(TokenVisitor visitor) { // start of tag marker scanner.next(2); // tag name scanner.mark(); scanner.find(END_TAG_NAME); String tagName = scanner.region(); visitor.onStartJavadocTag(tagName);
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 7.1K bytes - Viewed (0) -
schema/schema_test.go
{ Name: "UserID", DBName: "user_id", BindNames: []string{"UserID"}, DataType: schema.Uint, Tag: `gorm:"primarykey"`, Creatable: true, Updatable: true, Readable: true, PrimaryKey: true, Size: 64, }, { Name: "LanguageCode", DBName: "language_code", BindNames: []string{"LanguageCode"}, DataType: schema.String, Tag: `gorm:"primarykey"`, Creatable: true, Updatable: true, Readable: true, PrimaryKey: true, }, }},
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Jun 20 12:19:31 UTC 2024 - 13.3K bytes - Viewed (0) -
cmd/metacache-marker.go
return } start := strings.LastIndex(s, "[") o.Marker = s[:start] end := strings.LastIndex(s, "]") tag := strings.Trim(s[start:end], "[]") tags := strings.Split(tag, ",") for _, tag := range tags { kv := strings.Split(tag, ":") if len(kv) < 2 { continue } switch kv[0] { case "minio_cache": if kv[1] != markerTagVersion { continue }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/GroupTests.java
import java.util.HashMap; import java.util.List; import java.util.Map; import org.codelibs.fess.it.CrudTestBase; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import io.restassured.path.json.JsonPath; @Tag("it") public class GroupTests extends CrudTestBase { private static final String NAME_PREFIX = "groupTest_"; private static final String API_PATH = "/api/admin/group";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.2K bytes - Viewed (0)