- Sort Score
- Result 10 results
- Languages All
Results 1551 - 1560 of 5,836 for Public (0.17 sec)
-
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
} @SuppressWarnings("unchecked") @Override public <T extends Credentials> T unwrap(Class<T> t) { if (t.isAssignableFrom(this.getClass())) { return (T) this; } return null; } @Override public Subject getSubject() { return null; } @Override public void refresh() throws CIFSException { } /** *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableListTest.java
return suite; } // Creation tests public void testCreation_noArgs() { List<String> list = ImmutableList.of(); assertEquals(emptyList(), list); } public void testCreation_oneElement() { List<String> list = ImmutableList.of("a"); assertEquals(singletonList("a"), list); } public void testCreation_twoElements() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 23.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/CreateForm.java
/** * The create form for managing related queries. */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { } /** * The CRUD operation mode (create, update, etc.). */ @ValidateTypeFailure public Integer crudMode; /** * The search term for which related queries are shown. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/CreateForm.java
*/ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { } /** * The CRUD mode for the form. */ @ValidateTypeFailure public Integer crudMode; /** * The name of the request header. */ @Required @Size(max = 100) public String name; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ModifierUtil.java
* * @author shot */ public abstract class ModifierUtil { /** * Do not instantiate. */ protected ModifierUtil() { } /** * Checks if the specified method is public. * * @param method * the method to check. Must not be null. * @return true if public, false otherwise */ public static boolean isPublic(final Method method) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtException.java
public class NbtException extends IOException { // error classes /** Success status code */ public static final int SUCCESS = 0; /** Name service error class */ public static final int ERR_NAM_SRVC = 0x01; /** Session service error class */ public static final int ERR_SSN_SRVC = 0x02; // name service error codes /** Format error in the name service */ public static final int FMT_ERR = 0x1;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionContainsAllTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") public class CollectionContainsAllTester<E> extends AbstractCollectionTester<E> { public void testContainsAll_empty() { assertTrue( "containsAll(empty) should return true", collection.containsAll(MinimalCollection.of())); } @CollectionSize.Require(absent = ZERO) public void testContainsAll_subset() { assertTrue(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 4K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingImmutableMap.java
} @Override public final boolean isEmpty() { return delegate.isEmpty(); } @Override public final boolean containsKey(@Nullable Object key) { return Maps.safeContainsKey(delegate, key); } @Override public final boolean containsValue(@Nullable Object value) { return delegate.containsValue(value); } @Override public @Nullable V get(@Nullable Object key) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 4K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Tools.java
*/ @Immutable @Experimental public final class Tools { private Tools() {} public static final String MVN_CMD = "mvn"; public static final String MVN_NAME = "Maven"; public static final String MVNENC_CMD = "mvnenc"; public static final String MVNENC_NAME = "Maven Password Encrypting Tool"; public static final String MVNSHELL_CMD = "mvnsh";
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 1.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/EnumMultiset.java
return new Multisets.AbstractEntry<E>() { @Override public E getElement() { return enumConstants[index]; } @Override public int getCount() { return counts[index]; } }; } }; } @Override public void forEachEntry(ObjIntConsumer<? super E> action) { checkNotNull(action);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.3K bytes - Viewed (0)