- Sort Score
- Result 10 results
- Languages All
Results 3551 - 3560 of 6,120 for stringy (0.05 sec)
-
src/main/java/org/codelibs/fess/es/config/exbhv/CrawlingInfoParamBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class CrawlingInfoParamBhv extends BsCrawlingInfoParamBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exbhv/DataConfigBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class DataConfigBhv extends BsDataConfigBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exbhv/DuplicateHostBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class DuplicateHostBhv extends BsDuplicateHostBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exbhv/FailureUrlBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class FailureUrlBhv extends BsFailureUrlBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java
artifactResolver.resolve(b, remoteRepositories(), localRepository()); assertLocalArtifactPresent(b); } @Override protected Artifact createArtifact(String groupId, String artifactId, String version, String type) throws Exception { // for the anonymous classes return super.createArtifact(groupId, artifactId, version, type); } @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.1K bytes - Viewed (0) -
tests/test_query.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 21:56:59 UTC 2024 - 11.4K bytes - Viewed (0) -
internal/bucket/lifecycle/expiration.go
nsec := expDate.Nanosecond() loc := expDate.Location() if !(hr == 0 && min == 0 && sec == 0 && nsec == 0 && loc.String() == time.UTC.String()) { return errLifecycleDateNotMidnight } *eDate = ExpirationDate{expDate} return nil } // MarshalXML encodes expiration date if it is non-zero and encodes // empty string otherwise func (eDate ExpirationDate) MarshalXML(e *xml.Encoder, startElement xml.StartElement) error {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Feb 21 20:28:34 UTC 2024 - 6.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/ClassPathTest.java
String resource = cls.getName().replace('.', '/') + ".class"; return new ClassInfo(FILE, resource, classLoader); } private static Manifest manifestClasspath(String classpath) throws IOException { return manifest("Class-Path: " + classpath + "\n"); } private static void writeSelfReferencingJarFile(File jarFile, String... entries) throws IOException {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 22:09:38 UTC 2024 - 27.6K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt
@get:JvmName("resolvePublicAddresses") val resolvePublicAddresses: Boolean, ) : Dns { @Throws(UnknownHostException::class) override fun lookup(hostname: String): List<InetAddress> { if (!resolvePrivateAddresses || !resolvePublicAddresses) { val privateHost = isPrivateHost(hostname) if (privateHost && !resolvePrivateAddresses) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Oct 31 09:27:31 UTC 2024 - 9.8K bytes - Viewed (0) -
internal/bucket/replication/filter.go
// Filter - a filter for a replication configuration Rule. type Filter struct { XMLName xml.Name `xml:"Filter" json:"Filter"` Prefix string And And Tag Tag // Caching tags, only once cachedTags map[string]string } // IsEmpty returns true if filter is not set func (f Filter) IsEmpty() bool { return f.And.isEmpty() && f.Tag.IsEmpty() && f.Prefix == "" }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Sep 28 18:25:46 UTC 2022 - 3.5K bytes - Viewed (0)