- Sort Score
- Result 10 results
- Languages All
Results 891 - 900 of 3,691 for Private (0.06 sec)
-
android/guava/src/com/google/common/collect/CollectCollectors.java
EnumMapAccumulator::toImmutableMap); } @IgnoreJRERequirement // see enclosing class (whose annotation Animal Sniffer ignores here...) private static final class EnumMapAccumulator<K extends Enum<K>, V> { private final BinaryOperator<V> mergeFunction; private @Nullable EnumMap<K, V> map = null; EnumMapAccumulator(BinaryOperator<V> mergeFunction) { this.mergeFunction = mergeFunction; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 16.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/CollectCollectors.java
}, EnumMapAccumulator::combine, EnumMapAccumulator::toImmutableMap); } private static final class EnumMapAccumulator<K extends Enum<K>, V> { private final BinaryOperator<V> mergeFunction; private @Nullable EnumMap<K, V> map = null; EnumMapAccumulator(BinaryOperator<V> mergeFunction) { this.mergeFunction = mergeFunction; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
private static final int WRITE_OPTIONS = 0x0842; private final SmbFile file; private long fp; private int openFlags, access = 0; private final int readSize; private final int writeSize; private int ch; private int options = 0; private final byte[] tmp = new byte[8]; private SmbComWriteAndXResponse write_andx_resp = null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacGroupTest.java
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import jcifs.smb.SID; /** * Tests for the {@link PacGroup} class. */ class PacGroupTest { private SID mockSid; private PacGroup pacGroup; private final int attributes = 42; @BeforeEach void setUp() { // Mock the SID object mockSid = mock(SID.class); pacGroup = new PacGroup(mockSid, attributes);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.5K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/JapaneseStopTokenFilterFactory.java
public class JapaneseStopTokenFilterFactory extends AbstractTokenFilterFactory { private static final Map<String, Set<?>> NAMED_STOP_WORDS = singletonMap("_japanese_", JapaneseAnalyzer.getDefaultStopSet()); private final CharArraySet stopWords; private final boolean ignoreCase; private final boolean removeTrailing;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 2.4K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/UndirectedMultiNetworkConnections.java
return new UndirectedMultiNetworkConnections<>(ImmutableMap.copyOf(incidentEdges)); } @LazyInit private transient @Nullable Reference<Multiset<N>> adjacentNodesReference; @Override public Set<N> adjacentNodes() { return Collections.unmodifiableSet(adjacentNodesMultiset().elementSet()); } private Multiset<N> adjacentNodesMultiset() { Multiset<N> adjacentNodes = getReference(adjacentNodesReference);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.7K bytes - Viewed (0) -
guava/src/com/google/thirdparty/publicsuffix/PublicSuffixType.java
/** Public suffix that is provided by a private company, e.g. "blogspot.com" */ PRIVATE(':', ','), /** Public suffix that is backed by an ICANN-style domain name registry */ REGISTRY('!', '?'); /** The character used for an inner node in the trie encoding */ private final char innerNodeCode; /** The character used for a leaf node in the trie encoding */ private final char leafNodeCode;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 10 15:48:57 UTC 2020 - 2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/GradleSubprojectProvider.kt
} data class JsonBasedGradleSubprojectProvider( private val jsonFile: File, ) : GradleSubprojectProvider { private val objectMapper = ObjectMapper().registerKotlinModule() override val subprojects = objectMapper.readValue<List<Map<String, Any>>>(jsonFile.readText()).map { toSubproject(it) } private val nameToSubproject = subprojects.map { it.name to it }.toMap()
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
private long queryFreq; private long docFreq; private float userBoost; private String[][] readings; private String[] fields; private String[] tags; private String[] roles; private String[] languages; private Kind[] kinds; private Map<String, Object> emptySource; private String id; private SuggestItem() { } /**
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 25.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/RealWebSocketTest.kt
// from the perspective of a single peer. private val random = Random(0) private val taskFaker = TaskFaker() private val sockets = inMemorySocketPair(8192L) private val client = TestStreams(taskFaker, sockets[0], client = true) private val server = TestStreams(taskFaker, sockets[1], client = false) @BeforeEach fun setUp() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 18.7K bytes - Viewed (0)