- Sort Score
- Num 10 results
- Language All
Results 2011 - 2020 of 2,629 for bize (0.08 seconds)
-
src/test/java/jcifs/internal/witness/MockWitnessService.java
} /** * Get the number of active registrations * * @return the registration count */ public int getRegistrationCount() { return registrations.size(); } /** * Check if a registration exists * * @param registrationId the registration ID * @return true if registration exists */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 8.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java
throws ExecutionException, InterruptedException { int nThreads = Math.min( session.getRequest().getDegreeOfConcurrency(), session.getProjects().size()); boolean parallel = nThreads > 1; // Propagate the parallel flag to the root session and all the cloned sessions in each project segment session.setParallel(parallel);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 16 03:42:09 GMT 2025 - 8.9K bytes - Click Count (0) -
cmd/xl-storage-format-utils_test.go
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 7.1K bytes - Click Count (0) -
internal/http/server.go
DefaultIdleTimeout = 30 * time.Second // DefaultReadHeaderTimeout for very slow inactive connections DefaultReadHeaderTimeout = 30 * time.Second // DefaultMaxHeaderBytes - default maximum HTTP header size in bytes. DefaultMaxHeaderBytes = 1 * humanize.MiByte ) // Server - extended http.Server supports multiple addresses to serve and enhanced connection handling. type Server struct { http.ServerCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 6.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* * <p>This method returns all duplicate host configurations in the system, * ordered by sort order, regular name, and duplicate hostname. The results * are limited by the configured maximum fetch size to prevent memory issues.</p> * * @return a list of all DuplicateHost entities */ public List<DuplicateHost> getDuplicateHostList() { return duplicateHostBhv.selectList(cb -> {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/JobProcessTest.java
InputStreamThread thread = jobProcess.getInputStreamThread(); thread.start(); thread.join(1000); assertEquals(2, callbackResults.size()); assertEquals("integration test", callbackResults.get(0)); assertEquals("second line", callbackResults.get(1)); String output = thread.getOutput();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 8.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java
for (String error : allErrors) { System.out.println(error); } throw new RuntimeException("Found " + allErrors.size() + " missing documentation files or anchors."); } else { System.out.println("All documentation files and anchors from the JSON files were found in the directory."); }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Aug 21 15:38:58 GMT 2025 - 8.5K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionTest.java
transaction.name = "\\MAILSLOT\\browse"; assertEquals("\\MAILSLOT\\browse", transaction.name, "Transaction name should be changeable"); } @Test @DisplayName("Test default buffer size constant") void testBufferSizeConstant() { assertEquals(0xFFFF, SmbComTransaction.TRANSACTION_BUF_SIZE, "TRANSACTION_BUF_SIZE should be 0xFFFF"); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/ConcurrentLifecycleStarter.java
} public List<TaskSegment> calculateTaskSegments(MavenSession session, List<String> tasks) throws Exception { List<TaskSegment> taskSegments = new ArrayList<>(tasks.size()); TaskSegment currentSegment = null; for (String task : tasks) { if (isBeforeOrAfterPhase(task)) { String prevTask = task;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 8.3K bytes - Click Count (0) -
docs/zh/docs/tutorial/security/get-current-user.md
不想在模型中使用 `username`,而是使用 `id` 和 `email`?当然可以。这些工具也支持。 只想使用字符串?或字典?甚至是数据库类模型的实例?工作方式都一样。 实际上,就算登录应用的不是用户,而是只拥有访问令牌的机器人、程序或其它系统?工作方式也一样。 尽管使用应用所需的任何模型、类、数据库。**FastAPI** 通过依赖注入系统都能帮您搞定。 ## 代码大小 { #code-size } 这个示例看起来有些冗长。毕竟这个文件同时包含了安全、数据模型的工具函数,以及路径操作等代码。 但,关键是: **安全和依赖注入的代码只需要写一次。** 就算写得再复杂,也只是在一个位置写一次就够了。所以,要多复杂就可以写多复杂。 但是,就算有数千个端点(*路径操作*),它们都可以使用同一个安全系统。 而且,所有端点(或它们的任何部件)都可以利用这些依赖项或任何其它依赖项。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:37:57 GMT 2026 - 3.6K bytes - Click Count (0)