- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 308 for si (0.04 seconds)
-
src/test/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverterTest.java
assertTrue(results.contains("aiueo")); } public void test_convertWithShi() { List<String> results = converter.convert("シ", null); assertTrue(results.contains("si")); assertTrue(results.contains("shi")); } public void test_convertWithChi() { List<String> results = converter.convert("チ", null); assertTrue(results.contains("ti"));
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 17 14:28:21 GMT 2025 - 5.9K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/amd64.s
MOVOA (AX), X1 // MOVO (AX), X1 // Tests for SP indexed addresses. MOVQ foo(SP)(AX*1), BX // 488b1c04 MOVQ foo+32(SP)(CX*2), DX // 488b544c20 MOVQ foo+32323(SP)(R8*4), R9 // 4e8b8c84437e0000 MOVL foo(SP)(SI*8), DI // 8b3cf4 MOVL foo+32(SP)(R10*1), R11 // 468b5c1420 MOVL foo+32323(SP)(R12*2), R13 // 468bac64437e0000 MOVW foo(SP)(AX*4), R8 // 66448b0484 MOVW foo+32(SP)(R9*8), CX // 66428b4ccc20
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Apr 09 18:57:21 GMT 2019 - 3.3K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java
* under the License. */ package org.apache.maven.cli.transfer; import org.apache.maven.api.services.MessageBuilder; /** * Formats file size with the associated <a href="https://en.wikipedia.org/wiki/Metric_prefix">SI</a> prefix * (GB, MB, kB) and using the patterns <code>#0.0</code> for numbers between 1 and 10 * and <code>###0</code> for numbers between 10 and 1000+ by default. *
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Apr 16 10:09:21 GMT 2025 - 6.5K bytes - Click Count (0) -
schema/field.go
} else if sameType { field.ReflectValueOf(ctx, value).Set(reflect.ValueOf(s.Serializer)) } si := reflect.New(serializerType) si.Elem().Set(serializerValue) s.Serializer = si.Interface().(SerializerInterface) } } else { err = oldFieldSetter(ctx, value, v) } return } } }Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Nov 22 03:14:36 GMT 2025 - 32.2K bytes - Click Count (0) -
cmd/xl-storage-disk-id-check.go
} func (p *xlStorageDiskIDCheck) DiskInfo(ctx context.Context, opts DiskInfoOptions) (info DiskInfo, err error) { if contextCanceled(ctx) { return DiskInfo{}, ctx.Err() } si := p.updateStorageMetrics(storageMetricDiskInfo) defer si(0, &err) if opts.NoOp { if opts.Metrics { info.Metrics = p.getMetrics() } info.Metrics.TotalWrites = p.totalWrites.Load()
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Apr 25 05:41:04 GMT 2025 - 34.5K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/AbstractMavenTransferListener.java
private static final String ANSI_DARK_RESET = ESC + "[0m"; // CHECKSTYLE_OFF: LineLength /** * Formats file size with the associated <a href="https://en.wikipedia.org/wiki/Metric_prefix">SI</a> prefix * (GB, MB, kB) and using the patterns <code>#0.0</code> for numbers between 1 and 10 * and <code>###0</code> for numbers between 10 and 1000+ by default. *Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Apr 22 22:13:51 GMT 2025 - 9.2K bytes - Click Count (0) -
docs/es/docs/deployment/manually.md
Cuando instalas FastAPI con algo como `pip install "fastapi[standard]"` ya obtienes `uvicorn[standard]` también. /// ## Ejecuta el Programa del Servidor { #run-the-server-program } Si instalaste un servidor ASGI manualmente, normalmente necesitarías pasar una cadena de import en un formato especial para que importe tu aplicación FastAPI: <div class="termy"> ```console
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 7K bytes - Click Count (0) -
cmd/global-heal.go
for _, disk := range healing { status.HealDisks = append(status.HealDisks, disk.Endpoint) } return status, true } si := o.LocalStorageInfo(ctx, true) indexed := make(map[string][]madmin.Disk) for _, disk := range si.Disks { setIdx := fmt.Sprintf("%d-%d", disk.PoolIndex, disk.SetIndex) indexed[setIdx] = append(indexed[setIdx], disk) } for id, disks := range indexed {Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Apr 04 13:49:12 GMT 2025 - 16.2K bytes - Click Count (0) -
docs/fr/docs/deployment/manually.md
Lorsque vous installez FastAPI avec quelque chose comme `pip install "fastapi[standard]"`, vous obtenez déjà `uvicorn[standard]` aussi. /// ## Exécuter le programme serveur { #run-the-server-program } Si vous avez installé un serveur ASGI manuellement, vous devrez normalement passer une chaîne d'import dans un format spécial pour qu'il importe votre application FastAPI : <div class="termy"> ```console
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java
map.put("ク", new String[] { "ku" }); map.put("ケ", new String[] { "ke" }); map.put("コ", new String[] { "ko" }); map.put("サ", new String[] { "sa" }); map.put("シ", new String[] { "si", "shi" }); map.put("ス", new String[] { "su" }); map.put("セ", new String[] { "se" }); map.put("ソ", new String[] { "so" }); map.put("タ", new String[] { "ta" });
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 17 14:28:21 GMT 2025 - 11.4K bytes - Click Count (0)