- Sort Score
- Result 10 results
- Languages All
Results 781 - 790 of 7,287 for _class (0.04 sec)
-
okhttp/src/main/kotlin/okhttp3/Dns.kt
*/ @Throws(UnknownHostException::class) fun lookup(hostname: String): List<InetAddress> companion object { /** * A DNS that uses [InetAddress.getAllByName] to ask the underlying operating system to * lookup IP addresses. Most custom [Dns] implementations should delegate to this instance. */ @JvmField val SYSTEM: Dns = DnsSystem() private class DnsSystem : Dns {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java
import org.junit.Ignore; /** * Base class for collection testers. * * @param <E> the element type of the collection to be tested. * @author Kevin Bourrillion */ @GwtCompatible @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") @ElementTypesAreNonnullByDefault public abstract class AbstractCollectionTester<E extends @Nullable Object>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SecurityBlob.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; /** * This class represents the Secrity_Blob in SMB Block and is set to support * kerberos authentication. * * @author Shun * */ class SecurityBlob { private byte[] b = new byte[0]; SecurityBlob () {} SecurityBlob ( byte[] b ) { set(b); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
docs/em/docs/advanced/templates.md
# ๐ ๐ ๐ช โ๏ธ ๐ ๐ ๐ ๐ ๐ โฎ๏ธ **FastAPI**. โ โ Jinja2๏ธโฃ, ๐ 1๏ธโฃ โ๏ธ ๐บ & ๐ ๐งฐ. ๐ค ๐ ๐ โซ๏ธ ๐ช ๐ ๐ ๐ช โ๏ธ ๐ ๐ **FastAPI** ๐ธ (๐ ๐). ## โ ๐ โ `jinja2`: <div class="termy"> ```console $ pip install jinja2 ---> 100% ``` </div> ## โ๏ธ `Jinja2Templates` * ๐ `Jinja2Templates`. * โ `templates` ๐ ๐ ๐ ๐ช ๐ค-โ๏ธ โช. * ๐ฃ `Request` ๐ข *โก ๐ ๏ธ* ๐ ๐ ๐จ ๐.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/em/docs/advanced/using-request-directly.md
& ๐จ, **FastAPI** โ ๐ ๐ฝ, ๐ญ โซ๏ธ & ๐ญ ๐งพ ๐ ๐ ๏ธ ๐. โ๏ธ ๐ค โ ๐โ ๐ ๐ช ๐ช ๐ `Request` ๐ ๐. ## โน ๐ `Request` ๐ **FastAPI** ๐ค **๐** ๐, โฎ๏ธ ๐งฝ ๐ ๐งฐ ๐ ๐, ๐ ๐ช โ๏ธ ๐ <a href="https://www.starlette.io/requests/" class="external-link" target="_blank">`Request`</a> ๐ ๐ ๐โ ๐ ๐ช. โซ๏ธ ๐ โ ๐ ๐ฅ ๐ ๐ค ๐ โช๏ธโก๏ธ `Request` ๐ ๐ (๐ผ, โ ๐ช) โซ๏ธ ๐ ๐ซ โ, ๐ โ๏ธ ๐ (โฎ๏ธ ๐, ๐ง ๐ ๏ธ ๐ฉโ๐ป ๐ข) FastAPI.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java
*/ package org.apache.maven.plugin.lifecycle; /** * A set of goals to execute. * * @version $Revision$ $Date$ */ @SuppressWarnings("all") public class Execution implements java.io.Serializable { // --------------------------/ // - Class/Member Variables -/ // --------------------------/ /** * Configuration to pass to the goals. */ private Object configuration; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/en/docs/advanced/index.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 1.8K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupRootPlugin.kt
import org.gradle.api.tasks.testing.Test import org.gradle.build.event.BuildEventsListenerRegistry import org.gradle.kotlin.dsl.* import org.gradle.kotlin.dsl.support.serviceOf import java.io.File class TestFilesCleanupRootPlugin : Plugin<Project> { override fun apply(project: Project) { require(project.rootProject == project) { "This plugin should be applied to root project!" }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 06 10:57:13 UTC 2023 - 3K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateReleasedVersions.kt
import org.gradle.api.tasks.TaskAction import org.gradle.util.GradleVersion import org.gradle.work.DisableCachingByDefault import java.io.File @DisableCachingByDefault(because = "Not worth caching") abstract class UpdateReleasedVersions : DefaultTask() { @get:Internal abstract val releasedVersionsFile: RegularFileProperty @get:Internal abstract val currentReleasedVersion: Property<ReleasedVersion>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jul 07 13:12:26 UTC 2021 - 3.5K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/PropertyMetaData.java
*/ package gradlebuild.docs.dsl.source.model; import org.gradle.api.Action; import java.io.Serializable; /** * Static meta-data about a property extracted from the source for the class. */ public class PropertyMetaData extends AbstractLanguageElement implements Serializable, TypeContainer { private TypeMetaData type; private final String name; private final ClassMetaData ownerClass;
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3K bytes - Viewed (0)