- Sort Score
- Result 10 results
- Languages All
Results 1681 - 1690 of 5,836 for Public (0.03 sec)
-
android/guava/src/com/google/common/collect/FluentIterable.java
* Collection}; {@code StreamSupport.stream(iterable.spliterator(), false)} otherwise. */ public static <E extends @Nullable Object> FluentIterable<E> from(Iterable<E> iterable) { return (iterable instanceof FluentIterable) ? (FluentIterable<E>) iterable : new FluentIterable<E>(iterable) { @Override public Iterator<E> iterator() { return iterable.iterator(); } };
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
import java.util.List; import org.codelibs.fess.opensearch.config.exentity.DuplicateHost; import org.codelibs.fess.unit.UnitFessTestCase; public class DuplicateHostHelperTest extends UnitFessTestCase { private DuplicateHostHelper duplicateHostHelper; @Override public void setUp() throws Exception { super.setUp(); duplicateHostHelper = new DuplicateHostHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java
*/ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { } /** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The regular canonical hostname that should be used */ @Required @Size(max = 1000) public String regularName;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
throw new RuntimeException(e); } } // Test basic getters public void test_getType() { assertEquals("stopwords", stopwordsFile.getType()); } public void test_getPath() { assertEquals(testFile.getAbsolutePath(), stopwordsFile.getPath()); } public void test_getSimpleName() { assertEquals(testFile.getName(), stopwordsFile.getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Hashing.java
public static HashFunction murmur3_128() { return Murmur3_128HashFunction.MURMUR3_128; } /** * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit * SipHash-2-4 algorithm</a> using a seed value of {@code k = 00 01 02 ...}. * * @since 15.0 */ public static HashFunction sipHash24() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
* @param treeConnection */ public SmbTreeHandleImpl(final SmbResourceLocatorImpl resourceLoc, final SmbTreeConnection treeConnection) { this.resourceLoc = resourceLoc; this.treeConnection = treeConnection.acquire(); } @Override public SmbSessionImpl getSession() { return this.treeConnection.getSession(); } @Override public void ensureDFSResolved() throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multimaps.java
} @Override public int size() { return map.size(); } @Override public boolean containsKey(@Nullable Object key) { return map.containsKey(key); } @Override public boolean containsValue(@Nullable Object value) { return map.containsValue(value); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 86.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
*/ @Override public boolean isPreferredMech(final ASN1ObjectIdentifier mechanism) { return this.auth.isPreferredMech(mechanism); } @Override public boolean isEstablished() { return this.isEstablished; } /** * Gets the server's NTLM challenge bytes. * @return the server's challenge */ public byte[] getServerChallenge() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java
} @Override public String getName() { return name; } @Override public String[] getRoleNames() { return roles; } @Override public String[] getGroupNames() { return groups; } @Override public String[] getPermissions() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/ElevateWord.java
return labelValueList.toArray(new String[labelValueList.size()]); } public String getId() { return asDocMeta().id(); } public void setId(final String id) { asDocMeta().id(id); } public Long getVersionNo() { return asDocMeta().version(); } public void setVersionNo(final Long version) { asDocMeta().version(version); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.3K bytes - Viewed (0)