- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 80 for tb (0.06 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt
addHeaderLenient(headersBuilder, "a\tb: c\u007fd") addHeaderLenient(headersBuilder, ": ef") addHeaderLenient(headersBuilder, "\ud83c\udf69: \u2615\ufe0f") val headers = headersBuilder.build() server.enqueue(MockResponse(headers = headers)) val response = getResponse(newRequest("/")) assertThat(response.code).isEqualTo(200) assertThat(response.header("a\tb")).isEqualTo("c\u007fd")
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 133.2K bytes - Viewed (0) -
docs/pt/docs/virtual-environments.md
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 20:32:40 UTC 2025 - 23.7K bytes - Viewed (0) -
docs/es/docs/virtual-environments.md
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:33:45 UTC 2025 - 23.3K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
This way, each project will have its own virtual environment (`.venv` directory) with its own packages. ```mermaid flowchart TB subgraph stone-project[philosophers-stone project] stone(philosophers-stone) --->|requires| harry-1 subgraph venv1[.venv] harry-1[harry v1] end end
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 02 05:09:25 UTC 2025 - 22.8K bytes - Viewed (0) -
internal/grid/grid_test.go
} t.Log("Roundtrip:", time.Since(start)) }) } func TestSingleRoundtripNotReady(t *testing.T) { defer testlogger.T.SetLogTB(t)() errFatal := func(t testing.TB, err error) { t.Helper() if err != nil { t.Fatal(err) } } grid, err := SetupTestGrid(2) errFatal(t, err) remoteHost := grid.Hosts[1] local := grid.Managers[0] // 1: Echo
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 36.1K bytes - Viewed (0) -
docs/ko/docs/virtual-environments.md
가상 환경은 전역 환경과 매우 유사한 하나의 **디렉터리**이며, 그 안에 해당 프로젝트를 위한 패키지들을 설치할 수 있습니다. 이렇게 하면 각 프로젝트는 자체적인 가상 환경(`.venv` 디렉터리)을 가지게 되며, 그 안에 해당 프로젝트 전용 패키지들을 보유하게 됩니다. ```mermaid flowchart TB subgraph stone-project[philosophers-stone project] stone(philosophers-stone) --->|requires| harry-1 subgraph venv1[.venv] harry-1[harry v1] end endRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri May 30 13:10:41 UTC 2025 - 25.8K bytes - Viewed (0) -
docs/zh-hant/docs/virtual-environments.md
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Dec 09 22:39:33 UTC 2024 - 20.7K bytes - Viewed (0) -
docs/zh/docs/virtual-environments.md
## 什么是虚拟环境 解决软件包都安装在全局环境中的问题的方法是为你所做的每个工程使用一个**虚拟环境**。 虚拟环境是一个**目录**,与全局环境非常相似,你可以在其中专为某个工程安装软件包。 这样,每个工程都会有自己的虚拟环境(`.venv` 目录),其中包含自己的软件包。 ```mermaid flowchart TB subgraph stone-project[工程 philosophers-stone] stone(philosophers-stone) --->|需要| harry-1 subgraph venv1[.venv] harry-1[harry v1] end endRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Nov 08 19:23:26 UTC 2024 - 21K bytes - Viewed (0) -
cmd/encryption-v1.go
func (o *ObjectInfo) EncryptedSize() int64 { size, err := sio.EncryptedSize(uint64(o.Size)) if err != nil { // This cannot happen since AWS S3 allows parts to be 5GB at most // sio max. size is 256 TB reqInfo := (&logger.ReqInfo{}).AppendTags("size", strconv.FormatUint(size, 10)) ctx := logger.SetReqInfo(GlobalContext, reqInfo) logger.CriticalIf(ctx, err) } return int64(size) }
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 38K bytes - Viewed (0) -
cmd/data-scanner.go
scannerExcessObjectVersions = uatomic.NewInt64(100) scannerExcessObjectVersionsTotalSize = uatomic.NewInt64(1024 * 1024 * 1024 * 1024) // 1 TB scannerExcessFolders = uatomic.NewInt64(50000) ) // initDataScanner will start the scanner in the background. func initDataScanner(ctx context.Context, objAPI ObjectLayer) { go func() {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 45.5K bytes - Viewed (0)