- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for 304 (0.01 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessorTest.java
processor.setNotModifiedHttpCodes(new int[] { 304 }); ResponseData responseData = new ResponseData(); responseData.setHttpStatusCode(200); assertTrue(processor.isSuccessful(responseData)); responseData.setHttpStatusCode(100); assertFalse(processor.isSuccessful(responseData)); responseData.setHttpStatusCode(304); assertFalse(processor.isSuccessful(responseData));
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/resources/crawler/rule.xml
<property name="transformer">fessXpathTransformer</property> <property name="successfulHttpCodes">(int[])[200]</property> <property name="notModifiedHttpCodes">(int[])[304]</property> </component> </property> <property name="allRequired">true</property> <postConstruct name="addRule"> <arg>"url"</arg> <arg>"http[s]?:.*"</arg> </postConstruct>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 04 08:42:49 UTC 2020 - 4.6K bytes - Viewed (0) -
cmd/object-handlers-common_test.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 03 06:33:53 UTC 2024 - 5.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java
public static final String POST_METHOD = "POST"; public static final int OK_STATUS = 0; public static final int NOT_MODIFIED_STATUS = 304; public static final int OK_STATUS_CODE = 200; public static final int NOT_MODIFIED_STATUS_CODE = 304; public static final int BAD_REQUEST_STATUS_CODE = 400; public static final int FORBIDDEN_STATUS_CODE = 403;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.2K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/rule.xml
<property name="transformer">fileTransformer</property> <property name="successfulHttpCodes">(int[])[200]</property> <property name="notModifiedHttpCodes">(int[])[304]</property> </component> </property> </component>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sun Oct 11 02:16:55 UTC 2015 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Execute.java
import java.lang.annotation.Target; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * Used if your Mojo needs to fork a <a href="/ref/3.0.4/maven-core/lifecycles.html">lifecycle</a>. * * @since 4.0.0 */ @Experimental @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Inherited public @interface Execute { /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Apr 12 10:50:18 UTC 2024 - 2.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
* 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) -
docs/en/docs/tutorial/response-status-code.md
* **`300`** and above are for "Redirection". Responses with these status codes may or may not have a body, except for `304`, "Not Modified", which must not have one. * **`400`** and above are for "Client error" responses. These are the second type you would probably use the most. * An example is `404`, for a "Not Found" response.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:13:18 UTC 2024 - 3.9K bytes - Viewed (0) -
docs/em/docs/tutorial/response-status-code.md
* ➕1️⃣ 🖼 🔜 `201`, "✍". ⚫️ 🛎 ⚙️ ⏮️ 🏗 🆕 ⏺ 💽. * 🎁 💼 `204`, "🙅♂ 🎚". 👉 📨 ⚙️ 🕐❔ 📤 🙅♂ 🎚 📨 👩💻, & 📨 🔜 🚫 ✔️ 💪. * **`300`** & 🔛 "❎". 📨 ⏮️ 👫 👔 📟 5️⃣📆 ⚖️ 5️⃣📆 🚫 ✔️ 💪, 🌖 `304`, "🚫 🔀", ❔ 🔜 🚫 ✔️ 1️⃣. * **`400`** & 🔛 "👩💻 ❌" 📨. 👫 🥈 🆎 👆 🔜 🎲 ⚙️ 🏆. * 🖼 `404`, "🚫 🔎" 📨. * 💊 ❌ ⚪️➡️ 👩💻, 👆 💪 ⚙️ `400`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.4K bytes - Viewed (0) -
docs/zh/docs/tutorial/response-status-code.md
* **`200`** 及以上的状态码用于表示**成功**。这些状态码是最常用的 * `200` 是默认状态代码,表示一切**正常** * `201` 表示**已创建**,通常在数据库中创建新记录后使用 * `204` 是一种特殊的例子,表示**无内容**。该响应在没有为客户端返回内容时使用,因此,该响应不能包含响应体 * **`300`** 及以上的状态码用于**重定向**。具有这些状态码的响应不一定包含响应体,但 `304`**未修改**是个例外,该响应不得包含响应体 * **`400`** 及以上的状态码用于表示**客户端错误**。这些可能是第二常用的类型 * `404`,用于**未找到**响应 * 对于来自客户端的一般错误,可以只使用 `400` * `500` 及以上的状态码用于表示服务器端错误。几乎永远不会直接使用这些状态码。应用代码或服务器出现问题时,会自动返回这些状态代码 /// tip | "提示"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.7K bytes - Viewed (0)