Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for getReports (0.41 sec)

  1. 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)
  2. 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)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                // TODO: This is ugly
                task.setConfig(project.getResources().getText().fromFile(checkstyle.getConfigDirectory().file("checkstyle-api.xml")));
                task.setClasspath(layout.files());
                task.getReports().getXml().getOutputLocation().set(new File(checkstyle.getReportsDir(), "checkstyle-api.xml"));
            });
        }
    
        private static class DeduplicatePackageInfoFiles implements Spec<File> {
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 02 14:18:24 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    val = interpolate(org);
                    if (org != val) {
                        reportSet.setId(val);
                    }
                    // Reports
                    visit(reportSet.getReports());
                }
            }
    
            private void visit(Properties properties) {
                if (properties != null) {
                    for (Map.Entry<Object, Object> entry : properties.entrySet()) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  5. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            List<String> src = source.getReports();
            if (!src.isEmpty()) {
                List<String> tgt = target.getReports();
                List<String> merged = new ArrayList<>(tgt.size() + src.size());
                merged.addAll(tgt);
                merged.addAll(src);
                target.setReports(merged);
    
                InputLocation sourceLocation = source.getLocation("reports");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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;
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  10. 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)
Back to top