- Sort Score
- Result 10 results
- Languages All
Results 861 - 870 of 3,647 for findall (0.1 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java
private static final Logger logger = LoggerFactory.getLogger(AbstractCrawlerClient.class); protected static final String APPLICATION_OCTET_STREAM = "application/octet-stream"; public static final String ACCESS_TIMEOUT_PROPERTY = "accessTimeout"; public static final String MAX_CONTENT_LENGTH = "maxContentLength"; public static final String MAX_CACHED_CONTENT_SIZE = "maxCachedContentSize";
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 5.9K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java
return username; } /** * Set username used to access the repository. * * @param userName the username used to access repository */ public void setUsername(final String userName) { this.username = userName; } /** * Get the passphrase of the private key file. The passphrase is used only when host/protocol supports
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
// relative to headerStart private static final int NTT_PRIMARY_SETUP_OFFSET = 71; private static final int NTT_SECONDARY_PARAMETER_OFFSET = 51; /** * */ public static final int NT_TRANSACT_QUERY_SECURITY_DESC = 0x6; /** * */ public static final int NT_TRANSACT_NOTIFY_CHANGE = 0x4; private final int function;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 3.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlWriterRequest.java
} private static class DefaultXmlWriterRequest<T> implements XmlWriterRequest<T> { final Path path; final OutputStream outputStream; final Writer writer; final T content; final Function<Object, String> inputLocationFormatter; DefaultXmlWriterRequest( Path path,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Aug 10 22:21:50 UTC 2024 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizer.java
} @Override public String normalize(final String text, final String field, final String... langs) { final Normalizer normalizer; if (langs == null || langs.length == 0) { normalizer = new LangAnalyzerNormalizer(null); } else { final NormalizerChain chain = new NormalizerChain(); for (final String lang : langs) { chain.add(new LangAnalyzerNormalizer(lang));
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
private final List<E> parent; protected int allPageCount; protected int allRecordCount; protected int pageSize; protected int currentPageNumber; protected int pageRangeSize; public PagingList(final List<E> list, final int offset, final int size, final int allRecordCount) { parent = list;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 6.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/TypeNameResolver.java
* Resolves partial type names into fully qualified type names. */ public class TypeNameResolver { private final Set<String> primitiveTypes = new HashSet<String>(); private final List<String> groovyImplicitImportPackages = new ArrayList<String>(); private final List<String> groovyImplicitTypes = new ArrayList<String>(); private final ClassMetaDataRepository<ClassMetaData> metaDataRepository;
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
protected void registerRolesAndLabels(final RenderData data) { RenderDataUtil.register(data, "roleTypeItems", roleTypeService.getRoleTypeList()); } protected void registerHandlerNames(final RenderData data) { final String[] dataStoreNames = dataStoreFactory.getDataStoreNames(); final List<Map<String, String>> itemList = new ArrayList<>(); for (final String name : dataStoreNames) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
break; } return OptionalEntity.empty(); } public static OptionalEntity<KeyMatch> getKeyMatch(final CreateForm form) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final String username = systemHelper.getUsername(); final long currentTime = systemHelper.getCurrentTimeAsLong(); return getEntity(form, username, currentTime).map(entity -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 13.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/PropertiesUtilTest.java
final Properties outProperties = new Properties(); outProperties.setProperty("a", "A"); final File file = tempFolder.newFile("hoge.properties"); final FileOutputStream outputStream = OutputStreamUtil.create(file); PropertiesUtil.store(outProperties, outputStream, "comments"); CloseableUtil.close(outputStream); final Properties properties = new Properties();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 9.6K bytes - Viewed (0)