- Sort Score
- Num 10 results
- Language All
Results 201 - 210 of 712 for getNames (0.07 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformer.java
this.name = name; } /** * Returns the name of the transformer. * * @return the name of the transformer */ @Override public String getName() { return name; }Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 1.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/FileEntry.java
* Represents a file or directory entry in SMB1 protocol. */ public interface FileEntry { /** * Gets the name of the file or directory. * * @return the file or directory name */ String getName(); /** * Gets the type of the entry. * * @return the entry type */ int getType(); /** * Gets the file attributes. * * @return the file attributesCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 881 bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/SubtypeTester.java
Arrays.sort( methods, new Comparator<Method>() { @Override public int compare(Method a, Method b) { return a.getName().compareTo(b.getName()); } }); for (Method method : methods) { if (method.isAnnotationPresent(TestSubtype.class)) { method.setAccessible(true);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Nov 25 23:29:58 GMT 2025 - 6.2K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy
} return null } } private static boolean nullabilityOf(CtField field) { NullableFieldVisitor visitor = new NullableFieldVisitor(field.getName()) new ClassReader(byteCodeFrom(field.getDeclaringClass())).accept(visitor, 0) return visitor.nullable } static class NullableFieldVisitor extends ClassVisitor {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Oct 27 09:26:32 GMT 2025 - 15.4K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/InvocationTargetRuntimeException.java
* The cause of the exception */ public InvocationTargetRuntimeException(final Class<?> targetClass, final InvocationTargetException cause) { super("ECL0043", asArray(targetClass.getName(), cause.getTargetException()), cause.getTargetException()); this.targetClass = targetClass; } /** * Returns the target class. * * @return Target class */Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 1.7K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/validation/ModelValidator.java
import org.apache.maven.model.Model; /** * Checks the model for missing or invalid values. * */ @Deprecated public interface ModelValidator { String ROLE = ModelValidator.class.getName(); ModelValidationResult validate(Model model);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.1K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java
if (!parentBuilder.getFeatures().contains(NoRecurse.NO_ENTRY_SET)) { derivedSuites.add( SetTestSuiteBuilder.using(new EntrySetGenerator<E>(parentBuilder.getSubjectGenerator())) .named(getName() + ".entrySet") .withFeatures(computeEntrySetFeatures(parentBuilder.getFeatures())) .suppressing(parentBuilder.getSuppressedTests()) .withSetUp(parentBuilder.getSetUp())Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 10.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/http/NtlmHttpServletRequest.java
super(req); this.principal = principal; } @Override public String getRemoteUser() { return principal.getName(); } @Override public Principal getUserPrincipal() { return principal; } @Override public String getAuthType() { return "NTLM"; }
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 1.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/SuggesterBuilder.java
} try { readingConverter.init(); } catch (final IOException e) { throw new SuggesterException("Failed to initialize reading converter: " + readingConverter.getClass().getName(), e); } if (contentsReadingConverter == null) { contentsReadingConverter = SuggestUtil.createDefaultContentsReadingConverter(client, settings); } try {Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 6.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java
plexusConfig = new XmlPlexusConfiguration(xpp3Dom); } else { throw new BeanConfigurationException("unsupported bean configuration source (" + configuration.getClass().getName() + ")"); } if (request.getConfigurationElement() != null) { plexusConfig = plexusConfig.getChild(request.getConfigurationElement()); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 8.3K bytes - Click Count (0)