- Sort Score
- Num 10 results
- Language All
Results 251 - 260 of 707 for blog (0.03 seconds)
-
docs/debugging/reorder-disks/main.go
flag.Parse() localDisks, err := filterLocalDisks(node, args) if err != nil { log.Fatal(err) } if len(localDisks) == 0 { log.Fatal("Fix --local-node-name or/and --args to select local disks.") } format, err := getFormatJSON(localDisks[0].path) if err != nil { log.Fatal(err) } setSize := len(format.XL.Sets[0]) expectedDisksName := make(map[string]string)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri May 24 23:05:23 GMT 2024 - 5.4K bytes - Click Count (0) -
docs/ko/docs/advanced/openapi-callbacks.md
* *path*에는 [OpenAPI 3 표현식](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#key-expression)(자세한 내용은 아래 참고)이 포함될 수 있으며, 이를 통해 *여러분의 API*로 보내진 원래 요청의 파라미터와 일부 값을 변수로 사용할 수 있습니다. ### 콜백 경로 표현식 { #the-callback-path-expression } 콜백 *path*는 *여러분의 API*로 보내진 원래 요청의 일부를 포함할 수 있는 [OpenAPI 3 표현식](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#key-expression)을 가질 수 있습니다. 이 경우, 다음 `str`입니다:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 8.6K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/schema-extra-example.md
* [`Parameter Object`(規範)](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameter-object),對應到 FastAPI 的: * `Path()` * `Query()` * `Header()` * `Cookie()` * [`Request Body Object` 中的 `content` 欄位裡的 `Media Type Object`(規範)](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#media-type-object),對應到 FastAPI 的: * `Body()` * `File()`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) -
.github/ISSUE_TEMPLATE/feature_enhancement_request.yaml
required: true - type: checkboxes attributes: label: Checklist options: - label: > I agree to follow the [code of conduct](https://github.com/google/.github/blob/master/CODE_OF_CONDUCT.md). required: true - label: > I have read and understood the [contribution guidelines](https://github.com/google/guava/wiki/HowToContribute#feature-requests).Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Nov 17 18:47:47 GMT 2023 - 3.9K bytes - Click Count (0) -
docs/de/docs/how-to/extending-openapi.md
Fügen wir beispielsweise [ReDocs OpenAPI-Erweiterung zum Einbinden eines benutzerdefinierten Logos](https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md#x-logo) hinzu. ### Normales **FastAPI** { #normal-fastapi } Schreiben Sie zunächst wie gewohnt Ihre ganze **FastAPI**-Anwendung:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 3.9K bytes - Click Count (0) -
docs/es/docs/how-to/extending-openapi.md
Por ejemplo, vamos a añadir [la extensión OpenAPI de ReDoc para incluir un logo personalizado](https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md#x-logo). ### **FastAPI** normal { #normal-fastapi } Primero, escribe toda tu aplicación **FastAPI** como normalmente:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 3.5K bytes - Click Count (0) -
docs/ja/docs/how-to/extending-openapi.md
/// ## デフォルトの上書き { #overriding-the-defaults } 上記の情報を使って、同じユーティリティ関数で OpenAPI スキーマを生成し、必要な部分を上書きできます。 たとえば、[カスタムロゴを含めるための ReDoc の OpenAPI 拡張](https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md#x-logo)を追加してみましょう。 ### 通常の **FastAPI** { #normal-fastapi } まず、通常どおりに **FastAPI** アプリケーションを実装します: {* ../../docs_src/extending_openapi/tutorial001_py310.py hl[1,4,7:9] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 3.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java
import jakarta.annotation.Resource; /** * Admin action for Job Log. * */ public class AdminJoblogAction extends FessAdminAction { /** * Default constructor. */ public AdminJoblogAction() { super(); } /** The role name for job log administration. */ public static final String ROLE = "admin-joblog";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 10.1K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
log.warn("File handle was not properly closed, performing emergency cleanup: " + this); if (this.creationBacktrace != null) { log.warn(Arrays.toString(this.creationBacktrace)); } emergencyCloseHandle(); } } catch (Exception e) { log.error("Error during file handle finalization", e);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 9.4K bytes - Click Count (1) -
src/main/java/jcifs/util/SecureKeyManager.java
keyStore.setEntry("smb.session." + sessionId, keyEntry, protection); } catch (Exception e) { log.warn("Failed to store key in KeyStore: {}", e.getMessage()); } } log.debug("Stored session key for session: {}", sessionId); } /** * Retrieve a session key * * @param sessionId unique session identifier
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 21.5K bytes - Click Count (0)