- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 485 for replica (0.05 sec)
-
CHANGELOG/CHANGELOG-1.8.md
to ensure that autoscaling can occur optimially in all clusters, within a set of global constraints on the total number of replicas permitted across all clusters. If replicas are not required in some clusters due to low system load or insufficient quota or capacity in those clusters, additional replicas are made available to the autoscalers in other clusters if required. ### Node Components
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
} } } for (final String s : fessConfig.getSearchlogRequestHeadersAsArray()) { final String key = s.replace('-', '_').toLowerCase(Locale.ENGLISH); Collections.list(req.getHeaders(s)).stream().forEach(v -> { searchLog.addRequestHeaderValue(key, v); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
generics.go
for _, vv := range vars { subdb.Statement.Vars = append(subdb.Statement.Vars, vv) bindvar := strings.Builder{} subdb.BindVarTo(&bindvar, subdb.Statement, vv) sql = strings.Replace(sql, bindvar.String(), "?", 1) } subdb.Statement.SQL.Reset() subdb.Statement.Vars = stmt.Vars if strings.Contains(sql, "@") { clause.NamedExpr{SQL: sql, Vars: vars}.Build(subdb.Statement)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 15.5K bytes - Viewed (0) -
docs/es/docs/deployment/https.md
* La encriptación de la conexión ocurre a nivel de **TCP**. * Esa es una capa **debajo de HTTP**. * Por lo tanto, el manejo de **certificados y encriptación** se realiza **antes de HTTP**. * **TCP no sabe acerca de "dominios"**. Solo sobre direcciones IP. * La información sobre el **dominio específico** solicitado va en los **datos HTTP**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 13K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
`requestBodyEnd()`, both on the same call. Such events may be triggered by different threads even for a single call. Interceptors that rewrite or replace the request body may now inadvertently interfere with duplex request bodies. Such interceptors should check `RequestBody.isDuplex()` and avoid accessing the request body when it is.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ArrayTable.java
* Finally, every possible combination of row and column keys is always considered to have a value * associated with it: It is not possible to "remove" a value, only to replace it with {@code null}, * which will still appear when iterating over the table's contents in a foreach loop or a call to a * null-hostile method like {@link ImmutableTable#copyOf}. For alternatives, please see <a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 19:39:21 UTC 2025 - 26.8K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameTest.java
@Test void toString_withMSBrowseName_shouldReplaceSpecialCharacters() { Name name = new Name(mockConfig, "\u0001MSBROWSE ", 0x01, null); String result = name.toString(); // Should replace first char with '..' and char at position 14 with '.' assertTrue(result.contains("..")); assertFalse(result.contains("\u0001")); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
break; } suffix.append("%20"); } name = name.replaceAll(" +$", suffix.toString()); } return "URL:" + name.replace("?", "%3f"); } /** * @return */ private static boolean isWorkgroup(final SmbResource r) { try { return r.getLocator().isWorkgroup();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
} // Remove leading slash if present if (path.startsWith("/")) { path = path.substring(1); } return new File(tempDir, path.replace("/", File.separator)).getAbsolutePath(); } @Override public void service(jakarta.servlet.ServletRequest req, jakarta.servlet.ServletResponse res) { // Not used in tests }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
return parseItem(false, isDigit, buf); } private static Item parseItem(boolean isCombination, boolean isDigit, String buf) { if (isCombination) { return new CombinationItem(buf.replace("-", "")); } else if (isDigit) { buf = stripLeadingZeroes(buf); if (buf.length() <= MAX_INTITEM_LENGTH) { // lower than 2^31 return new IntItem(buf);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 26.4K bytes - Viewed (0)