Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for unknown (0.15 sec)

  1. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                                roleList.add(id);
                            } else {
                                if (logger.isDebugEnabled()) {
                                    logger.debug("unknown @odata.type: {}", memberOf);
                                }
                                groupList.add(id);
                            }
                            processParentGroup(user, groupList, roleList, id);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/Lmhosts.java

                    addr = new NbtAddress( name, ip, false, NbtAddress.B_NODE,
                                        false, false, true, true,
                                        NbtAddress.UNKNOWN_MAC_ADDRESS );
                    TAB.put( name, addr );
                }
            }
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/NameServiceClient.java

         * @return local host address
         */
        NetbiosAddress getLocalHost ();
    
    
        /**
         * @return the local host name
         */
        NetbiosName getLocalName ();
    
    
        /**
         * @return the unknown name
         */
        NetbiosName getUnknownName ();
    
    
        /**
         * Retrieve all addresses of a host by it's address. NetBIOS hosts can
         * have many names for a given IP address. The name and IP address make the
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/Name.java

            if ( name instanceof Name ) {
                this.srcHashCode = ( (Name) name ).srcHashCode;
            }
        }
    
    
        /**
         * 
         * @return whether this is the unknown address
         */
        public boolean isUnknown () {
            return "0.0.0.0".equals(this.name) && this.hexCode == 0 && this.scope == null;
        }
    
    
        int writeWireFormat ( byte[] dst, int dstIndex ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                        // deleted file
                        deleteDocument(localParams, dataMap);
                    } else {
                        logger.warn("unknown event: {}, data: {}", eventType, dataMap);
                    }
                } finally {
                    if (keyObj != null) {
                        crawlerStatsHelper.done(keyObj);
                    }
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/main/resources/CLMessages.properties

    ECL0114=NoSuchAlgorithmException occurred, because {0}
    ECL0115=Failed to set accessible to the field: {0}
    ECL0116=Failed to set accessible to the method: {0}
    
    WCL0013=Protocol of URL({1}) corresponding to route package({0}) is unknown.
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

                if (entity.getTerm().startsWith(regexPrefix)) {
                    final String regex = entity.getTerm().substring(regexPrefix.length());
                    if (StringUtil.isBlank(regex)) {
                        logger.warn("Unknown regex pattern: {}", entity.getTerm());
                    } else {
                        pair.getSecond().add(new Pair<>(Pattern.compile(regex), entity.getContent()));
                    }
                } else {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            }
            try {
                return InetAddress.getLocalHost().getHostAddress();
            } catch (final UnknownHostException e) {
                logger.debug("Unknown hostname.", e);
            }
            return "Unknown";
        }
    
        public void setupAdminHtmlData(final TypicalAction action, final ActionRuntime runtime) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  9. src/packaging/common/scripts/postrm

            REMOVE_SERVICE=true
            REMOVE_USER_AND_GROUP=true
        ;;
        1)
            # If $1=1 this is an upgrade
            IS_UPGRADE=true
        ;;
    
        *)
            echo "post remove script called with unknown argument \`$1'" >&2
            exit 1
        ;;
    esac
    
    # Sets the default values for fess variables used in this script
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                userInfoBhv.delete(userInfo);
            } else if (e instanceof final SearchLog searchLog) {
                searchLogBhv.delete(searchLog);
            } else {
                throw new FessSystemException("Unknown log entity: " + e);
            }
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
Back to top