- Sort Score
- Result 10 results
- Languages All
Results 921 - 930 of 3,753 for private (0.16 sec)
-
guava-tests/test/com/google/common/escape/UnicodeEscaperTest.java
*/ @GwtCompatible public class UnicodeEscaperTest extends TestCase { private static final String SMALLEST_SURROGATE = "" + Character.MIN_HIGH_SURROGATE + Character.MIN_LOW_SURROGATE; private static final String LARGEST_SURROGATE = "" + Character.MAX_HIGH_SURROGATE + Character.MAX_LOW_SURROGATE; private static final String TEST_STRING =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 5.9K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/MapRetrievalCache.java
cacheEntry2 = null; } private void addToCache(K key, V value) { addToCache(new CacheEntry<K, V>(key, value)); } private void addToCache(CacheEntry<K, V> entry) { // Slide new entry into first cache position. Drop previous entry in second cache position. cacheEntry2 = cacheEntry1; cacheEntry1 = entry; } private static final class CacheEntry<K, V> { final K key;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBasicInfo.java
import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * */ public class FileBasicInfo implements BasicFileInformation { private long createTime; private long lastAccessTime; private long lastWriteTime; private long changeTime; private int attributes; /** * */ public FileBasicInfo () {} /** * @param create * @param lastAccess
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.2K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadata.java
static final class PluginInfo { @Nonnull final String groupId; @Nonnull private final String artifactId; @Nullable private final String goalPrefix; @Nullable private final String name; PluginInfo(String groupId, String artifactId, String goalPrefix, String name) { this.groupId = groupId;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
import java.io.IOException; import jcifs.CIFSContext; /** * Represents an NTLMSSP Type-1 message. */ public class Type1Message extends NtlmMessage { private String suppliedDomain; private String suppliedWorkstation; /** * Creates a Type-1 message using default values from the current * environment. * * @param tc * context to use
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 02 12:55:08 UTC 2018 - 7.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java
} } static class BeanExpressionEvaluator implements TypeAwareExpressionEvaluator { private final BeanConfigurationValuePreprocessor preprocessor; private final BeanConfigurationPathTranslator translator; BeanExpressionEvaluator(BeanConfigurationRequest request) { preprocessor = request.getValuePreprocessor();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java
} // TODO: tests that check the weird interplay between expected size, // maximum size, size of initial contents, default capacity... private static void checkNatural(MinMaxPriorityQueue<Integer> queue) { assertSame(Ordering.natural(), queue.comparator()); } private static void checkUnbounded(MinMaxPriorityQueue<Integer> queue) { assertEquals(Integer.MAX_VALUE, queue.maximumSize); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 35.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
public class SamlCredential implements LoginCredential, FessCredential { private final Map<String, List<String>> attributes; private final String nameId; private final String nameIdFormat; private final String sessionIndex; private final String nameidNameQualifier; private final String nameidSPNameQualifier; public SamlCredential(final Auth auth) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.6K bytes - Viewed (0) -
guava/src/com/google/common/reflect/MutableTypeToInstanceMap.java
@CheckForNull private <T extends B> T trustedPut(TypeToken<@NonNull T> type, @ParametricNullness T value) { return (T) backingMap.put(type, value); } @SuppressWarnings("unchecked") // value could not get in if not a T @CheckForNull private <T extends @NonNull B> T trustedGet(TypeToken<T> type) { return (T) backingMap.get(type); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 14 17:55:55 UTC 2024 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java
@Inject private Logger logger; @Inject private ProfileSelector profileSelector; private List<String> activatedIds = new ArrayList<>(); private List<String> deactivatedIds = new ArrayList<>(); private List<String> defaultIds = new ArrayList<>(); private Map<String, Profile> profilesById = new LinkedHashMap<>(); private Properties requestProperties; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.7K bytes - Viewed (0)