- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 48 for getDescription (0.27 sec)
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} boolean error = false; if (option.getDeprecated().getDescription() != null) { sb.append(": ").append(option.getDeprecated().getDescription()); error = option.getDeprecated().getDescription().startsWith("UNSUPPORTED:"); } if (error) { slf4jLogger.error(sb.toString());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
.teamcity/.mvn/wrapper/maven-wrapper.jar
void CommandLineOption(Iterable); public java.util.Set getOptions(); public CommandLineOption hasArgument(); public CommandLineOption hasArguments(); public String getSubcommand(); public CommandLineOption mapsToSubcommand(String); public String getDescription(); public CommandLineOption hasDescription(String); public boolean getAllowsArguments(); public boolean getAllowsMultipleArg(); public CommandLineOption deprecated(String); public CommandLineOption incubating(); public String getDeprecationWarnin();...
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Feb 26 01:48:39 UTC 2020 - 49.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
.forEach(v -> modifyDeleteEntry(modifyList, attrRoomNumber, v))); final String attrDescription = fessConfig.getLdapAttrDescription(); OptionalUtil.ofNullable(user.getDescription()).filter(StringUtil::isNotBlank) .ifPresent(s -> modifyReplaceEntry(modifyList, attrDescription, s)) .orElse(() -> getAttributeValueList(result, attrDescription).stream()
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 65.9K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
mojoDescriptorV4 = org.apache.maven.api.plugin.descriptor.MojoDescriptor.newBuilder() .goal(goal) .description(getDescription()) .implementation(getImplementation()) .language(getLanguage()) .phase(phase) .executeGoal(executeGoal)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 21.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
throw new SsoLoginException(String.format("Request for auth code failed: %s - %s", oidcResponse.getErrorObject().getCode(), oidcResponse.getErrorObject().getDescription())); } protected AuthenticationResponse parseAuthenticationResponse(final String url, final Map<String, List<String>> params) { if (logger.isDebugEnabled()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 28.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java
TaskProvider<RenderMarkdown> releaseNotesMarkdown = tasks.register("releaseNotesMarkdown", RenderMarkdown.class, task -> { task.setGroup("release notes"); task.setDescription("Generate release notes HTML page from Markdown."); task.getInputEncoding().convention(Charset.defaultCharset().name()); task.getOutputEncoding().convention(Charset.defaultCharset().name());
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 08:15:16 UTC 2024 - 5.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
task.into(flattenedAsciidocDirectory); }); TaskProvider<AsciidoctorTask> userguideSinglePageHtml = tasks.register("userguideSinglePageHtml", AsciidoctorTask.class, task -> { task.setDescription("Generates HTML single-page user manual."); configureForUserGuideSinglePage(task, extension, project); task.outputOptions(options -> options.setBackends(singletonList("html5")));
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Mar 01 05:46:51 UTC 2024 - 17.7K bytes - Viewed (0) -
test-site/activator-launch-1.3.2.jar
org.apache.ivy.core.module.id.ModuleRules getAllDependencyDesc(); public final void addLicense(License); public final License[] getLicenses(); public final String getHomePage(); public final void setHomePage(String); public final String getDescription(); public final void setDescription(String); public final long getLastModified(); public final void setLastModified(long); public final org.apache.ivy.plugins.namespace.Namespace getNamespace(); public final void setNamespace(org.apache.ivy.plugins.namespace.Namespace);...
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 1.2M bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
pluginDescriptor.setVersion(extractVersion(c)); pluginDescriptor.setGoalPrefix(extractGoalPrefix(c)); pluginDescriptor.setName(extractName(c)); pluginDescriptor.setDescription(extractDescription(c)); pluginDescriptor.setIsolatedRealm(extractIsolatedRealm(c)); pluginDescriptor.setInheritedByDefault(extractInheritedByDefault(c));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java
})); } private void addUtilityTasks(TaskContainer tasks, GradleDocumentationExtension extension) { tasks.register("serveDocs", ServeDocs.class, task -> { task.setDescription("Runs a local webserver to serve generated documentation."); task.setGroup("documentation"); int webserverPort = 8000; task.getJavaLauncher().set(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Apr 17 20:04:00 UTC 2024 - 7.4K bytes - Viewed (0)