- Sort Score
- Result 10 results
- Languages All
Results 1251 - 1260 of 2,242 for projectId (0.1 sec)
-
guava-testlib/src/com/google/common/collect/testing/testers/CollectionIteratorTester.java
new IteratorTester<E>( Platform.collectionIteratorTesterNumIterations(), features, elements, knownOrder) { @Override protected Iterator<E> newTargetIterator() { resetCollection(); return collection.iterator(); } @Override protected void verify(List<E> elements) { expectContents(elements); } }.test(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/jcifs/http/Handler.java
/** * Returns the default HTTP port. * * @return An <code>int</code> containing the default HTTP port. */ @Override protected int getDefaultPort () { return DEFAULT_HTTP_PORT; } @Override protected URLConnection openConnection ( URL url ) throws IOException { url = new URL(url, url.toExternalForm(), getDefaultStreamHandler(url.getProtocol()));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.9K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/RateLimiter.java
/** Constructor for use by subclasses. */ protected SleepingStopwatch() {} /* * We always hold the mutex when calling this. TODO(cpovirk): Is that important? Perhaps we need * to guarantee that each call to reserveEarliestAvailable, etc. sees a value >= the previous? * Also, is it OK that we don't hold the mutex when sleeping? */ protected abstract long readMicros();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 21.9K bytes - Viewed (0) -
.bazelrc
# Python config is the same across all containers because the binary is the same build:rbe_linux_cpu --python_path="/usr/bin/python3" # These you may need to change for your own GCP project. common:rbe_linux_cpu --remote_instance_name=projects/tensorflow-testing/instances/default_instance # TODO(kanglan): Remove it after toolchain update is complete. build:rbe_linux_cpu_old --config=rbe_linux
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 28 22:02:31 UTC 2024 - 51.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/UrlNormalizingPostProcessor.java
static { Set<String> expressions = new HashSet<>(); expressions.add("project.url"); expressions.add("project.scm.url"); expressions.add("project.scm.connection"); expressions.add("project.scm.developerConnection"); expressions.add("project.distributionManagement.site.url"); URL_EXPRESSIONS = expressions; } private UrlNormalizer normalizer;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/unit/UnitFessTestCase.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.utflute.lastaflute.WebContainerTestCase; public abstract class UnitFessTestCase extends WebContainerTestCase { @Override protected String prepareConfigFile() { return "test_app.xml"; } @Override public void tearDown() throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0) -
build-logic-commons/basics/build.gradle.kts
} description = "Provides plugins for configuring miscellaneous things (repositories, reproducibility, minify)" group = "gradlebuild" dependencies { api("gradlebuild:build-environment") api(platform(projects.buildPlatform)) implementation("com.google.guava:guava") { because("Used by class analysis") } implementation("org.ow2.asm:asm") { because("Used by class analysis") }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 17 10:11:26 UTC 2024 - 893 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
indexingHelper = new IndexingHelper() { @Override protected long getDocumentSizeByQuery(final SearchEngineClient searchEngineClient, final QueryBuilder queryBuilder, final FessConfig fessConfig) { return documentSizeByQuery; } @Override protected int refreshIndex(final SearchEngineClient searchEngineClient, final String index) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 24 08:54:24 UTC 2024 - 23.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/test/net/protocol/xxx1/Handler.java
import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; public class Handler extends URLStreamHandler { public static final String PROTOCOL_TYPE = "web"; @Override protected URLConnection openConnection(URL u) throws IOException { return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Jun 18 00:44:11 UTC 2024 - 1006 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java
public abstract class FessApiAdminAction extends FessApiAction { private static final Logger logger = LogManager.getLogger(FessApiAdminAction.class); @Override protected boolean isAccessAllowed() { try { return accessTokenService.getPermissions(request).map(permissions -> fessConfig.isApiAdminAccessAllowed(permissions)) .orElse(false);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.4K bytes - Viewed (0)