- Sort Score
- Result 10 results
- Languages All
Results 1971 - 1980 of 2,210 for default (0.08 sec)
-
docs/en/docs/release-notes.md
@app.get("/items/{item_id}") def main( item_id: int = Path(default=..., gt=0), query: str = Query(default=..., max_length=10), session: str = Cookie(default=..., min_length=3), x_trace: str = Header(default=..., title="Tracing header"), ): return {"message": "Hello World"} ``` ...all these parameters are required because the default value is `...` (Ellipsis).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
class RequestPropertiesTests { @BeforeEach void setup() { testBlock = new TestServerMessageBlock(mockConfig); } @Test @DisplayName("Test default request properties") void testDefaultRequestProperties() { assertEquals(0, testBlock.size()); assertFalse(testBlock.isAsync()); assertFalse(testBlock.isResponseAsync());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
tensorflow/c/c_api_experimental.cc
static tensorflow::mutex mu(tensorflow::LINKER_INITIALIZED); static std::unordered_map<std::string, void*>* loaded_libs = new std::unordered_map<std::string, void*>(); tensorflow::Env* env = tensorflow::Env::Default(); { tensorflow::mutex_lock lock(mu); auto it = loaded_libs->find(library_filename); if (it != loaded_libs->end()) { lib_handle->lib_handle = it->second; } else { status->status =
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 03:53:25 UTC 2025 - 29.5K bytes - Viewed (0) -
cmd/object-api-utils.go
piece[i] == '-'): // Found a non-digit character, so // this piece is not a number. isNotNumber = true case piece[i] >= '0' && piece[i] <= '9': // Nothing to do. default: // Found invalid character. return false } } allNumbers = allNumbers && !isNotNumber } // Does the bucket name look like an IP address? return len(pieces) != 4 || !allNumbers }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jun 25 15:08:54 UTC 2025 - 37.3K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionServicePacketTest.java
} // Concrete implementation for testing abstract class private static class TestSessionServicePacket extends SessionServicePacket { int trailerLength = 10; // Default trailer length for testing int trailerBytesRead = 0; @Override int writeTrailerWireFormat(byte[] dst, int dstIndex) { // Simple mock implementation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
response = new SrvCopyChunkCopyResponse(); } @Nested @DisplayName("Constructor Tests") class ConstructorTests { @Test @DisplayName("Should create response with default values") void testConstructor() { SrvCopyChunkCopyResponse copyResponse = new SrvCopyChunkCopyResponse(); assertNotNull(copyResponse); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
src/main/resources/fess_message.properties
# ======================================================================================== # Framework Default # ================= # ---------------------------------------------------------- # Lasta Taglib # ------------ errors.front_header= errors.front_footer= errors.front_prefix=<div class="alert alert-warning"> errors.front_suffix=</div> errors.header = <ul class="has-error"> errors.footer = </ul>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
# ======================================================================================== # Framework Default # ================= # ---------------------------------------------------------- # Lasta Taglib # ------------ errors.header = <ul class="has-error"> errors.footer = </ul> errors.prefix = <li><i class="fa fa-exclamation-circle"></i> errors.suffix = </li> # ---------------------------------------------------------- # Javax Validator
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
QueryBuilder result = matchAllQueryCommand.execute(context, query, boost); assertNotNull(result); assertTrue(result instanceof MatchAllQueryBuilder); // Verify the default normalized boost String json = result.toString().replaceAll("[\\s\\n]", ""); assertEquals("{\"match_all\":{\"boost\":1.0}}", json); } public void test_execute_withEmptyContext() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
* * This class extends FessBaseAction and serves as the foundation for all search-related * web actions in the application. */ public abstract class FessSearchAction extends FessBaseAction { /** * Default constructor. */ public FessSearchAction() { super(); } /** The field name used for label-based search filtering. */ protected static final String LABEL_FIELD = "label";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0)