Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,230 for new1 (0.02 sec)

  1. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

            java.io.ByteArrayOutputStream baos = new java.io.ByteArrayOutputStream();
            java.io.ObjectOutputStream oos = new java.io.ObjectOutputStream(baos);
            oos.writeObject(exception);
            oos.close();
    
            // And deserialize
            java.io.ByteArrayInputStream bais = new java.io.ByteArrayInputStream(baos.toByteArray());
            java.io.ObjectInputStream ois = new java.io.ObjectInputStream(bais);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            final Name calledName = new Name(tc.getConfig(), this.address.firstCalledName(), 0x20, null);
            do {
                this.socket = new Socket();
                if (this.localAddr != null) {
                    this.socket.bind(new InetSocketAddress(this.localAddr, this.localPort));
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/curl/CurlRequest.java

                            }
                        } else if ("head".equalsIgnoreCase(con.getRequestMethod())) {
                            return new ByteArrayInputStream(new byte[0]);
                        } else {
                            if (GZIP.equals(con.getContentEncoding())) {
                                return new GZIPInputStream(con.getErrorStream());
                            } else {
                                return con.getErrorStream();
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

            } catch (final UnknownHostException uhe) {}
    
            snd_buf = new byte[SND_BUF_SIZE];
            rcv_buf = new byte[RCV_BUF_SIZE];
            out = new DatagramPacket(snd_buf, SND_BUF_SIZE, baddr, NAME_SERVICE_UDP_PORT);
            in = new DatagramPacket(rcv_buf, RCV_BUF_SIZE);
    
            if (RO == null || RO.length() == 0) {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        }
    
        /**
         * Creates a new LDAP user instance with the specified username and environment.
         *
         * @param username the username for the LDAP user
         * @param env the environment configuration for LDAP connection
         * @return a new LdapUser instance
         */
        protected LdapUser createLdapUser(final String username, final Hashtable<String, String> env) {
            return new LdapUser(env, username);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  6. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/ImmutableCollections.java

     */
    class ImmutableCollections {
    
        private static final Map<?, ?> EMPTY_MAP = new AbstractImmutableMap<>() {
            @Override
            public Set<Entry<Object, Object>> entrySet() {
                return new AbstractImmutableSet<>() {
                    @Override
                    public Iterator<Entry<Object, Object>> iterator() {
                        return new Iterator<>() {
                            @Override
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jul 07 11:47:42 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        public void test_register_multipleAuthenticators() {
            TestSsoAuthenticator authenticator1 = new TestSsoAuthenticator();
            TestSsoAuthenticator authenticator2 = new TestSsoAuthenticator();
            TestSsoAuthenticator authenticator3 = new TestSsoAuthenticator();
    
            ssoManager.register(authenticator1);
            ssoManager.register(authenticator2);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItemTest.java

            final StemmerOverrideItem stemmerOverrideItem1 = new StemmerOverrideItem(1, "aaa", "a");
    
            assertTrue(stemmerOverrideItem1.equals(stemmerOverrideItem1));
            assertTrue(stemmerOverrideItem1.equals(new StemmerOverrideItem(1, "aaa", "a")));
            assertTrue(stemmerOverrideItem1.equals(new StemmerOverrideItem(2, "aaa", "a")));
            assertFalse(stemmerOverrideItem1.equals(new StemmerOverrideItem(1, "aaa", "b")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/smb1/SmbComSessionSetupAndXTest.java

            mockAuth.password = "testpass";
    
            when(mockAuth.getAnsiHash(any(byte[].class))).thenReturn(new byte[24]);
            when(mockAuth.getUnicodeHash(any(byte[].class))).thenReturn(new byte[24]);
            when(mockAuth.getName()).thenReturn("testuser");
            when(mockAuth.getDomain()).thenReturn("TESTDOMAIN");
    
            setupAndX = new SmbComSessionSetupAndX(mockSession, mockAndx, mockAuth);
        }
    
        @Test
        void testConstructor() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java

            // Test with very long URLs
            StringBuilder longParentUrl = new StringBuilder("http://example.com/");
            StringBuilder longUrl = new StringBuilder("http://example.com/");
            for (int i = 0; i < 100; i++) {
                longParentUrl.append("parent/");
                longUrl.append("child/");
            }
    
            ContentNotFoundException exception = new ContentNotFoundException(longParentUrl.toString(), longUrl.toString());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top