- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 186 for rewind (0.08 seconds)
-
docs/ru/docs/advanced/behind-a-proxy.md
<img src="/img/tutorial/behind-a-proxy/image01.png"> А вот если открыть интерфейс документации по «официальному» URL через прокси на порту `9999`, по `/api/v1/docs`, всё работает корректно! 🎉 Проверьте по адресу [http://127.0.0.1:9999/api/v1/docs](http://127.0.0.1:9999/api/v1/docs): <img src="/img/tutorial/behind-a-proxy/image02.png"> Именно как и хотелось. ✔️
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 22.7K bytes - Click Count (0) -
docs/uk/docs/advanced/behind-a-proxy.md
<img src="/img/tutorial/behind-a-proxy/image01.png"> Але якщо ми звернемося до інтерфейсу документації за «офіційним» URL, використовуючи представника з портом `9999`, за адресою `/api/v1/docs`, усе працює коректно! 🎉 Ви можете перевірити це на [http://127.0.0.1:9999/api/v1/docs](http://127.0.0.1:9999/api/v1/docs): <img src="/img/tutorial/behind-a-proxy/image02.png"> Саме так, як ми хотіли. ✔️
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 23.1K bytes - Click Count (0) -
docs/es/docs/advanced/behind-a-proxy.md
<img src="/img/tutorial/behind-a-proxy/image01.png"> Pero si accedemos a la UI de los docs en la URL "oficial" usando el proxy con puerto `9999`, en `/api/v1/docs`, ¡funciona correctamente! 🎉 Puedes verificarlo en [http://127.0.0.1:9999/api/v1/docs](http://127.0.0.1:9999/api/v1/docs): <img src="/img/tutorial/behind-a-proxy/image02.png"> Justo como queríamos. ✔️
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 16.5K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/behind-a-proxy.md
你可以在 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs) 檢查: <img src="/img/tutorial/behind-a-proxy/image01.png"> 但如果我們改用「正式」的 URL,也就是使用埠號 `9999` 的代理、並在 `/api/v1/docs`,它就能正確運作了!🎉 你可以在 [http://127.0.0.1:9999/api/v1/docs](http://127.0.0.1:9999/api/v1/docs) 檢查: <img src="/img/tutorial/behind-a-proxy/image02.png"> 正如我們所希望的那樣。✔️
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 15.3K bytes - Click Count (0) -
docs/ja/docs/advanced/behind-a-proxy.md
[http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs) を確認してください: <img src="/img/tutorial/behind-a-proxy/image01.png"> しかし、プロキシ(ポート `9999`)を使った「公式」URL `/api/v1/docs` でドキュメント UI にアクセスすると、正しく動作します!🎉 [http://127.0.0.1:9999/api/v1/docs](http://127.0.0.1:9999/api/v1/docs) を確認してください: <img src="/img/tutorial/behind-a-proxy/image02.png"> ねらいどおりです。✔️
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 18.9K bytes - Click Count (0) -
PULL_REQUESTS_ETIQUETTE.md
- Write clear messages: what changed and why (e.g., “Refactor S3 API handler to reduce latency so that requests process 20% faster”). - Rebase to tidy commits before submitting (e.g., `git rebase -i main` to squash typos or reword messages), unless multiple contributors worked on the branch. - Keep PRs focused—one feature or fix. Split large changes into multiple PRs. 3. **Testing**: - Include unit tests for new functionality or bug fixes.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun May 25 16:32:03 GMT 2025 - 4.7K bytes - Click Count (0) -
misc/cgo/gmp/pi.go
//go:build ignore package main import ( big "." "fmt" "runtime" ) var ( tmp1 = big.NewInt(0) tmp2 = big.NewInt(0) numer = big.NewInt(1) accum = big.NewInt(0) denom = big.NewInt(1) ten = big.NewInt(10) ) func extractDigit() int64 { if big.CmpInt(numer, accum) > 0 { return -1 } tmp1.Lsh(numer, 1).Add(tmp1, numer).Add(tmp1, accum)
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Apr 10 22:32:35 GMT 2023 - 1.3K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/first-steps.md
- Le frontend (exécuté dans le navigateur de l'utilisateur) envoie ce `username` et ce `password` vers une URL spécifique de notre API (déclarée avec `tokenUrl="token"`). - L'API vérifie ce `username` et ce `password`, et répond avec un « token » (nous n'avons encore rien implémenté de tout cela). - Un « token » n'est qu'une chaîne contenant des informations que nous pouvons utiliser plus tard pour vérifier cet utilisateur.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 9.3K bytes - Click Count (0) -
src/cmd/buildid/buildid.go
} newID := id[:strings.LastIndex(id, "/")] + "/" + buildid.HashToString(hash) if len(newID) != len(id) { log.Fatalf("%s: build ID length mismatch %q vs %q", file, id, newID) } if len(matches) == 0 { return } f, err = os.OpenFile(file, os.O_RDWR, 0) if err != nil { log.Fatal(err) } if err := buildid.Rewrite(f, matches, newID); err != nil { log.Fatal(err) }
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Jun 21 19:58:04 GMT 2024 - 1.7K bytes - Click Count (0) -
src/test/java/jcifs/internal/witness/WitnessIntegrationTest.java
// Test registration String regId = mockService.registerWitness("\\\\server\\share", "192.168.1.100", 1); assertNotNull(regId); assertEquals(1, mockService.getRegistrationCount()); assertTrue(mockService.hasRegistration(regId)); // Test unregistration assertTrue(mockService.unregisterWitness(regId)); assertEquals(0, mockService.getRegistrationCount());Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 9.8K bytes - Click Count (0)