- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 44 for gate (0.07 sec)
-
CHANGELOG/CHANGELOG-1.32.md
- Removed generally available feature gate `LegacyServiceAccountTokenCleanUp`. ([#126839](https://github.com/kubernetes/kubernetes/pull/126839), [@carlory](https://github.com/carlory)) [SIG Auth] - Removed generally available feature gate `MinDomainsInPodTopologySpread`. ([#126863](https://github.com/kubernetes/kubernetes/pull/126863), [@carlory](https://github.com/carlory)) [SIG Scheduling]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.33.md
- The `SidecarContainers` feature has graduated to GA. 'SidecarContainers' feature gate was locked to default value and will be removed in v1.36. If you were setting this feature gate explicitly, please remove it now. ([#129731](https://github.com/kubernetes/kubernetes/pull/129731), [@gjki...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:46:23 UTC 2025 - 294.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.34.md
- Added a new `FileKeyRef` field to containers, allowing them to load variables from files by setting this field.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 27 10:36:10 UTC 2025 - 292.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.31.md
- Enabled feature gates for PortForward (kubectl port-forward) over WebSockets by default (beta). - Server-side feature gate: PortForwardWebsocket - Client-side (kubectl) feature gate: PORT_FORWARD_WEBSOCKETS environment variable
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:49:57 UTC 2025 - 429.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
* * @param value the date string to parse * @return parsed Date object, or null if parsing fails */ public static Date parseDate(final String value) { return parseDate(value, Constants.DATE_OPTIONAL_TIME); } /** * Parses a date string using the specified format. * * @param value the date string to parse
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
} /** * Calculates the document expiration date based on crawling configuration. * If the config has a timeToLive value, calculates expiration from current time. * Otherwise, returns the stored document expiration time. * * @param config the crawling configuration containing time-to-live settings * @return the document expiration date, or null if no expiration is set */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
} return processFieldConfigs(dataMap, fieldConfigs); } /** * Get the last modified date. * @param dataMap The data map. * @param responseData The response data. * @return The last modified date. */ protected Date getLastModified(final Map<String, Object> dataMap, final ResponseData responseData) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
assertEquals("\"boolKey\":\"true\"", buf.toString()); } // Test append method with Date value (other object type) public void test_append_dateValue() { StringBuilder buf = new StringBuilder(); Date date = new Date(1609459200000L); Supplier<Object> supplier = () -> date; monitorTarget.append(buf, "dateKey", supplier); String result = buf.toString();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
}); // Add sorts queryContext.addSorts(SortBuilders.fieldSort("_score"), SortBuilders.fieldSort("date").unmappedType("date")); // Add field logs queryContext.addFieldLog("title", "search"); queryContext.addFieldLog("title", "term"); queryContext.addFieldLog(Constants.DEFAULT_FIELD, "search term"); // Add highlighted queries
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
return null; } if (clazz.isAssignableFrom(String.class)) { return (T) value.toString(); } if (clazz.isAssignableFrom(Date.class)) { if (value instanceof Date) { return (T) value; } return (T) FessFunctions.parseDate(value.toString()); } if (clazz.isAssignableFrom(Long.class)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0)