- Sort Score
- Num 10 results
- Language All
Results 2351 - 2360 of 2,729 for crealm (0.18 seconds)
-
src/test/java/jcifs/smb1/util/HexdumpTest.java
@DisplayName("Should handle hexdump with offset") void testHexdumpWithOffset() { ByteArrayOutputStream baos = new ByteArrayOutputStream(); PrintStream ps = new PrintStream(baos); // Create test data and dump from offset byte[] data = createTestData(64); int offset = 16; int length = 32; Hexdump.hexdump(ps, data, offset, length); String output = baos.toString();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java
private Proxy proxy; private List<ArtifactRepository> mirroredRepositories = Collections.emptyList(); private boolean blocked; public MavenArtifactRepository() {} /** * Create a remote download repository. * * @param id the unique identifier of the repository * @param url the URL of the repository * @param layout the layout of the repositoryCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.1K bytes - Click Count (0) -
docs/ko/docs/tutorial/metadata.md
* `externalDocs`: 외부 문서를 설명하는 `dict`이며: * `description`: 외부 문서에 대한 간단한 설명을 담은 `str`입니다. * `url` (**필수**): 외부 문서의 URL을 담은 `str`입니다. ### 태그에 대한 메타데이터 생성 { #create-metadata-for-tags } `users` 및 `items`에 대한 태그 예시로 시도해 보겠습니다. 태그에 대한 메타데이터를 생성하고 이를 `openapi_tags` 매개변수로 전달하세요: {* ../../docs_src/metadata/tutorial004_py310.py hl[3:16,18] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 6.6K bytes - Click Count (0) -
docs/uk/docs/tutorial/path-params.md
### Створіть клас `Enum` { #create-an-enum-class } Імпортуйте `Enum` і створіть підклас, що наслідується від `str` та `Enum`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 14K bytes - Click Count (0) -
cmd/os_unix.go
i-- } j := i for j > 0 && !os.IsPathSeparator(dirPath[j-1]) { // Scan backward over element. j-- } if j > 1 { // Create parent. if err := osMkdirAll(dirPath[:j-1], perm, baseDir); err != nil { return err } } // Parent now exists; invoke Mkdir and use its result. if err := Mkdir(dirPath, perm); err != nil {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 9.3K bytes - Click Count (0) -
ci/official/README.md
export TFCI=py311,linux_x86,public_cache,disk_cache # Recommended: Configure Docker. (Linux only) # # TF uses hub.docker.com/r/tensorflow/build containers for CI, # and scripts on Linux create a persistent container called "tf" # which mounts your TensorFlow directory into the container. # # Important: because the container is persistent, you cannot change TFCI
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Feb 01 03:21:19 GMT 2024 - 8K bytes - Click Count (0) -
guava/src/com/google/common/base/Strings.java
String objectToString = o.getClass().getName() + '@' + Integer.toHexString(System.identityHashCode(o)); // Logger is created inline with fixed name to avoid forcing Proguard to create another class. Logger.getLogger("com.google.common.base.Strings") .log(WARNING, "Exception during lenientFormat for " + objectToString, e);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 12.5K bytes - Click Count (0) -
docs/pt/docs/advanced/generate-clients.md
## Crie um SDK em TypeScript { #create-a-typescript-sdk } Vamos começar com uma aplicação FastAPI simples: {* ../../docs_src/generate_clients/tutorial001_py310.py hl[7:9,12:13,16:17,21] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 10.5K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/path-params.md
因為第一個會被優先使用(路徑先匹配到)。 ## 預先定義的值 { #predefined-values } 如果你有一個接收「路徑參數」的「路徑操作」,但你希望可用的「路徑參數」值是預先定義好的,你可以使用標準的 Python <abbr title="Enumeration - 列舉">`Enum`</abbr>。 ### 建立 `Enum` 類別 { #create-an-enum-class } 匯入 `Enum` 並建立一個同時繼承自 `str` 與 `Enum` 的子類別。 繼承自 `str` 之後,API 文件就能知道這些值的型別必須是 `string`,並能正確地呈現。 然後建立具有固定值的類別屬性,這些就是可用的有效值: {* ../../docs_src/path_params/tutorial005_py310.py hl[1,6:9] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/DependencyLicensesTask.java
File shaFile = getShaFile(jarName); if (shaFile.exists() == false) { throw new GradleException("Missing SHA for " + jarName + ". Run \"gradle updateSHAs\" to create them"); } // TODO: shouldn't have to trim, sha files should not have trailing newline byte[] fileBytes = Files.readAllBytes(shaFile.toPath());
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Jul 26 12:16:14 GMT 2021 - 14.3K bytes - Click Count (0)