- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 1,407 for isInstance (0.05 sec)
-
docs/en/docs/tutorial/dependencies/classes-as-dependencies.md
## Classes as dependencies { #classes-as-dependencies_1 } You might notice that to create an instance of a Python class, you use that same syntax. For example: ```Python class Cat: def __init__(self, name: str): self.name = name fluffy = Cat(name="Mr Fluffy") ``` In this case, `fluffy` is an instance of the class `Cat`. And to create `fluffy`, you are "calling" `Cat`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainFactory.java
*/ @Deprecated(since = "4.0.0") public interface ToolchainFactory { /** * Create instance of toolchain. **/ ToolchainPrivate createToolchain(ToolchainModel model) throws MisconfiguredToolchainException; /** * Returns the default instance of the particular type of toolchain, can return <code>null</code> * if not applicable. * TODO keep around?? **/
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 12 13:13:28 UTC 2025 - 1.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java
* @return this builder instance for method chaining */ public ExtractorBuilder mimeType(final String mimeType) { this.mimeType = mimeType; return this; } /** * Sets the filename of the content to extract. * * @param filename the filename to set * @return this builder instance for method chaining */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java
new ImmutableClassToInstanceMap<>(ImmutableMap.<Class<?>, Object>of()); /** * Returns an empty {@code ImmutableClassToInstanceMap}. * * <p><b>Performance note:</b> the instance returned is a singleton. * * @since 19.0 */ @SuppressWarnings("unchecked") public static <B> ImmutableClassToInstanceMap<B> of() { return (ImmutableClassToInstanceMap<B>) EMPTY; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
/** * The properties file. */ protected volatile File propertiesFile; /** * The properties instance. */ protected volatile Properties properties; /** * Constructs a {@code DynamicProperties} instance with the specified file path. * * @param path
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
/** * A map of regular expression patterns to crawler clients. */ protected Map<Pattern, CrawlerClient> clientMap = new LinkedHashMap<>(); /** * Creates a new instance of CrawlerClientFactory. */ public CrawlerClientFactory() { // NOP } /** * Initializes the CrawlerClientFactory.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/NTLMSchemeProvider.java
public class NTLMSchemeProvider implements AuthSchemeProvider { /** * Creates a new NTLMSchemeProvider instance. */ public NTLMSchemeProvider() { super(); } /** * Creates a new NTLMScheme instance. * @param context The HTTP context. * @return A new NTLMScheme instance. */ @Override public AuthScheme create(final HttpContext context) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.4K bytes - Viewed (0) -
guava/src/com/google/common/math/Stats.java
* <p>There are two ways to obtain a {@code Stats} instance: * * <ul> * <li>If all the values you want to summarize are already known, use the appropriate {@code * Stats.of} factory method below. Primitive arrays, iterables and iterators of any kind of * {@code Number}, and primitive varargs are supported. * <li>Or, to avoid storing up all the data first, create a {@link StatsAccumulator} instance,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/LogStream.java
*/ public static void setInstance(final PrintStream stream) { inst = new LogStream(stream); } /** * Returns the singleton LogStream instance. * * @return the LogStream instance */ public static LogStream getInstance() { if (inst == null) { setInstance(System.err); } return inst; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/PrimitiveSink.java
public interface PrimitiveSink { /** * Puts a byte into this sink. * * @param b a byte * @return this instance */ @CanIgnoreReturnValue PrimitiveSink putByte(byte b); /** * Puts an array of bytes into this sink. * * @param bytes a byte array * @return this instance */ @CanIgnoreReturnValue PrimitiveSink putBytes(byte[] bytes); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 3.9K bytes - Viewed (0)