ease make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:12:31.998] [warn] The resource https://discord.com/assets/189422196a4f8b53.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:12:31.998] [warn] The resource https://discord.com/assets/ce3b8055f5114434.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:12:31.999] [warn] The resource https://discord.com/assets/cb2006dbced0e246.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:12:31.999] [warn] The resource https://discord.com/assets/7a6a566c2e88a35d.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:12:31.999] [warn] The resource https://discord.com/assets/e52f0cba712e2fb4.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:12:31.999] [warn] The resource https://discord.com/assets/dd24010f3cf7def7.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:13:42.626] [warn] The resource https://discord.com/assets/189422196a4f8b53.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:13:42.627] [warn] The resource https://discord.com/assets/ce3b8055f5114434.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:13:42.627] [warn] The resource https://discord.com/assets/cb2006dbced0e246.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:13:42.627] [warn] The resource https://discord.com/assets/7a6a566c2e88a35d.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:13:42.627] [warn] The resource https://discord.com/assets/e52f0cba712e2fb4.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:13:42.628] [warn] The resource https://discord.com/assets/dd24010f3cf7def7.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-20 15:13:48.054] [info] [GatewaySocket] [CONNECT] wss://gateway-us-east1-d.discord.gg, encoding: etf, version: 9, compression: zstd-stream [2026-02-20 15:13:48.344] [info] [GatewaySocket] [CONNECTED] wss://gateway-us-east1-d.discord.gg/?encoding=etf&v=9&compress=zstd-stream in 289 ms [2026-02-20 15:13:48.344] [info] [GatewaySocket] [RESUME] resuming session 03d769d1c3e94608f3c13c963b1edff0, seq: 454 [2026-02-20 15:13:48.504] [info] [Flux] Dispatching CONNECTION_RESUMED [2026-02-20 15:13:48.506] [info] [GatewaySocket] [RESUMED] took 451ms, replayed 0 events, new seq: 456 [2026-02-20 15:13:56.686] [info] [discord_protos.discord_users.v1.Frecencimport { ModelData, Model } from "@kubernetes-models/base"; /** * Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling. */ export interface IFCVolumeSource { /** * fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. */ "fsType"?: string; /** * lun is Optional: FC target lun number */ "lun"?: number; /** * readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ "readOnly"?: boolean; /** * targetWWNs is Optional: FC target worldwide names (WWNs) */ "targetWWNs"?: Array; /** * wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously. */ "wwids"?: Array; } /** * Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling. */ export declare class FCVolumeSource extends Model implements IFCVolumeSource { "fsType"?: string; "lun"?: number; "readOnly"?: boolean; "targetWWNs"?: Array; "wwids"?: Array; constructor(data?: ModelData); } export { IFCVolumeSource as IIoK8sApiCoreV1FCVolumeSource, FCVolumeSource as IoK8sApiCoreV1FCVolumeSource };