- Sort Score
- Result 10 results
- Languages All
Results 3271 - 3280 of 4,989 for STRING (0.11 sec)
-
guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java
@Override public String toString() { return "theDelegate"; } }; Executor sequential1 = newSequentialExecutor(delegate); Executor sequential2 = newSequentialExecutor(delegate); assertThat(sequential1.toString()).contains("theDelegate"); assertThat(sequential1.toString()).isNotEqualTo(sequential2.toString()); String[] whileRunningToString = new String[1];
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosEncData.java
import jcifs.pac.ASN1Util; import jcifs.pac.PACDecodingException; import jcifs.util.Encdec; /** * Represents encrypted Kerberos ticket data. */ public class KerberosEncData { private String userRealm; private String userPrincipalName; private ArrayList<InetAddress> userAddresses; private List<KerberosAuthData> userAuthorizations; /** * Constructs KerberosEncData from encrypted token bytes. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmServletTest.java
*/ @BeforeEach void setUp() throws CIFSException { ntlmServlet = new TestNtlmServlet(); // Mock ServletConfig to provide initialization parameters Map<String, String> initParams = new HashMap<>(); initParams.put("jcifs.smb.client.domain", "TEST_DOMAIN"); initParams.put("jcifs.http.domainController", "dc.test.domain"); initParams.put("jcifs.http.enableBasic", "true");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
* * @param scriptType the type of script to execute * @param script the script content to execute * @return the result of script execution */ public abstract Object execute(String scriptType, String script); /** * Initiates shutdown of the job executor. * This method notifies the shutdown listener to perform cleanup operations. */ public void shutdown() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dashboard/AdminDashboardAction.java
/** * Default constructor. */ public AdminDashboardAction() { super(); } /** The role for this action. */ public static final String ROLE = "admin-dashboard"; // =================================================================================== // Attribute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapEntry.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/exception/SuggesterException.java
private static final long serialVersionUID = 1L; /** * Constructs a new SuggesterException with the specified detail message. * @param msg The detail message. */ public SuggesterException(final String msg) { super(msg); } /** * Constructs a new SuggesterException with the specified cause. * @param cause The cause. */ public SuggesterException(final Throwable cause) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsPowerPointExtractor.java
* @param in The input stream. * @param params The parameters. * @return The extracted data. */ @Override public ExtractData getText(final InputStream in, final Map<String, String> params) { if (in == null) { throw new CrawlerSystemException("The inputstream is null."); } try { @SuppressWarnings("resource")
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java
* @return the query builder */ @Override public QueryBuilder queryName(final String queryName) { return queryBuilder.queryName(queryName); } /** * Returns the query name. * * @return the query name */ @Override public String queryName() { return queryBuilder.queryName(); } /** * Returns the boost value.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
* @return a list of character mapping items for the current page, or empty list if dictionary not found */ public List<CharMappingItem> getCharMappingList(final String dictId, final CharMappingPager charMappingPager) { return getCharMappingFile(dictId).map(file -> { final int pageSize = charMappingPager.getPageSize();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0)