Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for getLocalAddr (0.56 sec)

  1. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            }
    
            @Override
            public String getLocalName() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public String getLocalAddr() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public int getLocalPort() {
                throw new UnsupportedOperationException();
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

                    return 0;
                }
    
                @Override
                public String getLocalName() {
                    return null;
                }
    
                @Override
                public String getLocalAddr() {
                    return null;
                }
    
                @Override
                public int getLocalPort() {
                    return 0;
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         */
        int getLocalPort();
    
        /**
         *
         * Property {@code jcifs.smb.client.laddr} (string)
         *
         * @return local address to use for outgoing connections
         */
        InetAddress getLocalAddr();
    
        /**
         *
         * Property {@code jcifs.netbios.hostname} (string)
         *
         * @return local NETBIOS/short name to announce
         */
        String getNetbiosHostname();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            return this.random;
        }
    
        @Override
        public String getNetbiosHostname() {
            return this.netbiosHostname;
        }
    
        @Override
        public InetAddress getLocalAddr() {
            return this.smbLocalAddress;
        }
    
        @Override
        public int getLocalPort() {
            return this.smbLocalPort;
        }
    
        @Override
        public int getConnTimeout() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top