検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 1231 for function (0.015 sec.)
XOR training 3271
« 例 Fann 関数 » PHP Manual 例 XOR training XOR training This example shows how to train data fo ... r XOR function 例1 xor.data file 4 2 1 -1 -1 -1 -1 1 1 1 -1 1 1 1 ... , $num_output ); if ( $ann ) { fann_set_activation_function_hidden ( $ann , FANN_SIGMOID_SYMMETRIC ); fann_set ... _activation_function_output ( $ann , FANN_SIGMOID_SYMMETRIC ); $filenam ... his example shows how to read and run data for XOR function 例3 Simple test <?php $train_file = ( dirname ( __ ...
https://man.plustar.jp/php/fann.examples-1.html - [similar]
PHP DTrace 静的プローブとともに SystemTap を使用 3271
« PHP および DTrace の使用 関数リファレンス » PHP Manual DTrace 動的トレーシング PHP DTrace 静的 ... rn") process("sapi/cli/php").provider("php").mark("function__entry") process("sapi/cli/php").provider("php").m ... ark("function__return") process("sapi/cli/php").provider("php"). ... robe process("sapi/cli/php").provider("php").mark("function__entry") { printf("Probe function__entry\n"); prin ... tf(" function_name %s\n", user_string($arg1)); printf(" request_ ...
https://man.plustar.jp/php/features.dtrace.systemtap.html - [similar]
補完関数を登録する 3271
« readline_clear_history readline_info » PHP Manual Readline 関数 補完関数を登録する readline_co ... mpletion_function (PHP 4, PHP 5, PHP 7, PHP 8) readline_completion_f ... tion — 補完関数を登録する 説明 readline_completion_function ( callable $callback ): bool この関数は補完用の関数 ... 関連キーワード: 関数 , 補完 , 登録 , completion , function , callback , マッチ , 成功 , 名前 , 既存 ...
https://man.plustar.jp/php/function.readline-completion-function.html - [similar]
Add a background task to be run in parallel 3271
« GearmanClient::addTask GearmanClient::addTaskHigh » PHP Manual GearmanClient Add a background ... public GearmanClient::addTaskBackground ( string $function_name , string $workload , mixed &$context = ? , st ... Client::runTasks() to perform the work. パラメータ function_name ワーカーが実行するために登録した関数。 worklo ... ask. The client adds two tasks to execute the same function, but one is added with addTaskBackground() . A cal ... "reverse_status" ); # add a task for the "reverse" function $task = $gmc -> addTask ( "reverse" , "Hello World ...
https://man.plustar.jp/php/gearmanclient.addtaskbackground.html - [similar]
名前空間と動的言語機能 3271
« 名前空間の使用法: 基本編 namespace キーワードおよび __NAMESPACE__ 定数 » PHP Manual 名前空間 名 ... 動的なアクセス example1.php: <?php class classname { function __construct () { echo __METHOD__ , "\n" ; } } func ... tion funcname () { echo __FUNCTION__ , "\n" ; } const constname = "global" ; $a = 'cl ... <?php namespace namespacename ; class classname { function __construct () { echo __METHOD__ , "\n" ; } } func ... tion funcname () { echo __FUNCTION__ , "\n" ; } const constname = "namespaced" ; /* ダ ...
https://man.plustar.jp/php/language.namespaces.dynamic.html - [similar]
The MongoDB\Driver\Command class 3254
« MongoDB\Driver\Manager::startSession MongoDB\Driver\Command::__construct » PHP Manual MongoDB\ ... class CreateCollection { protected $cmd = array(); function __construct ( $collectionName ) { $this -> cmd [ " ... create" ] = (string) $collectionName ; } function setCappedCollection ( $maxBytes , $maxDocuments = ... $this -> cmd [ "max" ] = (int) $maxDocuments ; } } function usePowerOf2Sizes ( $bool ) { if ( $bool ) { $this ... = 1 ; } else { $this -> cmd [ "flags" ] = 0 ; } } function setFlags ( $flags ) { $this -> cmd [ "flags" ] = ( ...
https://man.plustar.jp/php/class.mongodb-driver-command.html - [similar]
新機能 3254
« PHP 7.4.x から PHP 8.0.x への移行 下位互換性のない変更点 » PHP Manual PHP 7.4.x から PHP 8.0.x ... コードが書けるようになります: <?php class A { public function method ( int $many , string $parameters , $here ) ... {} } class B extends A { public function method (... $everything ) {} } ?> 以下のようにして ... て使えるようになりました: <?php class Test { public function create (): static { return new static(); } } ?> オ ... fn () => throw new Exception ( 'Exception in arrow function' ); $user = $session -> user ?? throw new Exceptio ...
https://man.plustar.jp/php/migration80.new-features.html - [similar]
Iterator インターフェイス 3231
« Traversable Iterator::current » PHP Manual 定義済みのインターフェイスとクラス Iterator インター ... ent" , "secondelement" , "lastelement" , ); public function __construct () { $this -> position = 0 ; } public ... > position = 0 ; } #[\ReturnTypeWillChange] public function current () { var_dump ( __METHOD__ ); return $this ... s -> position ]; } #[\ReturnTypeWillChange] public function key () { var_dump ( __METHOD__ ); return $this -> ... position ; } public function next (): void { var_dump ( __METHOD__ ); ++ $this ...
https://man.plustar.jp/php/class.iterator.html - [similar]
Create a new SSL buffer event to send its data over another buffer event 3231
« EventBufferEvent::sslError EventBufferEvent::sslGetCipherInfo » PHP Manual EventBufferEvent Cr ... end its data over another buffer event 注意 : This function is available only if Event is compiled with OpenSS ... c $buffers = []; public $maxRead = 256000 ; public function __construct () { $this -> ctx = new EventSslContex ... _error' ]); $this -> base -> dispatch (); } public function ev_accept ( $listener , $fd , $address , $ctx ) { ... 220 ' . $this -> domainName . " wazzzap?\r\n" ); } function ev_error ( $listener , $ctx ) { $errno = EventUtil ...
https://man.plustar.jp/php/eventbufferevent.sslfilter.html - [similar]
同一ファイル内での複数の名前空間の定義 3231
« サブ名前空間の宣言 名前空間の使用法: 基本編 » PHP Manual 名前空間 同一ファイル内での複数の名前 ... st CONNECT_OK = 1 ; class Connection { /* ... */ } function connect () { /* ... */ } namespace AnotherProject ... st CONNECT_OK = 1 ; class Connection { /* ... */ } function connect () { /* ... */ } ?> この構文は、複数の名前 ... st CONNECT_OK = 1 ; class Connection { /* ... */ } function connect () { /* ... */ } } namespace AnotherProjec ... st CONNECT_OK = 1 ; class Connection { /* ... */ } function connect () { /* ... */ } } ?> ただ、複数の名前空間 ...
https://man.plustar.jp/php/language.namespaces.definitionmultiple.html - [similar]