- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 92 for 38 (0.2 sec)
-
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java
assertArrayEquals(testMachineId, guid); // Verify dialects assertEquals(0x0210, SMBUtil.readInt2(buffer, 36)); assertEquals(0x0300, SMBUtil.readInt2(buffer, 38)); assertEquals(0x0302, SMBUtil.readInt2(buffer, 40)); } @Test @DisplayName("Should write negotiate contexts for SMB 3.1.1") void testWriteBytesWireFormatWithContexts() { // Given
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
docs/zh/docs/environment-variables.md
例如,你可以创建一个名为 `main.py` 的文件,其中包含以下内容: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip 第二个参数是 <a href="https://docs.python.org/zh-cn/3.8/library/os.html#os.getenv" class="external-link" target="_blank">`os.getenv()`</a> 的默认返回值。 如果没有提供,默认值为 `None`,这里我们提供 `"World"` 作为默认值。 /// 然后你可以调用这个 Python 程序: //// tab | Linux, macOS, Windows Bash
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Nov 09 12:17:15 UTC 2024 - 8K bytes - Viewed (0) -
api/go1.7.txt
pkg debug/elf, const R_390_TLS_GD32 = 40 pkg debug/elf, const R_390_TLS_GD32 R_390 pkg debug/elf, const R_390_TLS_GD64 = 41 pkg debug/elf, const R_390_TLS_GD64 R_390 pkg debug/elf, const R_390_TLS_GDCALL = 38 pkg debug/elf, const R_390_TLS_GDCALL R_390 pkg debug/elf, const R_390_TLS_GOTIE12 = 42 pkg debug/elf, const R_390_TLS_GOTIE12 R_390 pkg debug/elf, const R_390_TLS_GOTIE20 = 60 pkg debug/elf, const R_390_TLS_GOTIE20 R_390
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Jun 28 15:08:11 UTC 2016 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
// primarySetupOffset // SMB_COM_TRANSACTION: 61 = 32 SMB header + 1 (word count) + 28 (fixed words) // SMB_COM_NT_TRANSACTION: 69 = 32 SMB header + 1 (word count) + 38 (fixed words) this.parameterOffset = this.primarySetupOffset; // 2* setupCount this.parameterOffset += this.setupCount * 2; this.parameterOffset += 2; // ByteCountRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.3K bytes - Viewed (0) -
docs/zh/docs/python-types.md
{!> ../../docs_src/python_types/tutorial011_py310.py!} ``` //// //// tab | Python 3.9+ ```Python {!> ../../docs_src/python_types/tutorial011_py39.py!} ``` //// //// tab | Python 3.8+ ```Python {!> ../../docs_src/python_types/tutorial011.py!} ``` //// /// info 想进一步了解 <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic,请阅读其文档</a>.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Aug 18 06:34:40 UTC 2025 - 8.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.3.md
- [Changelog since v1.3.9](#changelog-since-v139) - [Other notable changes](#other-notable-changes) - [v1.3.9](#v139) - [Downloads](#downloads) - [Changelog since v1.3.8](#changelog-since-v138) - [Other notable changes](#other-notable-changes-1) - [v1.3.8](#v138) - [Downloads](#downloads-1) - [Changelog since v1.3.7](#changelog-since-v137) - [Other notable changes](#other-notable-changes-2) - [v1.3.7](#v137)Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 84K bytes - Viewed (0) -
fastapi/_compat/v2.py
warnings.simplefilter( "ignore", category=UnsupportedFieldAttributeWarning ) # TODO: remove after dropping support for Python 3.8 and # setting the min Pydantic to v2.12.3 that adds asdict() field_dict = asdict(self.field_info) annotated_args = ( field_dict["annotation"],Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 12:54:56 UTC 2025 - 19.1K bytes - Viewed (0) -
api/go1.6.txt
pkg debug/elf, const R_MIPS_SHIFT6 = 17 pkg debug/elf, const R_MIPS_SHIFT6 R_MIPS pkg debug/elf, const R_MIPS_SUB = 24 pkg debug/elf, const R_MIPS_SUB R_MIPS pkg debug/elf, const R_MIPS_TLS_DTPMOD32 = 38 pkg debug/elf, const R_MIPS_TLS_DTPMOD32 R_MIPS pkg debug/elf, const R_MIPS_TLS_DTPMOD64 = 40 pkg debug/elf, const R_MIPS_TLS_DTPMOD64 R_MIPS pkg debug/elf, const R_MIPS_TLS_DTPREL32 = 39
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Wed Jan 13 23:40:13 UTC 2016 - 12.9K bytes - Viewed (0) -
docs/ja/docs/environment-variables.md
例えば、以下のような`main.py`ファイルを用意します: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip <a href="https://docs.python.org/3.8/library/os.html#os.getenv" class="external-link" target="_blank">`os.getenv()`</a> の第2引数は、デフォルトで返される値を指定します。 この引数を省略するとデフォルト値として`None`が返されますが、ここではデフォルト値として`"World"`を指定しています。 /// 次に、このPythonプログラムを呼び出します。
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Jan 27 15:39:04 UTC 2025 - 9.4K bytes - Viewed (0) -
docs/bigdata/README.md
examples/jars/spark-examples*.jar 10 ``` The job should produce an output as shown below. Note the value of pi in the output. ``` 17/03/22 23:21:10 INFO DAGScheduler: Job 0 finished: reduce at SparkPi.scala:38, took 1.302805 s Pi is roughly 3.1445191445191445 ``` Job status can also be viewed in a browser by navigating to the YARN ResourceManager Web UI and clicking on job history server information. ### **4.2 WordCount**
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 14.7K bytes - Viewed (0)