Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1231 - 1240 of 3,706 for private (0.15 sec)

  1. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

    /**
     * Test class for Smb2CreateRequest
     */
    @ExtendWith(MockitoExtension.class)
    class Smb2CreateRequestTest {
    
        @Mock
        private Configuration mockConfig;
    
        @Mock
        private CIFSContext mockContext;
    
        @Mock
        private CreateContextRequest mockCreateContext;
    
        private Smb2CreateRequest request;
    
        @BeforeEach
        void setUp() {
            // Setup will be done in individual tests when needed
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

    @NullMarked
    @GwtCompatible
    public class FloatsTest extends TestCase {
      private static final float[] EMPTY = {};
      private static final float[] ARRAY1 = {1.0f};
      private static final float[] ARRAY234 = {2.0f, 3.0f, 4.0f};
    
      private static final float LEAST = Float.NEGATIVE_INFINITY;
      private static final float GREATEST = Float.POSITIVE_INFINITY;
    
      private static final float[] NUMBERS =
          new float[] {
            LEAST,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/FloatsTest.java

    @NullMarked
    @GwtCompatible
    public class FloatsTest extends TestCase {
      private static final float[] EMPTY = {};
      private static final float[] ARRAY1 = {1.0f};
      private static final float[] ARRAY234 = {2.0f, 3.0f, 4.0f};
    
      private static final float LEAST = Float.NEGATIVE_INFINITY;
      private static final float GREATEST = Float.POSITIVE_INFINITY;
    
      private static final float[] NUMBERS =
          new float[] {
            LEAST,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/internal/cache2/RelayTest.kt

    import org.junit.jupiter.api.io.TempDir
    
    @Tag("Slowish")
    class RelayTest {
      @TempDir
      var tempDir: File? = null
      private val executor = Executors.newCachedThreadPool(threadFactory("RelayTest"))
      private val metadata: ByteString = "great metadata!".encodeUtf8()
      private lateinit var file: File
    
      @BeforeEach
      fun setUp() {
        file = File(tempDir, "test")
      }
    
      @AfterEach
      fun tearDown() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java

    @SuppressWarnings("JUnit4ClassUsedInJUnit3")
    public class MapPutTester<K, V> extends AbstractMapTester<K, V> {
      private Entry<K, V> nullKeyEntry;
      private Entry<K, V> nullValueEntry;
      private Entry<K, V> nullKeyValueEntry;
      private Entry<K, V> presentKeyNullValueEntry;
    
      @Override
      public void setUp() throws Exception {
        super.setUp();
        nullKeyEntry = entry(null, v3());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/SmbRandomAccessFileTest.java

    import org.mockito.invocation.InvocationOnMock;
    import org.mockito.stubbing.Answer;
    
    class SmbRandomAccessFileTest {
    
        private SmbFile smbFile;
        private SmbTree smbTree;
        private SmbSession smbSession;
        private SmbTransport smbTransport;
        private SmbRandomAccessFile smbRandomAccessFile;
    
        @BeforeEach
        void setUp() throws MalformedURLException, UnknownHostException, SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            }
        }
    
        // Helper method to create test user
        private User createTestUser(String username) {
            User user = new User();
            user.setName(username);
            return user;
        }
    
        // Test implementation of AuthenticationChain
        private static class TestAuthenticationChain implements AuthenticationChain {
            int id;
            int updateCallCount = 0;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java

    import org.opensearch.index.query.PrefixQueryBuilder;
    import org.opensearch.index.query.QueryBuilder;
    
    public class PrefixQueryCommandTest extends QueryTestBase {
        private PrefixQueryCommand queryCommand;
        private QueryFieldConfig queryFieldConfig;
    
        @Override
        protected void setUpChild() throws Exception {
            // Get the queryProcessor and queryFieldConfig that were registered in parent class
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java

        /**
         * Helper method to create a valid notification buffer
         */
        private byte[] createValidNotificationBuffer(String fileName, int action) {
            return createNotificationBufferWithNextOffset(fileName, action, 0);
        }
    
        /**
         * Helper method to create a notification buffer with specified next offset
         */
        private byte[] createNotificationBufferWithNextOffset(String fileName, int action, int nextOffset) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequestTest.java

    import jcifs.internal.smb2.Smb2Constants;
    
    /**
     * Test class for Smb2QueryDirectoryRequest
     */
    class Smb2QueryDirectoryRequestTest {
    
        @Mock
        private Configuration mockConfig;
    
        @Mock
        private CIFSContext mockContext;
    
        private Smb2QueryDirectoryRequest request;
    
        @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
    - 13.2K bytes
    - Viewed (0)
Back to top