- Sort Score
- Result 10 results
- Languages All
Results 1731 - 1740 of 3,687 for PRIVATE (0.17 sec)
-
src/test/java/jcifs/dcerpc/msrpc/MsrpcGetMembersInAliasTest.java
import jcifs.dcerpc.DcerpcMessage; import jcifs.dcerpc.msrpc.lsarpc.LsarSidArray; /** * Tests for the MsrpcGetMembersInAlias class. */ class MsrpcGetMembersInAliasTest { private SamrAliasHandle aliasHandle; private LsarSidArray sids; @BeforeEach void setUp() { // Create mock objects for the constructor parameters aliasHandle = mock(SamrAliasHandle.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; public class SmbComQueryInformationTest { private static final String TEST_FILE_NAME = "testFile.txt"; private SmbComQueryInformation smbComQueryInformation; @BeforeEach public void setUp() { smbComQueryInformation = new SmbComQueryInformation(TEST_FILE_NAME); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKeywordMarkerFilterFactory.java
import org.opensearch.index.IndexSettings; import org.opensearch.index.analysis.AbstractTokenFilterFactory; public class ReloadableKeywordMarkerFilterFactory extends AbstractTokenFilterFactory { private final Path keywordPath; private final long reloadInterval; public ReloadableKeywordMarkerFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name, final Settings settings) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun May 18 02:59:16 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
*/ public CrawlerStatsHelper() { // Default constructor } /** Logger instance for this class. */ private static final Logger logger = LogManager.getLogger(CrawlerStatsHelper.class); /** Key used to store the begin timestamp in statistics objects. */ private static final String BEGIN_KEY = "begin"; /** Logger instance specifically for outputting crawler statistics. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
import jcifs.internal.util.SMBUtil; import jcifs.util.Strings; /** * Test class for FileBothDirectoryInfo */ class FileBothDirectoryInfoTest { @Mock private Configuration mockConfig; private FileBothDirectoryInfo fileBothDirectoryInfo; private FileBothDirectoryInfo fileBothDirectoryInfoNonUnicode; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/MultiInputStreamTest.java
assertEquals(-1, tenMillionEmptySources().read(new byte[1])); } private static MultiInputStream tenMillionEmptySources() throws IOException { return new MultiInputStream(Collections.nCopies(10_000_000, ByteSource.empty()).iterator()); } private static ByteSource newByteSource(int start, int size) { return new ByteSource() { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java
* writing data to and reading data from a named pipe in a single operation. */ public class TransCallNamedPipe extends SmbComTransaction { private static final Logger log = LoggerFactory.getLogger(TransCallNamedPipe.class); private final byte[] pipeData; private final int pipeDataOff, pipeDataLen; /** * Constructs a TransCallNamedPipe request to write data to a named pipe. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipe.java
* This is more efficient than separate write and read operations. */ public class TransTransactNamedPipe extends SmbComTransaction { private static final Logger log = LoggerFactory.getLogger(TransTransactNamedPipe.class); private final byte[] pipeData; private final int pipeFid, pipeDataOff, pipeDataLen; /** * Constructs a transaction request for a named pipe operation. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
/** Optional prefix text before the target */ private final String prefix; /** Start of the target text */ private final String textStart; /** Optional end of the target text */ private final String textEnd; /** Optional suffix text after the target */ private final String suffix; /** * Constructs a new TextFragment.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/idn/IdnaMappingTableTest.kt
import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test /** Confirm we get the expected table whether we build it from the .txt file or compact that. */ class IdnaMappingTableTest { private lateinit var table: SimpleIdnaMappingTable private lateinit var compactTable: IdnaMappingTable @BeforeEach fun setUp() { val path = "/okhttp3/internal/idna/IdnaMappingTable.txt".toPath() val plainTable =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 8.9K bytes - Viewed (0)