- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 133 for reportSet (0.11 sec)
-
compat/maven-model/src/test/java/org/apache/maven/model/ReportSetTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code ReportSet}. * */ class ReportSetTest { @Test void testHashCodeNullSafe() { new ReportSet().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new ReportSet().equals(null)); new ReportSet().equals(new ReportSet()); } @Test void testEqualsIdentity() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java
Map<Object, Object> context) { List<ReportSet> src = source.getReportSets(); if (!src.isEmpty()) { List<ReportSet> tgt = target.getReportSets(); Map<Object, ReportSet> merged = new LinkedHashMap<>((src.size() + tgt.size()) * 2); for (ReportSet element : tgt) { Object key = getReportSetKey().apply(element);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.3K bytes - Viewed (0) -
api/pom.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Oct 19 18:11:20 UTC 2024 - 3.7K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-parent.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-expected.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportConfigurationExpander.java
import javax.inject.Named; import javax.inject.Singleton; import org.apache.maven.api.xml.XmlNode; import org.apache.maven.model.Model; import org.apache.maven.model.ReportPlugin; import org.apache.maven.model.ReportSet; import org.apache.maven.model.Reporting; import org.apache.maven.model.building.ModelBuildingRequest; import org.apache.maven.model.building.ModelProblemCollector; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java
assertThat( target.getProfiles(), contains( profile ) ); } @Test public void mergeSameReports() { ReportSet target = new ReportSet(); target.setReports( Arrays.asList( "first", "second", "third" ) ); ReportSet source = new ReportSet(); source.setReports( Arrays.asList( "first", "second", "third" ) ); modelMerger.mergeReportSet( target, source, true, null );
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.3K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
reportSetMap = new java.util.LinkedHashMap<String, ReportSet>(); if (getReportSets() != null) { for (java.util.Iterator<ReportSet> i = getReportSets().iterator(); i.hasNext(); ) { ReportSet reportSet = (ReportSet) i.next(); reportSetMap.put(reportSet.getId(), reportSet); } } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 115.1K bytes - Viewed (0) -
manifests/addons/dashboards/lib/queries.libsonnet
globalRequest: self.rawQuery( round(sum(rate(labels('istio_requests_total', { reporter: '~source|waypoint' })))) ), globalRequestSuccessRate: self.rawQuery( sum(rate(labels('istio_requests_total', { reporter: '~source|waypoint', response_code: '!~5..' }))) + ' / ' + sum(rate(labels('istio_requests_total', { reporter: '~source|waypoint' }))) ), globalRequest4xx: self.rawQuery(
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 26 23:54:32 UTC 2024 - 10.3K bytes - Viewed (0) -
code_of_conduct.md
## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at ******@****.***. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jan 20 18:38:58 UTC 2020 - 3.5K bytes - Viewed (0)