- Sort Score
- Num 10 results
- Language All
Results 481 - 490 of 901 for getName (0.26 seconds)
-
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/precommit/PrecommitTask.java
public class PrecommitTask extends DefaultTask { @OutputFile public File getSuccessMarker() { return new File(getProjectLayout().getBuildDirectory().getAsFile().get(), "markers/" + this.getName()); } @TaskAction public void writeMarker() throws IOException { Files.write(getSuccessMarker().toPath(), new byte[] {}, StandardOpenOption.CREATE); } @InjectCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
* If the surname is blank, it will be set to the user's name. * * @param user the user entity to store */ public void store(final User user) { final String username = user.getName(); final boolean isUpdate = StringUtil.isNotBlank(user.getId()); if (logger.isDebugEnabled()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 06:22:27 GMT 2026 - 9.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/SubtypeTester.java
} return null; } final void testAllDeclarations() throws Exception { checkState(method == null); Method[] methods = getClass().getMethods(); Arrays.sort(methods, (a, b) -> a.getName().compareTo(b.getName())); for (Method method : methods) { if (method.isAnnotationPresent(TestSubtype.class)) { method.setAccessible(true); SubtypeTester tester = (SubtypeTester) clone();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 16:11:48 GMT 2026 - 6.1K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/ClassPathTest.java
for (ClassPath.ClassInfo classInfo : classes) { if (classInfo.getName().equals(cls.getName())) { return classInfo; } } throw new AssertionError("failed to find " + cls); } private static ResourceInfo resourceInfo(Class<?> cls) { String resource = cls.getName().replace('.', '/') + ".class"; ClassLoader loader = cls.getClassLoader();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 25.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
XmlNode parameterConfiguration = executionConfiguration.child(parameter.getName()); if (parameterConfiguration == null) { parameterConfiguration = executionConfiguration.child(parameter.getAlias()); } XmlNode parameterDefaults = defaultConfiguration.child(parameter.getName()); if (parameterConfiguration != null) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 26.7K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/google/ListMultimapTestSuiteBuilder.java
return ListTestSuiteBuilder.using( new MultimapGetGenerator<K, V>(parentBuilder.getSubjectGenerator())) .withFeatures(computeMultimapGetFeatures(parentBuilder.getFeatures())) .named(parentBuilder.getName() + ".get[key]") .suppressing(parentBuilder.getSuppressedTests()) .createTestSuite(); } @Override TestSuite computeMultimapAsMapGetTestSuite( FeatureSpecificTestSuiteBuilder<
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jul 17 15:26:41 GMT 2025 - 5.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java
} catch (final ExpressionEvaluationException e) { final String reason = String.format( "Cannot evaluate expression '%s' for configuration entry '%s'", value, configuration.getName()); throw new ComponentConfigurationException(configuration, reason, e); } } @Override public Object fromConfiguration( final ConverterLookup lookup,
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jul 17 07:40:49 GMT 2025 - 6.2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/path/PathTranslator.java
*/ package org.apache.maven.project.path; import java.io.File; import org.apache.maven.model.Model; /** */ @Deprecated public interface PathTranslator { String ROLE = PathTranslator.class.getName(); void alignToBaseDirectory(Model model, File basedir); String alignToBaseDirectory(String path, File basedir); void unalignFromBaseDirectory(Model model, File basedir);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
conf.setTransitive(false); conf.extendsFrom(groovyPackageListBucket.get()); }); project.getDependencies().add(groovyPackageListBucket.getName(), javadocs.getGroovyPackageListSrc()); var extractGroovyPackageListTask = tasks.register("extractGroovyPackageList", Copy.class, task -> {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sun Mar 01 05:52:34 GMT 2026 - 11.6K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java
test.getExtensions().add("nonInputProperties", nonInputProperties); test.setWorkingDir(project.file(project.getBuildDir() + "/testrun/" + test.getName())); test.setMaxParallelForks(Integer.parseInt(System.getProperty("tests.jvms", BuildParams.getDefaultParallel().toString()))); test.exclude("**/*$*.class"); test.jvmArgs(
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 24 22:14:49 GMT 2021 - 10.4K bytes - Click Count (0)