- Sort Score
- Num 10 results
- Language All
Results 791 - 800 of 1,627 for result7 (0.39 seconds)
-
docs/en/docs/tutorial/bigger-applications.md
{* ../../docs_src/bigger_applications/app_an_py310/dependencies.py hl[3,6:8] title["app/dependencies.py"] *} /// tip We are using an invented header to simplify this example. But in real cases you will get better results using the integrated [Security utilities](security/index.md). /// ## Another module with `APIRouter` { #another-module-with-apirouter }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 19.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java
/** * Protocol overhead size for SMB2 query directory response */ public static final int OVERHEAD = Smb2Constants.SMB2_HEADER_LENGTH + 8; private final byte expectInfoClass; private FileEntry[] results; /** * Constructs a SMB2 query directory response with the specified configuration and expected information class * * @param config * the configuration to use for this responseCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.1K bytes - Click Count (0) -
android/guava-testlib/test/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilderTest.java
.withSetUp(setUpRunnable) .withTearDown(tearDownRunnable) .createTestSuite(); TestResult result = new TestResult(); int timesMyTesterWasRunBeforeSuite = MyTester.timesTestClassWasRun; test.run(result); assertEquals(timesMyTesterWasRunBeforeSuite + 1, MyTester.timesTestClassWasRun); assertTrue(setUp[0]); assertTrue(tearDown[0]); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 2.1K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComWriteAndXResponseTest.java
void testToString() { SmbComWriteAndXResponse response = new SmbComWriteAndXResponse(); response.count = 12345L; String result = response.toString(); // The toString method should return a string containing the count. assertTrue(result.contains("count=12345")); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 2.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
final ObjectMapper objectMapper = new YAMLMapper(); try { @SuppressWarnings("unchecked") final List<Map<?, ?>> result = objectMapper.readValue(content, List.class); if (result != null) { return result.stream() .map(o -> new Artifact((String) o.get("name"), (String) o.get("version"), (String) o.get("url")))
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Mar 04 15:19:41 GMT 2026 - 25.1K bytes - Click Count (0) -
src/main/java/jcifs/util/InputValidator.java
* @throws ArithmeticException if operation would overflow */ public static void validateIntegerAddition(int a, int b, String operation) { long result = (long) a + (long) b; if (result > Integer.MAX_VALUE || result < Integer.MIN_VALUE) { throw new ArithmeticException(operation + " would cause integer overflow: " + a + " + " + b); } } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 13.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java
.total(pager.getAllRecordCount()) .status(ApiResult.Status.OK) .result()); } /** * Retrieves a specific label type setting by ID. * * @param id the ID of the label type setting to retrieve * @return JSON response containing the label type setting */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8.5K bytes - Click Count (0) -
src/test/java/jcifs/util/transport/TransportTest.java
@Test @DisplayName("toString should return meaningful representation") void shouldReturnMeaningfulToString() { String result = transport.toString(); assertTrue(result.startsWith("Transport")); assertFalse(result.isEmpty()); } @Test @DisplayName("should handle response map operations") void shouldHandleResponseMapOperations() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
.total(pager.getAllRecordCount()) .status(ApiResult.Status.OK) .result()); } // GET /api/admin/group/setting/{id} /** * Returns specific group setting by ID. * * @param id the group setting ID
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/ResourcesTest.java
public List<String> getResult() { return collector; } }; List<String> result = Resources.readLines(resource, US_ASCII, collectAndLowercaseAndTrim); assertEquals(3600, result.size()); assertThat(result.get(0)).isEqualTo("ALICE'S ADVENTURES IN WONDERLAND"); assertThat(result.get(result.size() - 1)).isEqualTo("THE END"); } public void testCopyToOutputStream() throws IOException {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 6.9K bytes - Click Count (0)