- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 463 for custom1 (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/project/ProjectRealmCache.java
void flush(); /** * Registers the specified cache record for usage with the given project. Integrators can use the information * collected from this method in combination with a custom cache implementation to dispose unused records from the * cache. * * @param project The project that employs the plugin realm, must not be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java
if (StringUtil.isNotBlank(endpoint)) { // For fake-gcs-server or custom endpoint builder.setHost(endpoint); builder.setCredentials(NoCredentials.getInstance()); if (logger.isDebugEnabled()) { logger.debug("Using custom GCS endpoint: {}", endpoint); } } else {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 17.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
item.setKinds(kinds); assertArrayEquals(kinds, item.getKinds()); // Test ID item.setId("custom-id"); assertEquals("custom-id", item.getId()); } @Test public void testIsBadWord() { // Test isBadWord method String[] text = { "test", "text" };
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16.7K bytes - Viewed (0) -
docs/ru/docs/advanced/path-operation-advanced-configuration.md
} }, "x-aperture-labs-portal": "blue" } } } } ``` ### Пользовательская схема OpenAPI для операции пути { #custom-openapi-path-operation-schema } Словарь в `openapi_extra` будет объединён с автоматически сгенерированной схемой OpenAPI для *операции пути*.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 11.5K bytes - Viewed (0) -
docs_src/openapi_callbacks/tutorial001_py310.py
from fastapi import APIRouter, FastAPI from pydantic import BaseModel, HttpUrl app = FastAPI() class Invoice(BaseModel): id: str title: str | None = None customer: str total: float class InvoiceEvent(BaseModel): description: str paid: bool class InvoiceEventReceived(BaseModel): ok: bool invoices_callback_router = APIRouter() @invoices_callback_router.post(
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 10 08:55:32 UTC 2025 - 1.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuildingResultWithProblemMessageAssert.java
import static java.util.stream.Collectors.joining; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; /** * JUnit custom assertion to help create fluent assertions about {@link ProjectBuildingResult} instances. */ class ProjectBuildingResultWithProblemMessageAssert { private final ProjectBuildingResult actual;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java
assertTrue(result.contains("serverTypes=SV_TYPE_DOMAIN_ENUM")); assertTrue(result.endsWith("]")); } @Test @DisplayName("Test toString with custom server type") void testToStringWithCustomServerType() { String domain = "CUSTOM"; int customType = 0x00000801; netServerEnum2 = new NetServerEnum2(realConfig, domain, customType); String result = netServerEnum2.toString();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.7K bytes - Viewed (0) -
docs/es/docs/advanced/generate-clients.md
Pero te mostraré cómo mejorar eso a continuación. 🤓 ## Operation IDs personalizados y mejores nombres de métodos { #custom-operation-ids-and-better-method-names } Puedes **modificar** la forma en que estos operation IDs son **generados** para hacerlos más simples y tener **nombres de métodos más simples** en los clientes.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 10.8K bytes - Viewed (0) -
docs/ru/docs/advanced/response-headers.md
И поскольку `Response` часто используется для установки заголовков и cookie, **FastAPI** также предоставляет его как `fastapi.Response`. /// ## Пользовательские HTTP-заголовки { #custom-headers } Помните, что собственные проприетарные заголовки можно добавлять, <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers" class="external-link" target="_blank">используя префикс `X-`</a>.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
* queries before they are parsed by the underlying Lucene query parser. * * <p>The parser supports configuration of default field, analyzer, wildcard settings, * and default operator. It also allows adding custom filters to modify query behavior.</p> * */ public class QueryParser { /** * Default constructor. */ public QueryParser() { // Default constructor }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0)