- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 224 for line_1 (0.07 seconds)
-
src/test/java/jcifs/smb1/util/HexdumpTest.java
assertNotNull(output); assertTrue(output.contains("00000:")); // Calculate expected number of lines int expectedLines = (size + 15) / 16; String[] lines = output.split(System.getProperty("line.separator")); assertTrue(lines.length >= expectedLines); } @Test @DisplayName("Should handle hexdump with offset") void testHexdumpWithOffset() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.4K bytes - Click Count (0) -
build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/fake_elasticsearch-with-added-jar.tar.gz
you understand what you are doing ## ########## ## GC configuration 8-13:-XX:+UseConcMarkSweepGC 8-13:-XX:CMSInitiatingOccupan=75 8-13:-XX:+UseCMSInitiatingOccu ## G1GC Configuration # to use G1GC, uncomment the next two lines and update the version on the # following three lines to your version of the JDK # 8-13:-XX:-UseConcMarkSweepGC # 8-13:-XX:-UseCMSInitiatingOccu 14-:-XX:+UseG1GC 14-:-XX:G1ReservePercent=25 14-:-XX:InitiatingHeapOccupa=30 ## JVM temporary directory -Djava.io.tmpdir=${ES_TMPDIR}...Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.6K bytes - Click Count (0) -
fastapi/.agents/skills/fastapi/references/streaming.md
# Streaming ## Stream JSON Lines To stream JSON Lines, declare the return type and use `yield` to return the data. ```python @app.get("/items/stream") async def stream_items() -> AsyncIterable[Item]: for item in items: yield item ``` ## Server-Sent Events (SSE) To stream Server-Sent Events, use `response_class=EventSourceResponse` and `yield` items from the endpoint.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 01 10:05:57 GMT 2026 - 2.5K bytes - Click Count (0) -
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratePackageInfoDataTask.kt
@TaskAction fun action() { val results = mutableListOf<Pair<String, String>>() for (packageInfoFile in packageInfoFiles.files) { val packageLine = packageInfoFile.useLines { lines -> lines.first { it.startsWith("package") } } val packageName = packageLineRegex.find(packageLine)!!.groupValues[1] results.add(packageName to packageInfoFile.relativeTo(baseDir).path) }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 2.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ConcatFilesTask.java
/** * Concatenates a list of files into one and removes duplicate lines. */ public class ConcatFilesTask extends DefaultTask { public ConcatFilesTask() { setDescription("Concat a list of files into one."); } /** List of files to concatenate */ private FileTree files; /** line to add at the top of the target file */ private String headerLine;Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.8K bytes - Click Count (0) -
src/cmd/addr2line/main.go
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Jun 21 19:58:04 GMT 2024 - 2.4K bytes - Click Count (0) -
docs/es/docs/fastapi-cli.md
# FastAPI CLI { #fastapi-cli } **FastAPI <abbr title="command line interface - interfaz de línea de comandos">CLI</abbr>** es un programa de línea de comandos que puedes usar para servir tu aplicación FastAPI, gestionar tu proyecto FastAPI, y más. Cuando instalas FastAPI (por ejemplo, con `pip install "fastapi[standard]"`), viene con un programa de línea de comandos que puedes ejecutar en la terminal.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 6.1K bytes - Click Count (0) -
docs/es/docs/advanced/generate-clients.md
<img src="/img/tutorial/generate-clients/image08.png"> ## Beneficios { #benefits } Cuando uses los clientes generados automáticamente obtendrás **autocompletado** para: * Métodos. * Payloads de request en el body, parámetros de query, etc. * Payloads de response. También tendrás **errores en línea** para todo.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 10.4K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java
} } private static boolean equal(@Nullable Object a, @Nullable Object b) { return a == b || (a != null && a.equals(b)); } // This one-liner saves us from some ugly casts protected Entry<K, V> entry(K key, V value) { return mapEntry(key, value); } @Override protected void expectContents(Collection<Entry<K, V>> expected) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Jan 18 02:54:30 GMT 2025 - 7.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/SortedLists.java
checkNotNull(presentBehavior); checkNotNull(absentBehavior); if (!(list instanceof RandomAccess)) { list = new ArrayList<>(list); } // TODO(lowasser): benchmark when it's best to do a linear search int lower = 0; int upper = list.size() - 1; while (lower <= upper) { int middle = (lower + upper) >>> 1; int c = comparator.compare(key, list.get(middle));
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 10.9K bytes - Click Count (0)