Home
last modified time | relevance | path

Searched refs:cluster (Results 1 – 25 of 84) sorted by relevance

1234

/plugin/aichat/vendor/bdelespierre/php-kmeans/src/KMeans/
DSpace.php238 foreach ($clusters as $cluster) {
239 foreach ($cluster as $point) {
244 if ($closest !== $cluster) {
249 if (! isset($detach[$cluster])) {
250 $detach[$cluster] = new \SplObjectStorage();
254 $detach[$cluster]->attach($point);
262 foreach ($attach as $cluster) {
263 $cluster->attachAll($attach[$cluster]);
266 foreach ($detach as $cluster) {
267 $cluster->detachAll($detach[$cluster]);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GameServices/
DGkeClusterReference.php25 public $cluster; variable in Google\\Service\\GameServices\\GkeClusterReference
30 public function setCluster($cluster) argument
32 $this->cluster = $cluster;
39 return $this->cluster;
DDeployedClusterState.php26 public $cluster; variable in Google\\Service\\GameServices\\DeployedClusterState
33 public function setCluster($cluster) argument
35 $this->cluster = $cluster;
42 return $this->cluster;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AIPlatformNotebooks/
DDataprocParameters.php25 public $cluster; variable in Google\\Service\\AIPlatformNotebooks\\DataprocParameters
30 public function setCluster($cluster) argument
32 $this->cluster = $cluster;
39 return $this->cluster;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TrafficDirectorService/
DStaticCluster.php25 public $cluster; variable in Google\\Service\\TrafficDirectorService\\StaticCluster
34 public function setCluster($cluster) argument
36 $this->cluster = $cluster;
43 return $this->cluster;
DDynamicCluster.php25 public $cluster; variable in Google\\Service\\TrafficDirectorService\\DynamicCluster
38 public function setCluster($cluster) argument
40 $this->cluster = $cluster;
47 return $this->cluster;
DNode.php34 public $cluster; variable in Google\\Service\\TrafficDirectorService\\Node
91 public function setCluster($cluster) argument
93 $this->cluster = $cluster;
100 return $this->cluster;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDeploy/
DGkeCluster.php25 public $cluster; variable in Google\\Service\\CloudDeploy\\GkeCluster
34 public function setCluster($cluster) argument
36 $this->cluster = $cluster;
43 return $this->cluster;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Eventarc/
DGKE.php25 public $cluster; variable in Google\\Service\\Eventarc\\GKE
46 public function setCluster($cluster) argument
48 $this->cluster = $cluster;
55 return $this->cluster;
/plugin/aichat/vendor/bdelespierre/php-kmeans/
DREADME.md47 // cluster these 50 points in 3 clusters
50 // display the cluster centers and attached points
51 foreach ($clusters as $num => $cluster) {
52 $coordinates = $cluster->getCoordinates();
58 count($cluster)
95 ### How to get coordinates of a point/cluster:
105 ### List all points of a space/cluster:
108 foreach ($cluster as $point) {
135 foreach ($clusters as $i => $cluster) {
136 printf("Cluster %d [%d,%d]: %d points\n", $i, $cluster[0], $cluster[1], count($cluster));
Ddemo.php31 foreach ($clusters as $num => $cluster) {
32 $coordinates = $cluster->getCoordinates();
38 count($cluster)
/plugin/authgooglesheets/vendor/google/apiclient-services/src/BackupforGKE/
DClusterMetadata.php33 public $cluster; variable in Google\\Service\\BackupforGKE\\ClusterMetadata
74 public function setCluster($cluster) argument
76 $this->cluster = $cluster;
83 return $this->cluster;
DRestorePlan.php29 public $cluster; variable in Google\\Service\\BackupforGKE\\RestorePlan
78 public function setCluster($cluster) argument
80 $this->cluster = $cluster;
87 return $this->cluster;
DBackupPlan.php29 public $cluster; variable in Google\\Service\\BackupforGKE\\BackupPlan
100 public function setCluster($cluster) argument
102 $this->cluster = $cluster;
109 return $this->cluster;
DRestore.php29 public $cluster; variable in Google\\Service\\BackupforGKE\\Restore
106 public function setCluster($cluster) argument
108 $this->cluster = $cluster;
115 return $this->cluster;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidEnterprise/
DStoreLayoutClustersListResponse.php29 public function setCluster($cluster) argument
31 $this->cluster = $cluster;
38 return $this->cluster;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/BigtableAdmin/
DPartialUpdateClusterRequest.php32 public function setCluster(Cluster $cluster) argument
34 $this->cluster = $cluster;
41 return $this->cluster;
DCreateClusterRequest.php36 public function setCluster(Cluster $cluster) argument
38 $this->cluster = $cluster;
45 return $this->cluster;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Container/
DCreateClusterRequest.php40 public function setCluster(Cluster $cluster) argument
42 $this->cluster = $cluster;
49 return $this->cluster;
/plugin/aichat/db/
Dupdate0002.sql3 cluster INTEGER NOT NULL PRIMARY KEY, field
8 ALTER TABLE embeddings ADD COLUMN cluster INTEGER REFERENCES clusters(cluster);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
D804a97ff4d0613e6568e4efb19c52021.asciidoc12 $response = $client->cluster()->putSettings($params);
20 $response = $client->cluster()->putSettings($params);
28 $response = $client->cluster()->putSettings($params);
/plugin/aichat/Storage/
DSQLiteStorage.php141 $cluster = $this->getCluster($vector, $lang);
144 ['cluster' => $cluster]
155 … [json_encode($vector, JSON_THROW_ON_ERROR), $cluster, $this->similarityThreshold, $limit]
303 foreach ($clusters as $cluster) {
305 $centroid = $cluster->getCoordinates();
331 … $cluster = $this->getCluster($vector, $this->useLanguageClusters ? $record['lang'] : '');
333 $this->db->exec($query, [$cluster, $record['id']]);
336 ['id' => $record['id'], 'cluster' => $cluster]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/
Drun-elasticsearch.sh34 --env cluster.name=$cluster_name
35 --env cluster.initial_master_nodes=$master_node_name
37 --env cluster.routing.allocation.disk.threshold_enabled=false
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
Dnamespaces.asciidoc14 | `cluster()` | Cluster-centric stats and info
15 | `snapshot()` | Methods to snapshot/restore your cluster and indices
38 $response = $client->cluster()->stats();
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
DClusterNamespace.asciidoc75 … Specifies whether to wait for all excluded nodes to be removed from the cluster before clearing t…
136 …the level of detail for returned information (Options = cluster,indices,shards) (Default = cluster)
143 …locating_shards'] = (boolean) Whether to wait until there are no relocating shards in the cluster
144 …ializing_shards'] = (boolean) Whether to wait until there are no initializing shards in the cluster
145 $params['wait_for_status'] = (enum) Wait until cluster is in a specific state (Opti…
205 …tings to be updated. Can be either `transient` or `persistent` (survives cluster restart). (Requir…

1234