- Sort Score
- Num 10 results
- Language All
Results 1971 - 1980 of 2,163 for crealm (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
byte[] addrBytes = inetAddr.getAddress(); mockQueryAddress.address = ((addrBytes[0] & 0xFF) << 24) | ((addrBytes[1] & 0xFF) << 16) | ((addrBytes[2] & 0xFF) << 8) | (addrBytes[3] & 0xFF); // Create NodeStatusResponse instance response = new NodeStatusResponse(mockConfig, mockQueryAddress); } @Test void constructor_shouldInitializeFields() throws Exception { // Verify configuration is set
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 19.3K bytes - Click Count (0) -
api/go1.24.txt
pkg os, func OpenInRoot(string, string) (*File, error) #67002 pkg os, func OpenRoot(string) (*Root, error) #67002 pkg os, method (*Root) Close() error #67002 pkg os, method (*Root) Create(string) (*File, error) #67002 pkg os, method (*Root) FS() fs.FS #67002 pkg os, method (*Root) Lstat(string) (fs.FileInfo, error) #67002 pkg os, method (*Root) Mkdir(string, fs.FileMode) error #67002
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Dec 17 21:28:29 GMT 2024 - 14.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java
public void test_lazyLoading_errorHandling() throws Exception { EntraIdAuthenticator authenticator = new EntraIdAuthenticator(); // Don't call init() to avoid SsoManager dependency // Create lists List<String> groups = new ArrayList<>(); List<String> roles = new ArrayList<>(); List<String> groupIds = new ArrayList<>(); groupIds.add("invalid-id");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 19.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
@ValueSource(ints = { 0, 1, 10, 100, 1000, 4096 }) void testDecodeWithVariousAceCounts(int aceCount) throws SMBProtocolDecodingException { // This test is theoretical as we can't create huge buffers // but tests the boundary conditions if (aceCount <= 10) { // Only test small counts practically byte[] buffer = new byte[2048];Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
} request = new SmbComSessionSetupAndX(this, andx, auth); response = new SmbComSessionSetupAndXResponse(andxResponse); /* Create SMB signature digest if necessary * Only the first SMB_COM_SESSION_SETUP_ANX with non-null or * blank password initializes signing. */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 20.7K bytes - Click Count (0) -
apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt
intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Sep 17 05:50:12 GMT 2018 - 11.1K bytes - Click Count (0) -
docs/zh/docs/advanced/generate-clients.md
* [liblab](https://developers.liblab.com/tutorials/sdk-for-fastapi?utm_source=fastapi) 其中一些方案也可能是开源的或提供免费层级,你可以不花钱就先试用。其他商业 SDK 生成器也可在网上找到。🤓 ## 创建一个 TypeScript SDK { #create-a-typescript-sdk } 先从一个简单的 FastAPI 应用开始: {* ../../docs_src/generate_clients/tutorial001_py310.py hl[7:9,12:13,16:17,21] *} 请注意,这些*路径操作*使用 `Item` 和 `ResponseMessage` 模型来定义它们的请求载荷和响应载荷。 ### API 文档 { #api-docs }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 8.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/OrderingTest.java
return other instanceof NumberOrdering; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /* * Now we have monster tests that create hundreds of Orderings using different * combinations of methods, then checks compare(), binarySearch() and so * forth on each one. */ // should periodically try increasing this, but it makes the test run longCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 43.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/OrderingTest.java
return other instanceof NumberOrdering; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /* * Now we have monster tests that create hundreds of Orderings using different * combinations of methods, then checks compare(), binarySearch() and so * forth on each one. */ // should periodically try increasing this, but it makes the test run longCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 43.2K bytes - Click Count (0) -
docs/ko/docs/virtual-environments.md
/// /// info 이 페이지에서는 **가상 환경**을 사용하는 방법과 작동 방식을 알려드립니다. Python 설치까지 포함해 **모든 것을 관리해주는 도구**를 도입할 준비가 되었다면 [uv](https://github.com/astral-sh/uv)를 사용해 보세요. /// ## 프로젝트 생성 { #create-a-project } 먼저, 프로젝트를 위한 디렉터리를 하나 생성합니다. 제가 보통 하는 방법은 사용자 홈/유저 디렉터리 안에 `code`라는 디렉터리를 만드는 것입니다. 그리고 그 안에 프로젝트마다 디렉터리를 하나씩 만듭니다. <div class="termy"> ```console // 홈 디렉터리로 이동 $ cdCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 24.8K bytes - Click Count (0)