- Sort Score
- Result 10 results
- Languages All
Results 2921 - 2930 of 3,973 for objTest (0.06 sec)
-
mockwebserver-junit5/src/main/kotlin/mockwebserver3/junit5/internal/MockWebServerExtension.kt
override fun beforeAll(context: ExtensionContext) { context.resource.startAll() } override fun afterAll(context: ExtensionContext) { context.resource.shutdownAll() } private companion object { private val logger = Logger.getLogger(MockWebServerExtension::class.java.name) private val namespace = ExtensionContext.Namespace.create(MockWebServerExtension::class.java)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 11 12:12:36 UTC 2024 - 4.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/FormBody.kt
alreadyEncoded = true, plusIsSpace = true, charset = charset, ) } fun build(): FormBody = FormBody(names, values) } companion object { private val CONTENT_TYPE: MediaType = "application/x-www-form-urlencoded".toMediaType() }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 09 12:33:05 UTC 2024 - 4.3K bytes - Viewed (0) -
android/guava/src/com/google/common/base/NullnessCasts.java
* value may be legitimately {@code null}.) */ @ParametricNullness @SuppressWarnings("nullness") static <T extends @Nullable Object> T uncheckedCastNullableTToT(@CheckForNull T t) { return t; } private NullnessCasts() {}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 17 15:44:29 UTC 2021 - 3.1K bytes - Viewed (0) -
internal/config/api/api.go
// Copyright (c) 2015-2023 MinIO, Inc. // // This file is part of MinIO Object Storage stack // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 16 08:43:49 UTC 2024 - 11.5K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java
} /** * Build an ArtifactRepository object. * * @param id * @param url * @return */ private ArtifactRepository getRepo(String id, String url) { return repositorySystem.createArtifactRepository(id, url, new DefaultRepositoryLayout(), null, null); } /** * Build an ArtifactRepository object. * * @param id * @return */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java
* file system (those projects are usually about to be built) or from the local repository * (they are usually downloaded during dependency collection). Those projects are loaded * from a Project Object Model (POM).</p> * * <p><dfn>Project Object Model</dfn> or <dfn>POM</dfn> refers to the information describing * all the information needed to build or consume a project. Those are usually loaded from
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsCrawlingInfoCB.java
BsCrawlingInfoCB cb = this; cb.query().docMeta().setId_Equal(id); return (CrawlingInfoCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); } // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/cbean/bs/BsGroupCB.java
BsGroupCB cb = this; cb.query().docMeta().setId_Equal(id); return (GroupCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); } // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.4K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/AbstractHasher.java
@CanIgnoreReturnValue public Hasher putChar(char c) { putByte((byte) c); putByte((byte) (c >>> 8)); return this; } @Override @CanIgnoreReturnValue public <T extends @Nullable Object> Hasher putObject( @ParametricNullness T instance, Funnel<? super T> funnel) { funnel.funnel(instance, this); return this; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 15 20:59:00 UTC 2022 - 3.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/CompactHashSetTest.java
import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Tests for CompactHashSet. * * @author Dimitris Andreou */ @GwtIncompatible // java.util.Arrays#copyOf(Object[], int), java.lang.reflect.Array public class CompactHashSetTest extends TestCase { public static Test suite() { List<Feature<?>> allFeatures = Arrays.<Feature<?>>asList( CollectionSize.ANY,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 4.6K bytes - Viewed (0)