- Sort Score
- Result 10 results
- Languages All
Results 1051 - 1060 of 1,727 for Interface1 (0.09 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
public static final String PLUGIN_2_0_0 = "http://maven.apache.org/PLUGIN/2.0.0"; private static final int BUFFER_SIZE = 8192; public interface StreamSupplier { InputStream open() throws IOException; } public interface ReaderSupplier { Reader open() throws IOException; } /** * @deprecated use {@link #build(ReaderSupplier)} */ @Deprecated
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
cni/pkg/plugin/plugin.go
if err := doAddRun(args, conf, client, IptablesInterceptRuleMgr()); err != nil { return err } return pluginResponse(conf) } func doAddRun(args *skel.CmdArgs, conf *Config, kClient kubernetes.Interface, rulesMgr InterceptRuleMgr) error { if err := log.Configure(GetLoggingOptions(conf)); err != nil { log.Error("Failed to configure istio-cni logging") } var loggedPrevResult any if conf.PrevResult == nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 10.5K bytes - Viewed (0) -
samples/slack/src/main/java/okhttp3/slack/OAuthSessionFactory.java
} // Success! return new MockResponse() .setResponseCode(302) .addHeader("Location", "https://twitter.com/CuteEmergency/status/789457462864863232"); } public interface Listener { void sessionGranted(OAuthSession session); } @Override public void close() { if (mockWebServer == null) throw new IllegalStateException(); try { mockWebServer.close();
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 3.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java
import static org.apache.maven.api.services.BaseRequest.nonNull; /** * A request for resolving an artifact. * * @since 4.0.0 */ @Experimental @Immutable public interface ArtifactResolverRequest { @Nonnull Session getSession(); @Nonnull Collection<? extends ArtifactCoordinates> getCoordinates(); @Nonnull List<RemoteRepository> getRepositories();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 4.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java
package org.apache.maven.api.services; import java.util.List; import java.util.Map; import java.util.Optional; import org.apache.maven.api.Service; import org.apache.maven.api.annotations.Nonnull; public interface Lookup extends Service { /** * Performs a lookup for given typed component. * * @param type The component type. * @return The component. * @param <T> The component type.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Jan 10 12:55:54 UTC 2024 - 3.3K bytes - Viewed (0) -
migrator/column_type.go
package migrator import ( "database/sql" "reflect" ) // ColumnType column type implements ColumnType interface type ColumnType struct { SQLColumnType *sql.ColumnType NameValue sql.NullString DataTypeValue sql.NullString ColumnTypeValue sql.NullString PrimaryKeyValue sql.NullBool UniqueValue sql.NullBool AutoIncrementValue sql.NullBool LengthValue sql.NullInt64
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Mar 24 01:31:58 UTC 2022 - 3.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
public RequestListener getRequestListener() { return listener; } public void setRequestListener(final RequestListener listener) { this.listener = listener; } public interface RequestListener { void onRequestStart(FaultTolerantClient client, RequestData request); void onRequest(FaultTolerantClient client, RequestData request, int count);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.4K bytes - Viewed (0) -
src/main/resources/CLMessages.properties
ECL0099=Field({1}) of class({0}) is not a static field. ECL0100=Method({1}) of class({0}) is not a static method. ECL0101=File({0}) is not exist or not readable. ECL0102=File({0}) is not exist or not writable. ECL0103=Type({0}) is an interface not a class. ECL0104=Argument({0}) is not an array. ECL0105=Rethrew {0} as a runtime exception. ECL0106=IOException occurred, because {0} ECL0107=InvalidKeyException occurred, because {0} ECL0108=The path is null.
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:58:02 UTC 2024 - 3.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java
* @see org.apache.maven.api.services.SettingsBuilder#build(Session, Source, Source, Source) * @see org.apache.maven.api.services.ToolchainsBuilder#build(Session, Source, Source) */ @Experimental public interface Source { /** * Provides access the file to be parsed, if this source is backed by a file. * * @return the underlying {@code Path}, or {@code null} if this source is not backed by a file */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Apr 12 10:50:18 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.DfsReferralData; import jcifs.SmbSession; import jcifs.SmbTransport; /** * @author mbechler * */ public interface SmbTransportInternal extends SmbTransport { /** * @param cap * @return whether the transport has the given capability * @throws SmbException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3K bytes - Viewed (0)