- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 373 for getgid (0.04 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java
} try (Writer writer = new OutputStreamWriter(new FileOutputStream(artifactFile), StandardCharsets.ISO_8859_1)) { writer.write(artifact.getId()); } MessageDigest md = MessageDigest.getInstance("MD5"); md.update(artifact.getId().getBytes()); byte[] digest = md.digest(); String md5path = repository.pathOf(artifact) + ".md5";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java
* </ul> * * <h2>Usage Example</h2> * * <pre> * {@code * Session session = ... // Obtain a Maven session * Packaging packaging = session.requirePackaging("jar"); * System.out.println(packaging.getId()); // Outputs "jar" * } * </pre> * * @see org.apache.maven.api.Session#requirePackaging(String) * @see org.apache.maven.api.Project#getPackaging() * @see org.apache.maven.api.model.Model#getPackaging()
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
}).createPageNumberList()); return webConfigList; } public void delete(final WebConfig webConfig) { final String webConfigId = webConfig.getId(); webConfigBhv.delete(webConfig, op -> { op.setRefreshPolicy(Constants.TRUE); }); webAuthenticationBhv.queryDelete(cb -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
}).createPageNumberList()); return fileConfigList; } public void delete(final FileConfig fileConfig) { final String fileConfigId = fileConfig.getId(); fileConfigBhv.delete(fileConfig, op -> { op.setRefreshPolicy(Constants.TRUE); }); fileAuthenticationBhv.queryDelete(cb -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java
} public Map getPluginContext(PluginDescriptor plugin, MavenProject project) { Map<String, Map> pluginContextsByKey = pluginContextsByProjectAndPluginKey.computeIfAbsent(project.getId(), k -> new HashMap<>()); return pluginContextsByKey.computeIfAbsent(plugin.getPluginLookupKey(), k -> new HashMap<>()); } public void setFailureBehavior(String failureBehavior) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/SID.java
* @return domain SID */ SID getDomainSid (); /** * Get the RID * * This is the last subauthority identifier * * @return the RID */ int getRid (); /** * Return a String representing this SID ideal for display to * users. This method should return the same text that the ACL * editor in Windows would display. * <p>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
for (final Map.Entry<String, String> entry : infoMap.entrySet()) { final CrawlingInfoParam crawlingInfoParam = new CrawlingInfoParam(); crawlingInfoParam.setCrawlingInfoId(crawlingInfo.getId()); crawlingInfoParam.setKey(entry.getKey()); crawlingInfoParam.setValue(entry.getValue()); crawlingInfoParamList.add(crawlingInfoParam); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.6K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
for (Profile rawProfile : settings.getProfiles()) { request.addProfile(SettingsUtils.convertFromSettingsProfile(rawProfile)); if (settings.getActiveProfiles().contains(rawProfile.getId())) { List<Repository> remoteRepositories = rawProfile.getRepositories(); for (Repository remoteRepository : remoteRepositories) { try {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
} private static List<Repository> pruneRepositories(List<Repository> repositories) { return repositories.stream() .filter(r -> !org.apache.maven.api.Repository.CENTRAL_ID.equals(r.getId())) .collect(Collectors.toList()); } static class PomConsumerModelSource implements ModelSource { final Path path; final Path src;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java
} }; } @Override public PluginExecution getModel() { return delegate.getPlugin().getExecutions().stream() .filter(pe -> Objects.equals(pe.getId(), getExecutionId())) .findFirst() .map(org.apache.maven.model.PluginExecution::getDelegate) .orElse(null); } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0)