- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 265 for initVal (0.1 sec)
-
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
private static final String NAME_PREFIX = "crawlingInfoTest_"; private static String webConfigId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); // create and execute a web crawler createWebConfig(); logger.info("WebConfig is created"); refresh();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.1K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
*/ String asciiChars = CharMatcher.ascii().retainFrom(part); if (!PART_CHAR_MATCHER.matchesAllOf(asciiChars)) { return false; } // No initial or final dashes or underscores. if (DASH_MATCHER.matches(part.charAt(0)) || DASH_MATCHER.matches(part.charAt(part.length() - 1))) { return false; } /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 05 20:47:23 UTC 2024 - 28K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt
private set /** Current calls carried by this connection. */ val calls = mutableListOf<Reference<RealCall>>() /** Timestamp when `allocations.size()` reached zero. Also assigned upon initial connection. */ var idleAtNs = Long.MAX_VALUE /** * Returns true if this is an HTTP/2 connection. Such connections can be used in multiple HTTP * requests simultaneously. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 15.4K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/DirectedGraphConnections.java
} static <N, V> DirectedGraphConnections<N, V> of(ElementOrder<N> incidentEdgeOrder) { // We store predecessors and successors in the same map, so double the initial capacity. int initialCapacity = INNER_CAPACITY * 2; List<NodeConnection<N>> orderedNodeConnections; switch (incidentEdgeOrder.type()) { case UNORDERED: orderedNodeConnections = null;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 20 17:00:05 UTC 2024 - 18K bytes - Viewed (0) -
src/main/resources/fess_label_ru.properties
labels.user_facsimileTelephoneNumber=facsimileTelephoneNumber labels.facsimileTelephoneNumber=facsimileTelephoneNumber labels.user_postOfficeBox=postOfficeBox labels.postOfficeBox=postOfficeBox labels.user_initials=initials labels.initials=initials labels.user_carLicense=carLicense labels.carLicense=carLicense labels.user_mobile=mobile labels.mobile=mobile labels.user_postalAddress=postalAddress labels.postalAddress=postalAddress
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 45.6K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.user_facsimileTelephoneNumber=Facsimile Telephone Number labels.facsimileTelephoneNumber=Facsimile Telephone Number labels.user_postOfficeBox=Post Office Box labels.postOfficeBox=Post Office Box labels.user_initials=Initials labels.initials=Initials labels.user_carLicense=Car License labels.carLicense=Car License labels.user_mobile=Mobile labels.mobile=Mobile labels.user_postalAddress=Postal Address labels.postalAddress=Postal Address
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String LDAP_SECURITY_AUTHENTICATION = "ldap.security.authentication"; public static final String LDAP_INITIAL_CONTEXT_FACTORY = "ldap.initial.context.factory"; public static final String LDAP_ACCOUNT_FILTER = "ldap.account.filter"; public static final String LDAP_GROUP_FILTER = "ldap.group.filter";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* @throws IllegalArgumentException if {@code initialCapacity} is negative * @throws IllegalStateException if an initial capacity was already set */ @CanIgnoreReturnValue public CacheBuilder<K, V> initialCapacity(int initialCapacity) { checkState( this.initialCapacity == UNSET_INT, "initial capacity was already set to %s", this.initialCapacity); checkArgument(initialCapacity >= 0);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 52K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java
result.setHomePhone(DfTypeUtil.toString(source.get("homePhone"))); result.setHomePostalAddress(DfTypeUtil.toString(source.get("homePostalAddress"))); result.setInitials(DfTypeUtil.toString(source.get("initials"))); result.setInternationaliSDNNumber(DfTypeUtil.toString(source.get("internationaliSDNNumber"))); result.setLabeledURI(DfTypeUtil.toString(source.get("labeledURI")));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12K bytes - Viewed (0) -
guava/src/com/google/common/net/InternetDomainName.java
*/ String asciiChars = CharMatcher.ascii().retainFrom(part); if (!PART_CHAR_MATCHER.matchesAllOf(asciiChars)) { return false; } // No initial or final dashes or underscores. if (DASH_MATCHER.matches(part.charAt(0)) || DASH_MATCHER.matches(part.charAt(part.length() - 1))) { return false; } /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 05 20:47:23 UTC 2024 - 28K bytes - Viewed (0)