- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 202 for 0010 (0.02 seconds)
-
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
docBoostMatcher.setBoostExpression("'3.14'"); final Map<String, Object> map = new HashMap<String, Object>(); map.put("data1", 1); assertTrue(Math.abs(3.14f - docBoostMatcher.getValue(map)) < 0.001f); } @Test public void test_getValue_emptyStringReturn() { final DocBoostMatcher docBoostMatcher = new DocBoostMatcher(); docBoostMatcher.setBoostExpression("''");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/uk/docs/fastapi-cli.md
## `fastapi run` { #fastapi-run } Виконання `fastapi run` за замовчуванням запускає FastAPI у продакшн-режимі. За замовчуванням **auto-reload** вимкнено. Також він слухає IP-адресу `0.0.0.0`, що означає всі доступні IP-адреси, таким чином він буде публічно доступним для будь-кого, хто може взаємодіяти з машиною. Зазвичай саме так ви запускатимете його в продакшн, наприклад у контейнері.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 7.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Map<String, String> infoMap = new HashMap<>(); infoMap.put(Constants.CRAWLER_STATUS, Constants.TRUE); infoMap.put("CrawlerStartTime", "2024-01-01T10:00:00"); infoMap.put("CrawlerEndTime", "2024-01-01T11:00:00"); try { crawler.sendMail(infoMap); } catch (Exception e) { fail("Should not throw exception: " + e.getMessage()); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 30.8K bytes - Click Count (0) -
src/main/webapp/css/chat.css
color: #0052cc; font-weight: 600; } .progress-step.completed .step-label { color: #00875a; } @keyframes step-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.4); } 50% { box-shadow: 0 0 0 8px rgba(0, 82, 204, 0); } } .progress-message { text-align: center; font-size: 0.8125rem; color: #0052cc; font-weight: 500; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 19.4K bytes - Click Count (0) -
docs/es/docs/deployment/server-workers.md
``` </div> //// //// tab | `uvicorn` Si prefieres usar el comando `uvicorn` directamente: <div class="termy"> ```console $ uvicorn main:app --host 0.0.0.0 --port 8080 --workers 4 <font color="#A6E22E">INFO</font>: Uvicorn running on <b>http://0.0.0.0:8080</b> (Press CTRL+C to quit) <font color="#A6E22E">INFO</font>: Started parent process [<font color="#A1EFE4"><b>27365</b></font>]
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 8.4K bytes - Click Count (0) -
src/main/java/jcifs/netbios/Name.java
} } /** * Checks if this represents an unknown address. * * @return whether this is the unknown address */ public boolean isUnknown() { return "0.0.0.0".equals(this.name) && this.hexCode == 0 && this.scope == null; } int writeWireFormat(final byte[] dst, final int dstIndex) { // write 0x20 in first byte dst[dstIndex] = 0x20;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8K bytes - Click Count (0) -
docs/de/docs/fastapi-cli.md
## `fastapi run` { #fastapi-run } Das Ausführen von `fastapi run` startet FastAPI im Produktionsmodus. Standardmäßig ist **Autoreload** deaktiviert. Es horcht auch auf der IP-Adresse `0.0.0.0`, was alle verfügbaren IP-Adressen bedeutet, so wird es öffentlich zugänglich für jeden, der mit der Maschine kommunizieren kann. So würden Sie es normalerweise in der Produktion ausführen, beispielsweise in einem Container.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 6.2K bytes - Click Count (0) -
docs/en/docs/fastapi-cli.md
## `fastapi run` { #fastapi-run } Executing `fastapi run` starts FastAPI in production mode. By default, **auto-reload** is disabled. It also listens on the IP address `0.0.0.0`, which means all the available IP addresses, this way it will be publicly accessible to anyone that can communicate with the machine. This is how you would normally run it in production, for example, in a container.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 5.8K bytes - Click Count (0) -
docs/pt/docs/fastapi-cli.md
## `fastapi run` { #fastapi-run } Executar `fastapi run` inicia o FastAPI em modo de produção. Por padrão, o **recarregamento automático** está desativado. Ele também escuta no endereço IP `0.0.0.0`, o que significa todos os endereços IP disponíveis; dessa forma, ficará acessível publicamente para qualquer pessoa que consiga se comunicar com a máquina. É assim que você normalmente o executaria em produção, por exemplo, em um contêiner.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 6.3K bytes - Click Count (0) -
src/test/java/org/codelibs/core/lang/StringUtilTest.java
assertEquals("010203", StringUtil.toHex(new byte[] { 1, 2, 3 })); } /** * @throws Exception */ @Test public void testToHex2() throws Exception { assertEquals("0001", StringUtil.toHex(1)); } /** * @throws Exception */ @Test public void testAppendHex() throws Exception { final StringBuilder buf = new StringBuilder();
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 11.4K bytes - Click Count (0)