- Sort Score
- Result 10 results
- Languages All
Results 2371 - 2380 of 2,925 for NAME (0.02 sec)
-
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
} catch (final IOException e) { throw new DictionaryException("Failed to parse " + path, e); } } /** * Returns the simple name of the file. * * @return The simple name of the file. */ public String getSimpleName() { return new File(path).getName(); } /** * Updates the dictionary file with the given input stream.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheInterceptor.kt
cachedHeaders: Headers, networkHeaders: Headers, ): Headers { val result = Headers.Builder() for (index in 0 until cachedHeaders.size) { val fieldName = cachedHeaders.name(index) val value = cachedHeaders.value(index) if ("Warning".equals(fieldName, ignoreCase = true) && value.startsWith("1")) { // Drop 100-level freshness warnings. continue }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.3K bytes - Viewed (0) -
README.md
--- We just scratched the surface, but you already get the idea of how it all works. Try changing the line with: ```Python return {"item_name": item.name, "item_id": item_id} ``` ...from: ```Python ... "item_name": item.name ... ``` ...to: ```Python ... "item_price": item.price ... ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 15:19:49 UTC 2025 - 24.3K bytes - Viewed (0) -
src/test/java/jcifs/SmbTransportPoolTest.java
// Common setup for all tests } @Nested @DisplayName("GetSmbTransport Methods") class GetSmbTransportTests { @Test @DisplayName("Should get transport by name with default parameters") void testGetSmbTransportByName() throws UnknownHostException, IOException { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java
* */ public class AdminRoleAction extends FessAdminAction { /** * Default constructor. */ public AdminRoleAction() { super(); } /** Role name for admin role operations */ public static final String ROLE = "admin-role"; private static final Logger logger = LogManager.getLogger(AdminRoleAction.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java
@Override public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException { builder.startObject(); builder.field("name", "test"); builder.field("value", 123); builder.field("enabled", true); builder.startArray("items"); builder.value("item1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/UniAddressTest.java
class IsDotQuadIPTests { @ParameterizedTest(name = "should return true for valid IP address: {0}") @ValueSource(strings = { "192.168.1.1", "10.0.0.255", "0.0.0.0", "255.255.255.255" }) void shouldReturnTrueForValidIpAddresses(String ip) { assertTrue(UniAddress.isDotQuadIP(ip)); } @ParameterizedTest(name = "should return false for invalid IP address or hostname: {0}")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.4K bytes - Viewed (0) -
docs/tr/docs/python-types.md
{* ../../docs_src/python_types/tutorial008.py hl[1,4] *} Bu şu anlama gelir: * `prices` değişkeni `dict` tipindedir: * `dict` değişkeninin `key` değeri `str` tipindedir (herbir item'ın "name" değeri). * `dict` değişkeninin `value` değeri `float` tipindedir (lherbir item'ın "price" değeri). #### `Optional`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.5K bytes - Viewed (0) -
docs/ru/docs/environment-variables.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Oct 15 11:38:57 UTC 2024 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
protected final Random random = new Random(); /** OpenSearch client. */ protected final Client client; /** Suggest settings. */ protected final SuggestSettings settings; /** Index name. */ protected final String indexName; /** Supported fields. */ protected final String[] supportedFields; /** Scroll size. */ protected int scrollSize = 1; /** Maximum retry count. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 11K bytes - Viewed (0)