- Sort Score
- Num 10 results
- Language All
Results 351 - 360 of 608 for Structured (0.46 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java
/** * Abstract base class for CrawlerClient implementations. * Provides common functionality for handling initialization parameters, * content length checks, and default method implementations. * It defines the basic structure and configuration options for crawler clients. */ public abstract class AbstractCrawlerClient implements CrawlerClient { private static final Logger logger = LogManager.getLogger(AbstractCrawlerClient.class);Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sat Sep 06 04:15:37 GMT 2025 - 9.7K bytes - Click Count (10) -
android/guava/src/com/google/common/collect/CompactHashSet.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 23.9K bytes - Click Count (0) -
tensorflow/c/eager/gradients.h
// op executed under the tape. A separate map (`tensorflow::eager::OpTape`) // maintains the map from `op_id` to a `OpTapeEntry` which stores the `op_type`, // inputs and outputs and the gradient function These data structures combined // allow us to trace the data dependencies between operations and hence compute // gradients. // // `ZerosLike` is not expected to be called and returns a nullptr. The creation
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 6.9K bytes - Click Count (0) -
docs/es/llm-prompt.md
* list (as in Python list): list * context manager: context manager (do not translate to "gestor de contexto" or "administrador de contexto") * a little bit: un poquito * graph (data structure, as in "dependency graph"): grafo (do not translate to "grรกfico") * form data: form data (do not translate to "datos de formulario" or "datos de form") * import (as in code import): import (do not translate to "importaciรณn")
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Dec 16 16:33:45 GMT 2025 - 5.4K bytes - Click Count (0) -
docs/pt/docs/tutorial/index.md
```console $ <font color="#4E9A06">fastapi</font> dev <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span> Starting development server ๐ Searching for package file structure from directories with <font color="#3465A4">__init__.py</font> files Importing from <font color="#75507B">/home/user/code/</font><font color="#AD7FA8">awesomeapp</font>
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 5.6K bytes - Click Count (0) -
docs/uk/docs/fastapi-cli.md
```console $ <font color="#4E9A06">fastapi</font> dev <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span> Starting development server ๐ Searching for package file structure from directories with <font color="#3465A4">__init__.py</font> files Importing from <font color="#75507B">/home/user/code/</font><font color="#AD7FA8">awesomeapp</font>
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) -
docs/ko/docs/advanced/dataclasses.md
dataclass๋ ์๋์ผ๋ก Pydantic dataclass๋ก ๋ณํ๋ฉ๋๋ค. ์ด๋ ๊ฒ ํ๋ฉด ํด๋น ์คํค๋ง๊ฐ API docs ์ฌ์ฉ์ ์ธํฐํ์ด์ค์ ํ์๋ฉ๋๋ค: <img src="/img/tutorial/dataclasses/image01.png"> ## ์ค์ฒฉ ๋ฐ์ดํฐ ๊ตฌ์กฐ์์ Dataclasses ์ฌ์ฉํ๊ธฐ { #dataclasses-in-nested-data-structures } `dataclasses`๋ฅผ ๋ค๋ฅธ ํ์ ์ ๋ํ ์ด์ ๊ณผ ์กฐํฉํด ์ค์ฒฉ ๋ฐ์ดํฐ ๊ตฌ์กฐ๋ฅผ ๋ง๋ค ์๋ ์์ต๋๋ค. ์ผ๋ถ ๊ฒฝ์ฐ์๋ Pydantic ๋ฒ์ ์ `dataclasses`๋ฅผ ์ฌ์ฉํด์ผ ํ ์๋ ์์ต๋๋ค. ์๋ฅผ ๋ค์ด ์๋ ์์ฑ๋ API ๋ฌธ์์์ ์ค๋ฅ๊ฐ ๋ฐ์ํ๋ ๊ฒฝ์ฐ์ ๋๋ค. ๊ทธ๋ฐ ๊ฒฝ์ฐ ํ์ค `dataclasses`๋ฅผ ๋๋กญ์ธ ๋์ฒด์ฌ์ธ `pydantic.dataclasses`๋ก ๊ฐ๋จํ ๋ฐ๊พธ๋ฉด ๋ฉ๋๋ค:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 4.8K bytes - Click Count (0) -
tensorflow/c/c_api_internal.h
#include "tensorflow/core/platform/types.h" #include "tensorflow/core/public/session.h" namespace tensorflow { class Device; class DeviceMgr; class ServerInterface; } // namespace tensorflow // Internal structures used by the C API. These are likely to change and should // not be depended on. struct TF_SessionOptions { tensorflow::SessionOptions options; }; struct TF_DeprecatedSession { tensorflow::Session* session;Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Jan 07 04:56:09 GMT 2026 - 7.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
// Test that the exception is serializable ThemeException exception = new ThemeException("Serialization test"); // Verify that the exception can be created and has the expected structure assertNotNull(exception); assertTrue(exception instanceof java.io.Serializable); } @Test public void test_nestedExceptions() { // Test nested exception handlingCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.4K bytes - Click Count (0) -
src/test/java/jcifs/pac/kerberos/KerberosEncDataTest.java
* @throws UnknownHostException if the IP address is not found */ @Test void testConstructor() throws IOException, PACDecodingException, UnknownHostException { // Build a sample Kerberos EncData structure ASN1EncodableVector vector = new ASN1EncodableVector(); vector.add(new DERTaggedObject(2, new DERGeneralString("TEST.REALM"))); ASN1EncodableVector principalVector = new ASN1EncodableVector();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.7K bytes - Click Count (0)