検索結果
表示
このウィキでページ「Status」を新規作成しましょう。検索で見つかった他のページも参照してください。
- log("LOADIND"); break; case XMLHttpRequest.DONE: const status = req.status; if (status === 0 || (status >= 200 && status < 400)) { console.log(req.responseText); }…7キロバイト (724 語) - 2022年9月8日 (木) 07:25
- struct chara_status yuusya_status; // 主人公「勇者」のステータスを構造体変数として宣言 yuusya_status.hp = 30; // 具体的に勇者の各パラメータを代入 yuusya_status.mp = 25; yuusya_status.exp_ = 0;…50キロバイト (8,310 語) - 2023年8月14日 (月) 05:21
- implicit none real :: result integer :: status ! Try result = divide(10.0, 0.0, status) ! Check for error if (status /= 0) then print *, "Error occurred during…6キロバイト (852 語) - 2024年2月5日 (月) 11:04
- owns_lock()がtrueであり、lock.mutex()が呼び出しスレッドによってロックされている。 戻り値: cv_status::timeout(タイムアウトした場合)、それ以外はcv_status::no_timeout。 例外: タイムアウト関連の例外。 wait_for 前提条件: lock…15キロバイト (1,843 語) - 2024年6月4日 (火) 22:19
- show_status("Encrypting file: {}".format(file_to_encrypt)) encrypt_file(file_to_encrypt, key) show_status("File encrypted successfully!") show_status("Decrypting…6キロバイト (830 語) - 2023年7月25日 (火) 06:34
- considered under the public domain. Images used have their own copyright status, specified in their respective repositories (en.wikibooks.org or at commons…2キロバイト (140 語) - 2024年3月3日 (日) 10:47
- process.swift enum Status { case active case inactive case pending // 後から追加された値 } func processStatus(_ status: Status) { switch status { case .active: print("Active")…21キロバイト (2,932 語) - 2024年10月31日 (木) 22:38
- integers" read (*,*) i,j open (unit=out_unit,file="results.txt",action="write",status="replace") write (out_unit,*) "The product of", i, " and", j write (out_unit…2キロバイト (300 語) - 2024年2月11日 (日) 07:41
- 《支配された名詞》、被限定語を nomen regens 《支配する名詞》と称する。 また、連語形のことを status constructus 《結合された状態》であるといい、独立形を status absolutus 《解放された状態》であると言う。 また「属格」と言ったけれども、ヘブライ語には、ギ…6キロバイト (810 語) - 2022年11月22日 (火) 17:24
- initialising */ GLenum glew_status = glewInit(); if (glew_status != GLEW_OK) { fprintf(stderr, "Error: %s\n", glewGetErrorString(glew_status)); return EXIT_FAILURE;…18キロバイト (2,483 語) - 2021年7月16日 (金) 04:16
- 言語の基盤ともなりました。単純でありながらも力強い表現力を持つC言語は、今日にいたるまで重要な役割を果たしてきました。 C - Project status and milestones. ISO/IEC. (2024-03-05). https://www.open-std…19キロバイト (1,682 語) - 2024年6月13日 (木) 03:46
- modeにしていることを前提に各機能を説明する。 モードを記憶させるには一段下の[Save current mode]をクリックする。 Status "Build"には自分が使っているフリーネットのビルドナンバーが表示される。もし、新しいビルドナンバーのフリーネットが接続してきたら、括弧書き…5キロバイト (695 語) - 2015年8月7日 (金) 11:36
- Input validation OOP5/Input validation PHP Include Files phpDocumentor Resources SQL Injection Attacks Reserved words テンプレート:Alphabetical テンプレート:Status…6キロバイト (422 語) - 2018年3月9日 (金) 15:59
- printf("function関数が呼ばれました。\n"); } 形式 #include <stdlib.h> _Noreturn void exit(int status); 引数 status 状態 返却値 呼び出し元に復帰できない。 機能 exit関数とは、正常プログラム終了を引き起こす関数である。 C11でexit()に…48キロバイト (6,540 語) - 2023年11月24日 (金) 12:28
- log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"';…48キロバイト (5,618 語) - 2024年6月30日 (日) 02:06
- h、stdbool.h、stdint.h以外は使用することはできません。 #include <efi.h> #include <efilib.h> EFI_STATUS EFIAPI efi_main (EFI_HANDLE hnd, EFI_SYSTEM_TABLE *SystemTable) { InitializeLib(hnd…5キロバイト (770 語) - 2021年7月16日 (金) 04:49
- x86_64 (Homebrew) でDBサーバーのバージョンを確認可能です。 DBサーバーに mysql(クライアント)でアクセスできるのであれば status コマンドの出力の Server: 欄で、あるいは select version(); の出力に MariaDB の文字列があるかで判定できます。…2キロバイト (257 語) - 2023年6月2日 (金) 00:54
- # delete all elements of array exit [ expression ] # exit immediately; status is expression 文はセミコロン、改行、右中括弧で終端します。 言語全体がEBNFで文書化されることもあります。以下のリンクはC++…5キロバイト (641 語) - 2022年7月9日 (土) 17:58
- mod_statusモジュールを使用して、サーバーのステータス情報を取得できます。mod_statusを有効にするには、httpd.confに以下の行を追加します。 LoadModule status_module libexec/apache24/mod_status.so <Location…54キロバイト (6,442 語) - 2024年7月5日 (金) 05:54
- gSignalStatus; void handler(int sig) { gSignalStatus = sig; } auto main() -> int { gSignalStatus = 0; signal(SIGINT, handler); // 処理ループ while (gSignalStatus…4キロバイト (464 語) - 2024年5月30日 (木) 23:28