Home
last modified time | relevance | path

Searched full:groupby (Results 1 – 25 of 224) sorted by relevance

123456789

/external/python/cpython3/Tools/c-analyzer/cpython/
D_capi.py243 groupby = raw.replace(',', ' ').strip().split()
247 if not all(v in GROUPINGS for v in groupby):
248 raise ValueError(f'invalid groupby value {raw!r}')
249 return groupby
252 def _resolve_full_groupby(groupby): argument
253 if isinstance(groupby, str):
254 groupby = [groupby]
256 for grouping in groupby + list(GROUPINGS):
262 def summarize(items, *, groupby='kind', includeempty=True, minimize=None): argument
274 groupby = _parse_groupby(groupby)[0]
[all …]
/external/rust/android-crates-io/crates/plotters/src/coord/ranged1d/combinators/
Dgroup_by.rs15 /// With the help of the GroupBy decorator, this can be archived quite easily:
27 pub struct GroupBy<T: DiscreteRanged>(T, usize); struct
30 /// `GroupBy` decorated ranged value.
35 /// Make a grouping ranged value, see the documentation for `GroupBy` for details.
39 fn group_by(self, value: usize) -> GroupBy<<Self as AsRangedCoord>::CoordDescType> { in group_by()
40 GroupBy(self.into(), value) in group_by()
46 impl<T: DiscreteRanged> DiscreteRanged for GroupBy<T> { implementation
58 impl<T, R: DiscreteRanged<ValueType = T> + ValueFormatter<T>> ValueFormatter<T> for GroupBy<R> { implementation
64 impl<T: DiscreteRanged> Ranged for GroupBy<T> { implementation
/external/perfetto/ui/src/plugins/dev.perfetto.AndroidNetwork/
Dindex.ts67 callback: async (groupby, filter, trackName) => {
68 if (groupby === undefined) {
69 groupby = prompt('Group by', 'package_name');
70 if (groupby === null) return;
83 'group_by', '${groupby}',
91 const groupCols = groupby.replaceAll(' ', '').split(',');
/external/google-cloud-java/java-securitycenter/proto-google-cloud-securitycenter-v1beta1/src/main/java/com/google/cloud/securitycenter/v1beta1/
DGroupResultOrBuilder.java30 * Properties matching the groupBy fields in the request.
40 * Properties matching the groupBy fields in the request.
53 * Properties matching the groupBy fields in the request.
63 * Properties matching the groupBy fields in the request.
77 * Properties matching the groupBy fields in the request.
DGroupFindingsRequestOrBuilder.java30 * Required. Name of the source to groupBy. Its format is
31 * "organizations/[organization_id]/sources/[source_id]". To groupBy across
47 * Required. Name of the source to groupBy. Its format is
48 * "organizations/[organization_id]/sources/[source_id]". To groupBy across
137 * @return The groupBy.
157 * @return The bytes for groupBy.
DGroupResult.java25 * Result containing the properties and count of a groupBy request.
112 * Properties matching the groupBy fields in the request.
134 * Properties matching the groupBy fields in the request.
147 * Properties matching the groupBy fields in the request.
168 * Properties matching the groupBy fields in the request.
384 * Result containing the properties and count of a groupBy request.
633 * Properties matching the groupBy fields in the request.
655 * Properties matching the groupBy fields in the request.
668 * Properties matching the groupBy fields in the request.
689 * Properties matching the groupBy fields in the request.
[all …]
DGroupFindingsRequest.java81 * Required. Name of the source to groupBy. Its format is
82 * "organizations/[organization_id]/sources/[source_id]". To groupBy across
109 * Required. Name of the source to groupBy. Its format is
110 * "organizations/[organization_id]/sources/[source_id]". To groupBy across
240 * @return The groupBy.
271 * @return The bytes for groupBy.
891 * Required. Name of the source to groupBy. Its format is
892 * "organizations/[organization_id]/sources/[source_id]". To groupBy across
918 * Required. Name of the source to groupBy. Its format is
919 * "organizations/[organization_id]/sources/[source_id]". To groupBy across
[all …]
DGroupFindingsResponseOrBuilder.java93 * Time used for executing the groupBy request.
105 * Time used for executing the groupBy request.
117 * Time used for executing the groupBy request.
DGroupAssetsResponseOrBuilder.java93 * Time used for executing the groupBy request.
105 * Time used for executing the groupBy request.
117 * Time used for executing the groupBy request.
/external/google-cloud-java/java-securitycenter/proto-google-cloud-securitycenter-v1p1beta1/src/main/java/com/google/cloud/securitycenter/v1p1beta1/
DGroupResultOrBuilder.java30 * Properties matching the groupBy fields in the request.
40 * Properties matching the groupBy fields in the request.
53 * Properties matching the groupBy fields in the request.
63 * Properties matching the groupBy fields in the request.
77 * Properties matching the groupBy fields in the request.
DGroupResult.java25 * Result containing the properties and count of a groupBy request.
112 * Properties matching the groupBy fields in the request.
134 * Properties matching the groupBy fields in the request.
147 * Properties matching the groupBy fields in the request.
168 * Properties matching the groupBy fields in the request.
385 * Result containing the properties and count of a groupBy request.
634 * Properties matching the groupBy fields in the request.
656 * Properties matching the groupBy fields in the request.
669 * Properties matching the groupBy fields in the request.
690 * Properties matching the groupBy fields in the request.
[all …]
/external/google-cloud-java/java-securitycenter/proto-google-cloud-securitycenter-v1/src/main/java/com/google/cloud/securitycenter/v1/
DGroupResultOrBuilder.java30 * Properties matching the groupBy fields in the request.
40 * Properties matching the groupBy fields in the request.
53 * Properties matching the groupBy fields in the request.
63 * Properties matching the groupBy fields in the request.
77 * Properties matching the groupBy fields in the request.
DGroupResult.java25 * Result containing the properties and count of a groupBy request.
112 * Properties matching the groupBy fields in the request.
134 * Properties matching the groupBy fields in the request.
147 * Properties matching the groupBy fields in the request.
168 * Properties matching the groupBy fields in the request.
384 * Result containing the properties and count of a groupBy request.
632 * Properties matching the groupBy fields in the request.
654 * Properties matching the groupBy fields in the request.
667 * Properties matching the groupBy fields in the request.
688 * Properties matching the groupBy fields in the request.
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/generator/
Dstructured_query_generator.cc113 static base::StatusOr<std::string> GroupBy(RepeatedString group_by);
125 StructuredQuery::GroupBy::Aggregate::Op op,
200 StructuredQuery::GroupBy::Decoder gb(q.group_by()); in GenerateImpl()
201 ASSIGN_OR_RETURN(group_by, GroupBy(gb.column_names())); in GenerateImpl()
395 base::StatusOr<std::string> GeneratorImpl::GroupBy( in GroupBy() function in perfetto::trace_processor::perfetto_sql::generator::__anon8c2575f40111::GeneratorImpl
428 StructuredQuery::GroupBy::Aggregate::Decoder aggregate(*it); in SelectColumnsAggregates()
452 StructuredQuery::GroupBy::Aggregate::Decoder aggregate(*ita); in SelectColumnsAggregates()
463 AggregateToString(static_cast<StructuredQuery::GroupBy::Aggregate::Op>( in SelectColumnsAggregates()
524 StructuredQuery::GroupBy::Aggregate::Op op, in AggregateToString()
528 case StructuredQuery::GroupBy::Aggregate::COUNT: in AggregateToString()
[all …]
/external/perfetto/ui/src/plugins/dev.perfetto.ExplorePage/query_builder/operations/
Doperation_component.ts29 groupby: GroupByAttrs; property
37 m(Section, {title: 'Aggregation'}, m(GroupByOperation, attrs.groupby)),
52 ): protos.PerfettoSqlStructuredQuery.GroupBy | undefined {
55 const groupByProto = new protos.PerfettoSqlStructuredQuery.GroupBy();
Dgroupy_by.ts184 ): protos.PerfettoSqlStructuredQuery.GroupBy.Aggregate.Op {
186 return protos.PerfettoSqlStructuredQuery.GroupBy.Aggregate.Op[
187 s as keyof typeof protos.PerfettoSqlStructuredQuery.GroupBy.Aggregate.Op
195 ): protos.PerfettoSqlStructuredQuery.GroupBy.Aggregate {
196 const newAgg = new protos.PerfettoSqlStructuredQuery.GroupBy.Aggregate();
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/itertools-0.11.0/src/
Dgroupbylazy.rs4 /// A trait to unify `FnMut` for `GroupBy` with the chunk key in `IntoChunks`
275 /// `GroupBy` is the storage for the lazy grouping operation.
278 /// group is dropped without keeping it around, then `GroupBy` uses
289 pub struct GroupBy<K, I, F> struct
299 pub fn new<K, J, F>(iter: J, f: F) -> GroupBy<K, J::IntoIter, F> in new() argument
303 GroupBy { in new()
320 impl<K, I, F> GroupBy<K, I, F> implementation
337 impl<'a, K, I, F> IntoIterator for &'a GroupBy<K, I, F> implementation
363 parent: &'a GroupBy<K, I, F>,
397 parent: &'a GroupBy<K, I, F>,
[all …]
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/itertools-0.11.0/src/
Dgroupbylazy.rs4 /// A trait to unify `FnMut` for `GroupBy` with the chunk key in `IntoChunks`
275 /// `GroupBy` is the storage for the lazy grouping operation.
278 /// group is dropped without keeping it around, then `GroupBy` uses
289 pub struct GroupBy<K, I, F> struct
299 pub fn new<K, J, F>(iter: J, f: F) -> GroupBy<K, J::IntoIter, F> in new() argument
303 GroupBy { in new()
320 impl<K, I, F> GroupBy<K, I, F> implementation
337 impl<'a, K, I, F> IntoIterator for &'a GroupBy<K, I, F> implementation
363 parent: &'a GroupBy<K, I, F>,
397 parent: &'a GroupBy<K, I, F>,
[all …]
/external/pytorch/torch/utils/data/
Dstandard_pipes.ipynb645 "## GroupBy\n",
647 "Function: `groupby`\n",
649 "Usage: `dp.groupby(lambda x: x[0])`\n",
660 …me key will never present in the different groups. You can call it local groupby where locallity i…
679 "dp = ExampleIterPipe(10).shuffle().groupby(lambda x: x % 3)\n",
705 "dp = ExampleIterPipe(10).batch(3).groupby(lambda x: len(x))\n",
731 "dp = ExampleIterPipe(10).batch(3).groupby(lambda x: x % 3, unbatch_level = 1)\n",
738 …"When internal buffer (defined by `buffer_size`) is overfilled, groupby will yield biggest group a…
757 "dp = ExampleIterPipe(15).shuffle().groupby(lambda x: x % 3, buffer_size = 5)\n",
764 "`groupby` will produce `group_size` sized batches on as fast as possible basis"
[all …]
/external/pytorch/torch/fx/experimental/unification/multipledispatch/
Dutils.py4 __all__ = ["raises", "expand_tuples", "reverse_dict", "groupby", "typename"]
84 def groupby(func, seq): function
87 >>> groupby(len, names) # doctest: +SKIP
90 >>> groupby(iseven, [1, 2, 3, 4, 5, 6, 7, 8]) # doctest: +SKIP
/external/perfetto/ui/src/trace_processor/
Dsql_utils_unittest.ts82 groupBy: ['foo', undefined, 'bar'],
93 groupBy: ['track_id'],
107 groupBy: [undefined, undefined],
Dsql_utils.ts36 groupBy?: (undefined | string)[]; property
66 const groupBy = (c.groupBy ?? []).filter(isDefined); constant
67 if (groupBy.length > 0) {
68 const groups = groupBy.join(', ');
/external/pytorch/torch/_dynamo/variables/
Diter.py114 elif self.value is itertools.groupby:
117 "Unsupported kwargs for itertools.groupby: "
128 "Unsupported key type for itertools.groupby: " + str(type(key))
145 unimplemented("Unsupported arguments for itertools.groupby")
149 for k, v in itertools.groupby(seq, key=keyfunc):
165 "Unexpected failure when calling itertools.groupby",
/external/pytorch/torch/utils/data/datapipes/iter/
Dgrouping.py162 @functional_datapipe("groupby")
167 (functional name: ``groupby``).
195 >>> dp0 = source_dp.groupby(group_key_fn=group_fn)
199 >>> dp1 = source_dp.groupby(group_key_fn=group_fn, group_size=2)
203 …>>> dp2 = source_dp.groupby(group_key_fn=group_fn, buffer_size=3, group_size=3, guaranteed_group_s…
/external/dokka/core/src/main/kotlin/Formats/JavaLayoutHtml/
DJavaLayoutHtmlFormatOutputBuilder.kt987 .groupBy { in <lambda>()
1044 .groupBy { it.owner!! } in <lambda>()
1048 …heritedConstants = allInheritedMembers.filter { it.constantValue() != null }.groupBy { it.owner!! } in <lambda>()
1056groupBy { it.visibility() }.toSortedMap(Comparator { a, b -> compareVisibilities(a, b) }) in <lambda>()
1063 …FunctionsByReceiver = allInheritedMembers.filter { it.kind == functionKind }.groupBy { it.owner!! } in <lambda>()
1067 }.groupBy { it.owner!! } in <lambda>()
1072 }.groupBy { it.owner!! } in <lambda>()
1083 …ensionFunctions = extensions.filter { it.isFunction() }.sortedBy { it.name }.groupBy { it.owner!! } in <lambda>()
1084 …nsionProperties = extensions.filter { it.isProperty() }.sortedBy { it.name }.groupBy { it.owner!! } in <lambda>()
1086 … inheritedExtensions.filter { it.isFunction() }.sortedBy { it.name }.groupBy { it.owner!! } in <lambda>()
[all …]

123456789