検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 147 for OUT (0.007 sec.)
XOR training 5995
« 例 Fann 関数 » PHP Manual 例 XOR training XOR training This example shows how to train data fo ... 1 -1 例2 Simple train <?php $num_input = 2 ; $num_output = 1 ; $num_layers = 3 ; $num_neurons_hidden = 3 ... m_layers , $num_input , $num_neurons_hidden , $num_output ); if ( $ann ) { fann_set_activation_function_h ... _SIGMOID_SYMMETRIC ); fann_set_activation_function_output ( $ann , FANN_SIGMOID_SYMMETRIC ); $filename = ... not be created" ); $input = array(- 1 , 1 ); $calc_out = fann_run ( $ann , $input ); printf ( "xor test ( ...
https://man.plustar.jp/php/fann.examples-1.html - [similar]
暗号化フィルタ 5995
« 圧縮フィルタ サポートされるソケットトランスポートのリスト » PHP Manual 利用できるフィルタのリス ... unction decryptFile ( $password , $aes_filename , $out_stream ) { $iv_size = mcrypt_get_iv_size ( MCRYPT_ ... ilename ); $fc = fopen ( $aes_filename , "rb" ); $fout = fopen ( $out_stream , 'wb' ); if (!empty( $fout ... substr ( $block , 0 , 0 - $padding ); } fwrite ( $fout , $block ); } fclose ( $fout ); fclose ( $fc ); } ... { private $skipped = 0 ; function filter ( $in , $out , & $consumed , $closing ) { while ( $bucket = str ...
https://man.plustar.jp/php/filters.encryption.html - [similar]
PHP 変数を SQL 文のパラメータにバインドする 5995
« db2_autocommit db2_client_info » PHP Manual IBM DB2 関数 PHP 変数を SQL 文のパラメータにバイン ... B2_PARAM_IN ) 出力パラメータとするのか ( DB2_PARAM_OUT ) あるいは入出力両方を許可するのか ( DB2_PARAM_INO ... y Ride, goat, 9.7 Peaches, dog, 12.3 例2 IN および OUT パラメータを使用したストアドプロシージャのコール 以 ... ベースに存在する場合に文字列 TRUE を返す、入出力 (INOUT) パラメータ。 指定した 2 匹の動物の合計体重を返す、 ... 出力 (OUT) パラメータ。 さらにこのストアドプロシージャは結果 ...
https://man.plustar.jp/php/function.db2-bind-param.html - [similar]
ローカルのDH秘密鍵とリモート側のDH公開鍵を使い、共有シークレットを計算する 5995
« openssl_decrypt openssl_digest » PHP Manual OpenSSL 関数 ローカルのDH秘密鍵とリモート側のDH公開 ... nerate private/public key keypair openssl dhparam -out dhparam.pem 2048 openssl genpkey -paramfile dhpara ... m.pem -out privatekey.pem # extract public key only openssl p ... key -in privatekey.pem -pubout -out publickey.pem 次に、あなたの公開鍵をリモート側 ... enssl pkey -pubin -in remotepublickey.pem -text -noout 上の例の出力は、 たとえば以下のようになります。 PK ...
https://man.plustar.jp/php/function.openssl-dh-compute-key.html - [similar]
5995
« 定義済み定数 ソケットのエラー » PHP Manual ソケット 例 例 例1 ソケットの例: 簡易 TCP/IP サーバ ... ions. */ set_time_limit ( 0 ); /* Turn on implicit output flushing so we see what we're getting * as it c ... e.com\r\n" ; $in .= "Connection: Close\r\n\r\n" ; $out = '' ; echo "Sending HTTP HEAD request..." ; socke ... "OK.\n" ; echo "Reading response:\n\n" ; while ( $out = socket_read ( $socket , 2048 )) { echo $out ; } ...
https://man.plustar.jp/php/sockets.examples.html - [similar]
ソース URI を指定して新しい xmlwriter を作成する 5995
« XMLWriter::openMemory XMLWriter::outputMemory » PHP Manual XMLWriter ソース URI を指定して新し ... が返されていました。 例 例1 XML を直接出力する php://output ストリームラッパー を使えば、直接XMLを出力するこ ... とが出来ます。 <?php $out =new XMLWriter (); $out -> openURI ( 'php://output ...
https://man.plustar.jp/php/xmlwriter.openuri.html - [similar]
プリペアドステートメントを実行する 5948
« db2_exec db2_fetch_array » PHP Manual IBM DB2 関数 プリペアドステートメントを実行する db2_exec ... となります。 新しいペットの追加に成功しました。 例2 OUT パラメータを使用したストアドプロシージャのコール 以 ... 下の例では、まずひとつの OUT パラメータをパラメータマーカで受け取る CALL 文を準 ... LL 終了後は、 $num_pets にはストアドプロシージャの OUT パラメータに返された値が反映されています。 <?php $ ... db2_bind_param ( $res , 1 , "num_pets" , DB2_PARAM_OUT ); $rc = db2_execute ( $res ); print "私の飼ってい ...
https://man.plustar.jp/php/function.db2-execute.html - [similar]
The EvPeriodic class 5890
« EvLoop::verify EvPeriodic::again » PHP Manual Ev The EvPeriodic class The EvPeriodic class (PE ... econds after starting it as it uses a relative timeout). As with timers, the callback is guaranteed to be ... ame loop iteration then the ones with earlier time-out values are invoked before ones with later time-out ...
https://man.plustar.jp/php/class.evperiodic.html - [similar]
Poll the items 5890
« ZMQPoll::getLastErrors ZMQPoll::remove » PHP Manual ZMQPoll Poll the items ZMQPoll::poll (PECL ... l ( array &$readable , array &$writable , int $timeout = -1 ): int Polls the items in the current poll se ... be cleared at the beginning of the operation. timeout Timeout for the operation. -1 means that poll wait ... note that starting from version 1.0.0 the poll timeout is defined in milliseconds, rather than microsecon ... .0.0.1:5555" ); /* Create new pollset for incoming/outgoing message */ $poll = new ZMQPoll (); /* Add the ...
https://man.plustar.jp/php/zmqpoll.poll.html - [similar]
ファイルディスクリプタ間でデータを転送する 5831
« eio_seek eio_set_max_idle » PHP Manual Eio 関数 ファイルディスクリプタ間でデータを転送する eio ... プタ間でデータを転送する 説明 eio_sendfile ( mixed $out_fd , mixed $in_fd , int $offset , int $length , in ... NDFILE(2) の man ページを参照ください。 パラメータ out_fd 出力先のストリーム、ソケットリソース、あるいはフ ...
https://man.plustar.jp/php/function.eio-sendfile.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT