Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for obj (0.13 sec)

  1. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

        @SuppressWarnings("unchecked")
        protected Set<RequestData> getAnchorSet(final Object obj) {
            List<String> anchorList;
            if (obj instanceof String) {
                anchorList = new ArrayList<>();
                anchorList.add(obj.toString());
            } else if (obj instanceof List<?>) {
                anchorList = (List<String>) obj;
            } else {
                return null;
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/UniAddress.java

         * if they are both <tt>UniAddress</tt>' and refer to the same IP address.
         */
        public boolean equals( Object obj ) {
            return obj instanceof UniAddress && addr.equals(((UniAddress)obj).addr);
        }
    /*
        public boolean equals( Object obj ) {
            return obj instanceof UniAddress && addr.hashCode() == obj.hashCode();
        }
    */
    
        /**
         * Guess first called name to try for session establishment. This
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                        log.trace("Interrupted", e);
                    }
                }
            }
            obj = getCachedAddress(name);
            if ( obj == null ) {
                synchronized ( this.inFlightLookups ) {
                    this.inFlightLookups.add(name);
                }
            }
    
            return obj;
        }
    
    
        private void updateLookupTable ( Name name ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * is based on the integer IP address and not the string representation.
     */ 
    
        public boolean equals( Object obj ) {
            return ( obj != null ) && ( obj instanceof NbtAddress ) &&
                                            ( ((NbtAddress)obj).address == address );
        }
    
    /** 
     * Returns the {@link java.lang.String} representaion of this address.
     */ 
    
        public String toString() {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

         * {@inheritDoc}
         *
         * @see java.lang.Object#equals(java.lang.Object)
         */
        @Override
        public boolean equals ( Object obj ) {
            if ( ! ( obj instanceof DfsReferralData ) ) {
                return false;
            }
            DfsReferralData other = (DfsReferralData) obj;
    
            return Objects.equals(getServer(), other.getServer()) && Objects.equals(getShare(), other.getShare())
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
  6. src/main/webapp/js/suggestor.js

                })
                  .done(function(obj) {
                    suggestor.createAutoCompleteList(obj);
                  })
                  .fail(function(a, obj, b) {
                    suggestingSts = false;
                    return;
                  });
              },
    
              createAutoCompleteList: function(obj) {
                if (typeof obj.record_count === "undefined") {
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 13.3K bytes
    - Viewed (2)
  7. src/main/java/jcifs/netbios/NbtAddress.java

         * is based on the integer IP address and not the string representation.
         */
    
        @Override
        public boolean equals ( Object obj ) {
            return ( obj != null ) && ( obj instanceof NbtAddress ) && ( ( (NbtAddress) obj ).address == this.address );
        }
    
    
        /**
         * Returns the {@link java.lang.String} representaion of this address.
         */
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

         *
         * @see java.lang.Object#equals(java.lang.Object)
         */
        @Override
        public boolean equals ( Object obj ) {
            if ( ! ( obj instanceof SmbResourceLocatorImpl ) ) {
                return false;
            }
    
            SmbResourceLocatorImpl o = (SmbResourceLocatorImpl) obj;
    
            /*
             * If uncertain, pathNamesPossiblyEqual returns true.
             * Comparing canonical paths is definitive.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            }
    
            @Override
            public int hashCode() {
                return parent.hashCode();
            }
    
            @Override
            public boolean equals(final Object obj) {
                return parent.equals(obj);
            }
    
            @Override
            public String toString() {
                return parent.toString();
            }
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/FieldUtil.java

         * @param field
         *            フィールド。{@literal null}であってはいけません
         * @param target
         *            表現されるフィールド値の抽出元オブジェクト。フィールドが{@literal static}の場合は
         *            {@literal null}
         * @return オブジェクト{@code obj}内で表現される値
         * @throws IllegalAccessRuntimeException
         *             基本となるフィールドにアクセスできない場合
         * @see Field#get(Object)
         */
        @SuppressWarnings("unchecked")
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.3K bytes
    - Viewed (0)
Back to top