Projects
openEuler:24.03:SP1:Everything:64G
eclipse
_service:tar_scm:eclipse-disable-droplets-in-dr...
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File _service:tar_scm:eclipse-disable-droplets-in-dropins.patch of Package eclipse
From edd5a395dd96699f91c463c0e0409a7488814775 Mon Sep 17 00:00:00 2001 From: Roland Grunberg <rgrunber@redhat.com> Date: Tue, 16 Aug 2016 17:51:46 -0400 Subject: [PATCH] Skip loading droplets in the configuration during reconciliation. The reconciler attempts to load droplets as extended locations, which seems to be an expensive operation. Avoid doing this for the sake of efficiency. Change-Id: Iaf07aacb2d7eaabf3730654e757e69d22f0bc4ab --- .../internal/p2/reconciler/dropins/PlatformXmlListener.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git rt.equinox.p2/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/PlatformXmlListener.java rt.equinox.p2/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/PlatformXmlListener.java index 802ee1b..74023fe 100644 --- rt.equinox.p2/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/PlatformXmlListener.java +++ rt.equinox.p2/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/PlatformXmlListener.java @@ -171,11 +171,24 @@ public class PlatformXmlListener extends DirectoryChangeListener { * Ensure that we have a repository for each site in the given configuration. */ protected void synchronizeConfiguration(Configuration config) { + String fragments = System.getProperty("p2.fragments"); List<Site> sites = config.getSites(); Set<IMetadataRepository> newRepos = new LinkedHashSet<>(); Set<Site> toBeRemoved = new HashSet<>(); for (Site site : sites) { String siteURL = site.getUrl(); + if (fragments != null) { + String[] rootPaths = fragments.split(","); + boolean skip = false; + for (String path : rootPaths) { + if (siteURL.startsWith("file:" + path)) { + skip = true; + } + } + if (skip) { + continue; + } + } IMetadataRepository match = getMatchingRepo(Activator.getRepositories(), siteURL); if (match == null) { try { -- 2.7.4
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2