- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 377 for curLeft (0.03 sec)
-
samples/compare/src/test/kotlin/okhttp3/compare/JettyHttpClientTest.kt
import org.junit.jupiter.api.AfterEach import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test /** * Jetty HTTP client. * * https://www.eclipse.org/jetty/documentation/current/http-client.html * * Baseline test if we ned to validate OkHttp behaviour against other popular clients. */ class JettyHttpClientTest { private val client = HttpClient() @StartStop
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 2.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestEnumSetGenerator.java
@Override public AnEnum[] createArray(int length) { return new AnEnum[length]; } /** Sorts the enums according to their natural ordering. */ /* * While the current implementation returns `this`, that's not something we mean to guarantee. * Callers of TestContainerGenerator.order need to be prepared for implementations to return a new * collection. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Feb 11 19:03:19 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java
public void setPageSize(final int size) { this.size = Integer.toString(size); } /** * Gets the page size for search log results with validation. * Returns the default page size if the current size is invalid. * * @return the validated page size */ public int getPageSize() { if (StringUtil.isBlank(size)) { return SearchLogPager.DEFAULT_PAGE_SIZE; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
util/gradle_integration_tests.sh
# TODO(cpovirk): Find a better way to give them that information. cp pom.xml "${GRADLE_TEMP}" for version in 5.6.4 7.0.2; do # Enter a subshell so that we return to the current directory afterward. ( cp -r integration-tests "${GRADLE_TEMP}/${version}" cd "${GRADLE_TEMP}/${version}/gradle" ./gradlew wrapper --gradle-version="${version}" ./gradlew testClasspath )
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 02 19:24:12 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
log(buf); } }); } /** * Gets the current system time in milliseconds. * * @return current time in milliseconds */ protected long getCurrentTimeMillis() { return ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/UserInfoDbm.java
return _instance; } // =================================================================================== // Current DBDef // ============= @Override public String getProjectName() { return null; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
*/ public void setHighlightPrefix(final String highlightPrefix) { this.highlightPrefix = highlightPrefix; } /** * Gets the current highlight prefix used for highlight field names. * * @return the current highlight prefix */ public String getHighlightPrefix() { return highlightPrefix; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
protected String[] fileProtocols = { "file:", "smb:", "smb1:", "ftp:", "storage:" }; /** Queue to track the current XML element hierarchy during parsing. */ protected LinkedList<String> tagQueue; /** List to store parsed label types for access control. */ protected List<LabelType> labelList; /** Current label type being processed during parsing. */ protected LabelType labelType;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
return StringUtil.isBlank(key) ? StringUtil.EMPTY : key; } /** * Retrieves related queries for a given search term. * The search is performed using the current virtual host context and * the query term is converted to lowercase for case-insensitive matching. * * @param query the search term to find related queries for
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java
protected DynamicProperties systemProperties; // =================================================================================== // // GET /api/admin/general /** * Returns the current general system settings. * Excludes sensitive information like LDAP security credentials from the response. * * @return JSON response containing the general settings configuration */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0)