- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 264 for set_id (0.05 seconds)
-
impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java
.get(ConfigurationProperties.HTTP_HEADERS + "." + server.getId()); assertNotNull(headers); assertEquals(1, headers.size()); assertEquals("value", headers.get("header")); } @Test void connectTimeoutConfigurationTest() throws InvalidRepositoryException { Server server = new Server(); server.setId("repository"); server.setUsername("jason");
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 19.1K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulatorTest.java
Repository r = new Repository(); r.setId("test"); r.setUrl("file:///test"); Profile p = new Profile(); p.setId("test"); p.addPluginRepository(r); Settings settings = new Settings(); settings.addProfile(p); settings.addActiveProfile(p.getId()); testee.populateFromSettings(request, settings);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/Lifecycle.java
/** * Method getId */ public String getId() { return this.id; } /** * Method getLifecyclePhases */ public Map<String, LifecyclePhase> getLifecyclePhases() { return this.lifecyclePhases; } /** * Method setId * * @param id */ public void setId(String id) { this.id = id; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.6K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultDataImpl.java
*/ public AccessResultDataImpl() { // NOP } @Override public IDTYPE getId() { return id; } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.entity.AccessResultData#setId(IDTYPE) */ @Override public void setId(final IDTYPE id) { this.id = id; } /* * (non-Javadoc) *Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 3.6K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java
/** * Set the ID of this phase, e.g., * <code>generate-sources</code>. * * @param id a id object. */ public void setId(String id) { this.id = id; } // -- void setId( String )Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 20.1K bytes - Click Count (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
for (final T target : list) { final String id = getId(getSessionId(target), getUrl(target)); try (final XContentBuilder source = getXContentBuilder(target)) { bulkRequest.add(c.prepareIndex().setIndex(index).setId(id).setSource(source).setOpType(opType)); } setId(target, id); }
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:40:57 GMT 2025 - 34.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
accessResult.setAccessResultData(accessResultData); } accessResultData.setId(accessResult.getId()); final Map<String, AccessResultImpl<Long>> arMap = dataHelper.getAccessResultMap(accessResult.getSessionId()); if (arMap.containsKey(accessResult.getUrl())) { throw new CrawlerSystemException(
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 6.9K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java
/** * Set the ID of this lifecycle, for identification in the mojo * descriptor. * * @param id a id object. */ public void setId(String id) { this.id = id; } // -- void setId( String ) /** * Set the phase mappings for this lifecycle. * * @param phases a phases object. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.7K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java
private ProfilesConversionUtils() {} public static Profile convertFromProfileXmlProfile(org.apache.maven.profiles.Profile profileXmlProfile) { Profile profile = new Profile(); profile.setId(profileXmlProfile.getId()); profile.setSource("profiles.xml"); org.apache.maven.profiles.Activation profileActivation = profileXmlProfile.getActivation(); if (profileActivation != null) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.8K bytes - Click Count (0)