- Sort Score
- Result 10 results
- Languages All
Results 901 - 910 of 1,544 for implemented (0.15 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
import org.codelibs.fess.crawler.exception.MultipleCrawlingAccessException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @author shinsuke * */ public class FaultTolerantClient implements CrawlerClient { private static final Logger logger = LoggerFactory.getLogger(FaultTolerantClient.class); protected CrawlerClient client; protected int maxRetryCount = 5;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.4K bytes - Viewed (0) -
istioctl/pkg/metrics/metrics_test.go
if !ok { return prometheus_model.Vector{}, nil, nil } return canned, nil, nil } func (client mockPromAPI) WalReplay(ctx context.Context) (promv1.WalReplayStatus, error) { // TODO implement me panic("implement me") } func (client mockPromAPI) Series(ctx context.Context, matches []string, startTime time.Time, endTime time.Time, opts ...promv1.Option, ) ([]prometheus_model.LabelSet, promv1.Warnings, error) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 01:35:47 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
import java.util.Objects; import jcifs.SmbConstants; import jcifs.smb.FileEntry; import jcifs.util.Hexdump; /** * Internal use only * * @internal */ public class SmbShareInfo implements FileEntry { protected String netName; protected int type; protected String remark; /** * */ public SmbShareInfo () {} /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Feb 17 09:30:57 UTC 2019 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java
import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; import jcifs.util.Strings; /** * File notification information * * * @author mbechler * */ public class FileNotifyInformationImpl implements FileNotifyInformation, Decodable { int nextEntryOffset; int action; int fileNameLength; String fileName; /** * */ public FileNotifyInformationImpl () {}
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 17 08:55:32 UTC 2018 - 3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java
import java.util.List; import org.apache.maven.artifact.ArtifactScopeEnum; /** * classpath container that is aware of the classpath scope * * */ @Deprecated public class ClasspathContainer implements Iterable<ArtifactMetadata> { private List<ArtifactMetadata> classpath; private ArtifactScopeEnum scope; // -------------------------------------------------------------------------------------------
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/SystemPropertyProfileActivator.java
import org.codehaus.plexus.personality.plexus.lifecycle.phase.Contextualizable; /** * SystemPropertyProfileActivator */ @Deprecated public class SystemPropertyProfileActivator extends DetectedProfileActivator implements Contextualizable { private Properties properties; public void contextualize(Context context) throws ContextException { properties = (Properties) context.get("SystemProperties"); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/layout/DefaultRepositoryLayout.java
import org.apache.maven.artifact.metadata.ArtifactMetadata; import org.apache.maven.artifact.repository.ArtifactRepository; /** */ @Named("default") @Singleton public class DefaultRepositoryLayout implements ArtifactRepositoryLayout { private static final char PATH_SEPARATOR = '/'; private static final char GROUP_SEPARATOR = '.'; private static final char ARTIFACT_SEPARATOR = '-';
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecryptionRequest.java
/** * Collects parameters that control the decryption of settings. * * @deprecated since 4.0.0 */ @Deprecated(since = "4.0.0") public class DefaultSettingsDecryptionRequest implements SettingsDecryptionRequest { private List<Server> servers; private List<Proxy> proxies; /** * Creates an empty request. */ public DefaultSettingsDecryptionRequest() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/DefaultSettingsWriter.java
* * @deprecated since 4.0.0, use {@link SettingsStaxWriter} instead */ @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultSettingsWriter implements SettingsWriter { @Override public void write(File output, Map<String, Object> options, Settings settings) throws IOException { Objects.requireNonNull(output, "output cannot be null");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocMap.java
import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; public class DocMap implements Map<String, Object> { private static final String LANG_KEY = "lang"; private final Map<String, Object> parent; public DocMap(final Map<String, Object> parent) { this.parent = parent; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.8K bytes - Viewed (0)