- Sort Score
- Result 10 results
- Languages All
Results 1231 - 1240 of 7,650 for aclass (0.05 sec)
-
android/guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java
*/ package com.google.common.base; import com.google.caliper.Benchmark; /** * Some microbenchmarks for the {@link com.google.common.base.Objects} class. * * @author Ben L. Titzer */ public class ObjectsBenchmark { private static final Integer I0 = -45; private static final Integer I1 = -1; private static final Integer I2 = 3; private static final String S0 = "3";
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/BouncyCastlePlatform.kt
import org.bouncycastle.jsse.provider.BouncyCastleJsseProvider /** * Platform using BouncyCastle if installed as the first Security Provider. * * Requires org.bouncycastle:bctls-jdk15on on the classpath. */ class BouncyCastlePlatform private constructor() : Platform() { private val provider: Provider = BouncyCastleJsseProvider() override fun newSSLContext(): SSLContext = SSLContext.getInstance("TLS", provider)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.3K bytes - Viewed (0) -
samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/UnixDomainServerSocketFactory.java
import jnr.unixsocket.UnixServerSocketChannel; import jnr.unixsocket.UnixSocketAddress; import jnr.unixsocket.UnixSocketChannel; /** Impersonate TCP-style ServerSocketFactory over UNIX domain sockets. */ public final class UnixDomainServerSocketFactory extends ServerSocketFactory { private final File path; public UnixDomainServerSocketFactory(File path) { this.path = path; }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Feb 12 16:33:52 UTC 2019 - 3.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingListIterator.java
* override one or more methods to modify the behavior of the backing iterator as desired per the <a * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>. * * <p><b>{@code default} method warning:</b> This class forwards calls to <i>only some</i> {@code * default} methods. Specifically, it forwards calls only for methods that existed <a * href="https://docs.oracle.com/javase/7/docs/api/java/util/ListIterator.html">before {@code
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 29 19:42:21 UTC 2021 - 2.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerRequest.java
.session(nonNull(session, "session cannot be null")) .artifacts(nonNull(artifacts, "artifacts cannot be null")) .build(); } @NotThreadSafe class ArtifactInstallerRequestBuilder { Session session; Collection<ProducedArtifact> artifacts = Collections.emptyList(); ArtifactInstallerRequestBuilder() {} @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 3.4K bytes - Viewed (0) -
docs/em/docs/how-to/conditional-openapi.md
๐ ๐ซ ๐ฎ ๐ โ ๐โโ ๐ ๐ ๏ธ, *โก ๐ ๏ธ* ๐ ๐ช ๐โ ๐ซ. ๐ฅ ๐ค ๐โโ โ ๐ ๐, โซ๏ธ ๐ ๐. ๐ตโโ ๐งพ โ โซ๏ธ ๐ โ ๐ค โ ๐ โฎ๏ธ ๐ ๐ ๏ธ, & ๐ช โ โซ๏ธ ๐ โ ๐ โน โซ๏ธ ๐ญ. โซ๏ธ ๐ช ๐ค ๐ฏ ๐จ <a href="https://en.wikipedia.org/wiki/Security_through_obscurity" class="external-link" target="_blank">๐โโ ๐ ๐</a>. ๐ฅ ๐ ๐ ๐ ๐ ๐ ๏ธ, ๐ค ๐ ๐ ๐ ๐ ๐ช, ๐ผ: * โ ๐ญ ๐ โ๏ธ ๐ ๐ฌ Pydantic ๐ท ๐ ๐จ ๐ช & ๐จ. * ๐ ๐ โ โ & ๐ โ๏ธ ๐. * ๐ ๐ช ๐ข ๐, ๐ด ๐#๏ธโฃ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2K bytes - Viewed (0) -
docs/em/docs/tutorial/index.md
โซ๏ธ ๐ ๐ท ๐ฎ ๐. ๐ ๐ช ๐ ๐ & ๐ โซ๏ธโ โซ๏ธโ ๐ ๐ช. ## ๐ ๐ ๐ ๐ ๐ซ ๐ช ๐ & โ๏ธ ๐ (๐ซ ๐ค ๐ฏ ๐ ๐). ๐ ๐ ๐ผ, ๐ ๐ ๐ `main.py`, & โถ๏ธ `uvicorn` โฎ๏ธ: <div class="termy"> ```console $ uvicorn main:app --reload <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.2K bytes - Viewed (0) -
tests/test_request_body_parameters_media_type.py
app = FastAPI() media_type = "application/vnd.api+json" # NOTE: These are not valid JSON:API resources # but they are fine for testing requestBody with custom media_type class Product(BaseModel): name: str price: float class Shop(BaseModel): name: str @app.post("/products") async def create_product(data: Product = Body(media_type=media_type, embed=True)): pass # pragma: no cover
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 6.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/Os.kt
* limitations under the License. */ package common enum class Arch(val suffix: String, val nameOnLinuxWindows: String, val nameOnMac: String) { AMD64("64bit", "amd64", "x86_64"), AARCH64("aarch64", "aarch64", "aarch64"); fun asName() = name.lowercase().toCapitalized() } enum class Os( val agentRequirement: String, val androidHome: String, val jprofilerHome: String,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 18:32:33 UTC 2024 - 3.5K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/DaemonTracker.kt
import org.slf4j.LoggerFactory import java.util.concurrent.ConcurrentHashMap import javax.inject.Inject private val logger = LoggerFactory.getLogger("daemonTracker") abstract class DaemonTracker : BuildService<DaemonTracker.Params>, AutoCloseable { interface Params : BuildServiceParameters { val rootProjectDir: DirectoryProperty } @get:Inject
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jan 08 12:45:57 UTC 2024 - 3.4K bytes - Viewed (0)