- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for getReports (0.08 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
dom.addChild(configuration); } if (!reportSet.getReports().isEmpty()) { InputLocation location = reportSet.getLocation("reports"); Xpp3Dom reports = new Xpp3Dom("reports", location); int n = 0; for (String report : reportSet.getReports()) { addDom(reports, "report", report, (location == null) ? null : location.getLocation(n++));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 9.4K bytes - Viewed (0) -
compat/maven-model/pom.xml
<exclude>org.apache.maven.model.ModelBase#addProperty(java.lang.String,java.lang.String):METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.ModelBase#getReports():METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.ModelBase#setReports(java.lang.Object):METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.Notifier#addConfiguration(java.lang.String,java.lang.String):METHOD_REMOVED</exclude>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 7.1K bytes - Viewed (0) -
internal/bucket/bandwidth/monitor.go
BucketStats map[BucketOptions]Details `json:"bucketStats,omitempty"` } // GetReport gets the report for all bucket bandwidth details. func (m *Monitor) GetReport(selectBucket SelectionFunction) *BucketBandwidthReport { m.mlock.RLock() defer m.mlock.RUnlock() return m.getReport(selectBucket) } func (m *Monitor) getReport(selectBucket SelectionFunction) *BucketBandwidthReport { report := &BucketBandwidthReport{
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 6K bytes - Viewed (0) -
internal/bucket/bandwidth/monitor_test.go
NodeCount: 1, } m.bucketsMeasurement[BucketOptions{Name: "bucket", ReplicationARN: "arn"}].updateExponentialMovingAverage(tt.fields.endTime) got := m.GetReport(SelectBuckets()) if !reflect.DeepEqual(got, tt.want) { t.Errorf("GetReport() = %v, want %v", got, tt.want) } m.bucketsMeasurement[BucketOptions{Name: "bucket", ReplicationARN: "arn"}].incrementBytes(tt.fields.update2)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 4.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/ConfiguredGoalSupport.java
response.isValid() ? "VALID" : "INVALID") .build()); for (Map.Entry<SecDispatcher.ValidationResponse.Level, List<String>> entry : response.getReport().entrySet()) { Consumer<String> consumer = s -> context.logger.info(messageBuilderFactory.builder().info(s).build()); if (entry.getKey() == SecDispatcher.ValidationResponse.Level.ERROR) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 4.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmRequest.java
@Override public RealmType getType() { return type; } @Override public ClassLoader getParent() { return parent; } @Override public List<String> getImports() { return getParentImports(); } @Override public List<String> getParentImports() { return parentImports; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmRequest.java
*/ ClassLoader getParent(); /** * @deprecated Use {@link #getParentImports()} instead. * @return imports */ @Deprecated List<String> getImports(); /** * Gets the packages/types to import from the parent realm. * * @return The modifiable list of packages/types to import from the parent realm, never {@code null}. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/TypeNameResolver.java
outerClassName = outerClass.getOuterClassName(); } if (name.contains(".")) { return name; } for (String importedClass : classMetaData.getImports()) { String baseName = StringUtils.substringAfterLast(importedClass, "."); if (baseName.equals("*")) {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Jul 16 15:20:01 UTC 2025 - 6.4K bytes - Viewed (0)