Home
last modified time | relevance | path

Searched full:cluster (Results 1 – 25 of 6279) sorted by relevance

12345678910>>...252

/aosp_15_r20/external/grpc-grpc/test/core/xds/
H A Dxds_cluster_resource_type_test.cc56 #include "src/proto/grpc/testing/xds/v3/cluster.pb.h"
69 using envoy::config::cluster::v3::Cluster;
135 EXPECT_EQ(resource_type->type_url(), "envoy.config.cluster.v3.Cluster"); in TEST_F()
147 "Can't parse Cluster resource.") in TEST_F()
152 Cluster cluster; in TEST_F() local
153 cluster.set_name("foo"); in TEST_F()
154 cluster.set_type(cluster.EDS); in TEST_F()
155 cluster.mutable_eds_cluster_config()->mutable_eds_config()->mutable_self(); in TEST_F()
157 ASSERT_TRUE(cluster.SerializeToString(&serialized_resource)); in TEST_F()
179 // cluster type tests
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/a9/
Da9ea070a6815dff3f87dbf1fb20c5b27148c82971Cluster/DirectRenderingCluster/res/color/icon_color.xml packages/apps/Car/Cluster/DirectRenderingC…
/aosp_15_r20/out/soong/raw-aosp_shiba/57/
D57df407f48372944fbe37f95d1d1fed03f2668621Cluster/ClusterOsDouble/res/color/icon_color.xml packages/apps/Car/Cluster/ClusterOsDouble/res/dra…
/aosp_15_r20/external/grpc-grpc-java/xds/third_party/envoy/src/main/proto/envoy/config/cluster/v3/
H A Dcluster.proto3 package envoy.config.cluster.v3;
5 import "envoy/config/cluster/v3/circuit_breaker.proto";
6 import "envoy/config/cluster/v3/filter.proto";
7 import "envoy/config/cluster/v3/outlier_detection.proto";
32 option java_package = "io.envoyproxy.envoy.config.cluster.v3";
35 option go_package = "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3;clusterv3";
38 // [#protodoc-title: Cluster configuration]
40 // Cluster list collections. Entries are ``Cluster`` resources or references.
46 // Configuration for a single upstream cluster.
48 message Cluster { message
[all …]
/aosp_15_r20/external/grpc-grpc-java/xds/src/test/java/io/grpc/xds/
H A DLoadBalancerConfigFactoryTest.java34 import io.envoyproxy.envoy.config.cluster.v3.Cluster;
35 import io.envoyproxy.envoy.config.cluster.v3.Cluster.LbPolicy;
36 import io.envoyproxy.envoy.config.cluster.v3.Cluster.LeastRequestLbConfig;
37 import io.envoyproxy.envoy.config.cluster.v3.Cluster.RingHashLbConfig;
38 import io.envoyproxy.envoy.config.cluster.v3.Cluster.RingHashLbConfig.HashFunction;
39 import io.envoyproxy.envoy.config.cluster.v3.LoadBalancingPolicy;
40 import io.envoyproxy.envoy.config.cluster.v3.LoadBalancingPolicy.Policy;
156 Cluster cluster = newCluster(buildWrrPolicy(ROUND_ROBIN_POLICY)); in roundRobin() local
158 assertThat(newLbConfig(cluster, true, true, true)).isEqualTo(VALID_ROUND_ROBIN_CONFIG); in roundRobin()
163 Cluster cluster = newCluster(buildWrrPolicy(WRR_POLICY)); in weightedRoundRobin() local
[all …]
/aosp_15_r20/external/arm-trusted-firmware/plat/mediatek/mt8183/drivers/spmc/
H A Dmtspmc.c22 static void set_retention(int cluster, int tick) in set_retention() argument
26 if (cluster) in set_retention()
34 if (cluster) in set_retention()
40 void spm_enable_cpu_auto_off(int cluster, int cpu) in spm_enable_cpu_auto_off() argument
42 uintptr_t reg = per_cpu(cluster, cpu, MCUCFG_SPARK); in spm_enable_cpu_auto_off()
44 set_retention(cluster, 1); in spm_enable_cpu_auto_off()
48 void spm_disable_cpu_auto_off(int cluster, int cpu) in spm_disable_cpu_auto_off() argument
50 uintptr_t reg = per_cpu(cluster, cpu, MCUCFG_SPARK); in spm_disable_cpu_auto_off()
53 set_retention(cluster, 0); in spm_disable_cpu_auto_off()
56 void spm_set_cpu_power_off(int cluster, int cpu) in spm_set_cpu_power_off() argument
[all …]
/aosp_15_r20/external/trusty/arm-trusted-firmware/plat/mediatek/mt8183/drivers/spmc/
Dmtspmc.c22 static void set_retention(int cluster, int tick) in set_retention() argument
26 if (cluster) in set_retention()
34 if (cluster) in set_retention()
40 void spm_enable_cpu_auto_off(int cluster, int cpu) in spm_enable_cpu_auto_off() argument
42 uintptr_t reg = per_cpu(cluster, cpu, MCUCFG_SPARK); in spm_enable_cpu_auto_off()
44 set_retention(cluster, 1); in spm_enable_cpu_auto_off()
48 void spm_disable_cpu_auto_off(int cluster, int cpu) in spm_disable_cpu_auto_off() argument
50 uintptr_t reg = per_cpu(cluster, cpu, MCUCFG_SPARK); in spm_disable_cpu_auto_off()
53 set_retention(cluster, 0); in spm_disable_cpu_auto_off()
56 void spm_set_cpu_power_off(int cluster, int cpu) in spm_set_cpu_power_off() argument
[all …]
/aosp_15_r20/external/googleapis/google/container/v1alpha1/
H A Dcluster_service.proto30 // Google Container Engine Cluster Manager v1alpha1
38 // Gets the details of a specific cluster.
39 rpc GetCluster(GetClusterRequest) returns (Cluster) {
43 // Creates a cluster, consisting of the specified number and type of Google
46 // By default, the cluster is created in the project's
49 // One firewall is added for the cluster. After cluster creation,
50 // the cluster creates routes for each node to allow the containers
52 // cluster.
55 // which CIDR range is being used by the cluster.
60 // Updates the settings of a specific cluster.
[all …]
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
H A DKMeansPlusPlusClusterer.java31 * @param <T> type of the points to cluster
38 /** Strategies to use for replacing an empty cluster. */
41 /** Split the cluster with largest distance variance. */
44 /** Split the cluster with largest number of points. */
47 /** Create a cluster around the point farthest from its centroid. */
64 * algorithm iterations is to split the cluster with largest distance variance.
86 * @param points the points to cluster
92 public List<Cluster<T>> cluster(final Collection<T> points, in cluster() method in KMeansPlusPlusClusterer
95 List<Cluster<T>> clusters = chooseInitialCenters(points, k, random); in cluster()
102 List<Cluster<T>> newClusters = new ArrayList<Cluster<T>>(); in cluster()
[all …]
/aosp_15_r20/external/harfbuzz_ng/docs/
H A Dusermanual-clusters.xml12 In text shaping, a <emphasis>cluster</emphasis> is a sequence of
14 unit. A single letter or symbol can be a cluster of its
17 &mdash; and require the shaper to ensure that the cluster is not
21 A cluster is distinct from a <emphasis>grapheme</emphasis>,
36 cluster and are treated as a unit by the shaping engine &mdash;
56 HarfBuzz records cluster information independently from how
59 utilize the cluster information to implement features such as:
107 assigned a <emphasis>cluster value</emphasis>.
110 This cluster value is an arbitrary number; HarfBuzz uses it only
113 cluster value. This is for the sake of convenience; the actual
[all …]
/aosp_15_r20/external/arm-trusted-firmware/plat/hisilicon/hikey960/drivers/pwrc/
H A Dhisi_pwrc.c40 #define CPUIDLE_FLAG_REG(cluster) \ argument
41 ((cluster == 0) ? REG_SCBAKDATA8_OFFSET : \
95 static void hisi_cpuhotplug_lock(unsigned int cluster, unsigned int core) in hisi_cpuhotplug_lock() argument
99 lock_id = (cluster << 2) + core; in hisi_cpuhotplug_lock()
104 static void hisi_cpuhotplug_unlock(unsigned int cluster, unsigned int core) in hisi_cpuhotplug_unlock() argument
108 lock_id = (cluster << 2) + core; in hisi_cpuhotplug_unlock()
114 void hisi_cpuidle_lock(unsigned int cluster, unsigned int core) in hisi_cpuidle_lock() argument
116 unsigned int offset = (cluster == 0 ? RES0_LOCK_BASE : RES1_LOCK_BASE); in hisi_cpuidle_lock()
122 void hisi_cpuidle_unlock(unsigned int cluster, unsigned int core) in hisi_cpuidle_unlock() argument
124 unsigned int offset = (cluster == 0 ? RES0_LOCK_BASE : RES1_LOCK_BASE); in hisi_cpuidle_unlock()
[all …]
/aosp_15_r20/external/trusty/arm-trusted-firmware/plat/hisilicon/hikey960/drivers/pwrc/
Dhisi_pwrc.c40 #define CPUIDLE_FLAG_REG(cluster) \ argument
41 ((cluster == 0) ? REG_SCBAKDATA8_OFFSET : \
95 static void hisi_cpuhotplug_lock(unsigned int cluster, unsigned int core) in hisi_cpuhotplug_lock() argument
99 lock_id = (cluster << 2) + core; in hisi_cpuhotplug_lock()
104 static void hisi_cpuhotplug_unlock(unsigned int cluster, unsigned int core) in hisi_cpuhotplug_unlock() argument
108 lock_id = (cluster << 2) + core; in hisi_cpuhotplug_unlock()
114 void hisi_cpuidle_lock(unsigned int cluster, unsigned int core) in hisi_cpuidle_lock() argument
116 unsigned int offset = (cluster == 0 ? RES0_LOCK_BASE : RES1_LOCK_BASE); in hisi_cpuidle_lock()
122 void hisi_cpuidle_unlock(unsigned int cluster, unsigned int core) in hisi_cpuidle_unlock() argument
124 unsigned int offset = (cluster == 0 ? RES0_LOCK_BASE : RES1_LOCK_BASE); in hisi_cpuidle_unlock()
[all …]
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/stat/clustering/
H A DKMeansPlusPlusClusterer.java35 * @param <T> type of the points to cluster
44 /** Strategies to use for replacing an empty cluster. */
47 /** Split the cluster with largest distance variance. */
50 /** Split the cluster with largest number of points. */
53 /** Create a cluster around the point farthest from its centroid. */
70 * algorithm iterations is to split the cluster with largest distance variance.
92 * @param points the points to cluster
100 * @throws ConvergenceException if an empty cluster is encountered and the
103 public List<Cluster<T>> cluster(final Collection<T> points, final int k, in cluster() method in KMeansPlusPlusClusterer
108 List<Cluster<T>> best = null; in cluster()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/service/
H A Ddata_service_ops_test.py68 cluster = data_service_test_base.TestCluster(
76 cluster,
82 cluster = data_service_test_base.TestCluster(num_workers=1)
86 cluster,
92 cluster = data_service_test_base.TestCluster(
101 ds, cluster, data_transfer_protocol=self._get_data_transfer_protocol())
107 cluster = data_service_test_base.TestCluster(
114 ds, cluster, data_transfer_protocol=self._get_data_transfer_protocol())
126 cluster = data_service_test_base.TestCluster(
134 ds, cluster, data_transfer_protocol=self._get_data_transfer_protocol())
[all …]
H A Dauto_shard_test.py41 cluster = MultiProcessCluster(
47 cluster.start_remote_worker()
48 cluster.start_local_worker()
50 cluster.start_remote_worker()
51 return cluster
74 cluster = _make_service_cluster(num_workers=5, local_shard_index=1)
77 dataset, cluster=cluster, processing_mode=sharding_policy)
82 cluster = _make_service_cluster(num_workers=5, local_shard_index=1)
86 cluster=cluster,
97 cluster = _make_service_cluster(num_workers=5, local_shard_index=1)
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dgameservices_v1.projects.locations.realms.gameServerClusters.html82 <p class="firstline">Creates a new game server cluster in a given project and location.</p>
85 <p class="firstline">Deletes a single game server cluster.</p>
88 <p class="firstline">Gets details of a single game server cluster.</p>
97 <p class="firstline">Patches a single game server cluster.</p>
100 <p class="firstline">Previews creation of a new game server cluster in a given project and location…
103 <p class="firstline">Previews deletion of a single game server cluster.</p>
115 <pre>Creates a new game server cluster in a given project and location.
122 { # A game server cluster resource.
123 …erState&quot;: { # The state of the Kubernetes cluster. # Output only. The state of the Kubernetes…
124 …ot;, # Output only. The version of Agones currently installed in the registered Kubernetes cluster.
[all …]
Dgameservices_v1beta.projects.locations.realms.gameServerClusters.html82 <p class="firstline">Creates a new game server cluster in a given project and location.</p>
85 <p class="firstline">Deletes a single game server cluster.</p>
88 <p class="firstline">Gets details of a single game server cluster.</p>
97 <p class="firstline">Patches a single game server cluster.</p>
100 <p class="firstline">Previews creation of a new game server cluster in a given project and location…
103 <p class="firstline">Previews deletion of a single game server cluster.</p>
115 <pre>Creates a new game server cluster in a given project and location.
122 { # A game server cluster resource.
123 …erState&quot;: { # The state of the Kubernetes cluster. # Output only. The state of the Kubernetes…
124 …ot;, # Output only. The version of Agones currently installed in the registered Kubernetes cluster.
[all …]
Dbigtableadmin_v2.projects.instances.clusters.html87cluster within an instance. Note that exactly one of Cluster.serve_nodes and Cluster.cluster_confi…
90 <p class="firstline">Deletes a cluster from an instance.</p>
93 <p class="firstline">Gets information about a cluster.</p>
102 …lass="firstline">Partially updates a cluster within a project. This method is the preferred way to…
105 <p class="firstline">Updates a cluster within an instance. Note that UpdateCluster does not support…
114cluster within an instance. Note that exactly one of Cluster.serve_nodes and Cluster.cluster_confi…
117 …parent: string, Required. The unique name of the instance in which to create the new cluster. Valu…
122 &quot;clusterConfig&quot;: { # Configuration for a cluster. # Configuration for this cluster.
123 …scalingConfig&quot;: { # Autoscaling config for a cluster. # Autoscaling configuration for this cl…
124 … # Limits for the number of nodes a Cluster can autoscale up/down to. # Required. Autoscaling limi…
[all …]
/aosp_15_r20/external/grpc-grpc/test/cpp/end2end/xds/
H A Dxds_cluster_type_end2end_test.cc43 using ::envoy::config::cluster::v3::CustomClusterType;
79 // LOGICAL_DNS cluster tests
89 // Create Logical DNS Cluster in TEST_P()
90 auto cluster = default_cluster_; in TEST_P() local
91 cluster.set_type(Cluster::LOGICAL_DNS); in TEST_P()
92 auto* address = cluster.mutable_load_assignment() in TEST_P()
100 balancer_->ads_service()->SetCdsResource(cluster); in TEST_P()
114 // aggregate cluster tests
118 // per-underlying-cluster basis.
143 Cluster new_cluster1 = default_cluster_; in TEST_P()
[all …]
/aosp_15_r20/external/grpc-grpc/tools/distrib/python/xds_protos/envoy/config/cluster/v3/
H A Dcluster_pb2.py3 # source: envoy/config/cluster/v3/cluster.proto
14 from envoy.config.cluster.v3 import circuit_breaker_pb2 as envoy_dot_config_dot_cluster_dot_v3_dot_…
15 from envoy.config.cluster.v3 import filter_pb2 as envoy_dot_config_dot_cluster_dot_v3_dot_filter__p…
16 from envoy.config.cluster.v3 import outlier_detection_pb2 as envoy_dot_config_dot_cluster_dot_v3_do…
40cluster/v3/cluster.proto\x12\x17\x65nvoy.config.cluster.v3\x1a-envoy/config/cluster/v3/circuit_bre…
44 _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'envoy.config.cluster.v3.cluster_pb2', _globals)
47 …\n%io.envoyproxy.envoy.config.cluster.v3B\014ClusterProtoP\001ZHgithub.com/envoyproxy/go-control-p…
51 …_CLUSTER_TRANSPORTSOCKETMATCH._serialized_options = b'\232\305\210\036+\n)envoy.api.v2.Cluster.Tra…
55 …_CLUSTER_CUSTOMCLUSTERTYPE._serialized_options = b'\232\305\210\036(\n&envoy.api.v2.Cluster.Custom…
57 …_CLUSTER_EDSCLUSTERCONFIG._serialized_options = b'\232\305\210\036\'\n%envoy.api.v2.Cluster.EdsClu…
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/data/service/
H A Ddata_service_test.cc71 TestCluster cluster(/*num_workers=*/5); in TEST() local
72 TF_ASSERT_OK(cluster.Initialize()); in TEST()
73 DatasetClient<int64_t> dataset_client(cluster); in TEST()
79 Pair(cluster.WorkerAddress(0), ElementsAreArray(Range(20))), in TEST()
80 Pair(cluster.WorkerAddress(1), ElementsAreArray(Range(20))), in TEST()
81 Pair(cluster.WorkerAddress(2), ElementsAreArray(Range(20))), in TEST()
82 Pair(cluster.WorkerAddress(3), ElementsAreArray(Range(20))), in TEST()
83 Pair(cluster.WorkerAddress(4), ElementsAreArray(Range(20)))))); in TEST()
87 TestCluster cluster(/*num_workers=*/5); in TEST() local
88 TF_ASSERT_OK(cluster.Initialize()); in TEST()
[all …]
/aosp_15_r20/external/google-cloud-java/java-container/proto-google-cloud-container-v1/src/main/proto/google/container/v1/
H A Dcluster_service.proto42 // Google Kubernetes Engine Cluster Manager v1
61 // Gets the details of a specific cluster.
62 rpc GetCluster(GetClusterRequest) returns (Cluster) {
73 // Creates a cluster, consisting of the specified number and type of Google
76 // By default, the cluster is created in the project's
80 // One firewall is added for the cluster. After cluster creation,
83 // cluster.
86 // which CIDR range the cluster is using.
96 option (google.api.method_signature) = "project_id,zone,cluster";
97 option (google.api.method_signature) = "parent,cluster";
[all …]
/aosp_15_r20/external/google-cloud-java/java-alloydb/proto-google-cloud-alloydb-v1/src/main/java/com/google/cloud/alloydb/v1/
H A DCluster.java25 * A cluster is a collection of regional AlloyDB resources. It can include a
27 * All cluster resources share a storage layer, which scales as needed.
30 * Protobuf type {@code google.cloud.alloydb.v1.Cluster}
32 public final class Cluster extends com.google.protobuf.GeneratedMessageV3 class
34 // @@protoc_insertion_point(message_implements:google.cloud.alloydb.v1.Cluster)
37 // Use Cluster.newBuilder() to construct.
38 private Cluster(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Cluster() method in Cluster
42 private Cluster() { in Cluster() method in Cluster
56 return new Cluster(); in newInstance()
88 com.google.cloud.alloydb.v1.Cluster.class, in internalGetFieldAccessorTable()
[all …]
/aosp_15_r20/external/googleapis/google/container/v1/
H A Dcluster_service.proto42 // Google Kubernetes Engine Cluster Manager v1
61 // Gets the details of a specific cluster.
62 rpc GetCluster(GetClusterRequest) returns (Cluster) {
73 // Creates a cluster, consisting of the specified number and type of Google
76 // By default, the cluster is created in the project's
80 // One firewall is added for the cluster. After cluster creation,
83 // cluster.
86 // which CIDR range the cluster is using.
96 option (google.api.method_signature) = "project_id,zone,cluster";
97 option (google.api.method_signature) = "parent,cluster";
[all …]
/aosp_15_r20/external/googleapis/google/container/v1beta1/
H A Dcluster_service.proto43 // Google Kubernetes Engine Cluster Manager v1beta1
61 // Gets the details for a specific cluster.
62 rpc GetCluster(GetClusterRequest) returns (Cluster) {
72 // Creates a cluster, consisting of the specified number and type of Google
75 // By default, the cluster is created in the project's
79 // One firewall is added for the cluster. After cluster creation,
82 // cluster.
85 // which CIDR range the cluster is using.
95 option (google.api.method_signature) = "project_id,zone,cluster";
98 // Updates the settings for a specific cluster.
[all …]

12345678910>>...252