Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for dom (0.17 sec)

  1. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.helper.PluginHelper;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.ResourceUtil;
    import org.w3c.dom.Document;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    
    public class DataStoreFactory {
        private static final Logger logger = LogManager.getLogger(DataStoreFactory.class);
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/SidTest.java

            assertEquals(getRequiredProperty(TestProperties.TEST_USER_DOMAIN_SHORT), s.getDomainName());
            assertEquals(getRequiredProperty(TestProperties.TEST_GROUP_NAME), s.getAccountName());
            assertEquals(jcifs.SID.SID_TYPE_DOM_GRP, s.getType());
        }
    
    
        @Test
        public void resolveWellKnownUsers () throws IOException {
            SID domsid = new SID(getRequiredProperty(TestProperties.TEST_DOMAIN_SID));
            int rids[] = new int[] {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/xml/DomUtilTest.java

     */
    package org.codelibs.core.xml;
    
    import javax.xml.parsers.DocumentBuilder;
    
    import junit.framework.TestCase;
    
    import org.codelibs.core.io.ResourceUtil;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    
    /**
     * @author higa
     *
     */
    public class DomUtilTest extends TestCase {
    
        /**
         * @throws Exception
         */
        public void testGetContentsAsStream() throws Exception {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/PluginHelper.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.ResourceUtil;
    import org.lastaflute.di.exception.IORuntimeException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.SAXException;
    
    import com.fasterxml.jackson.databind.ObjectMapper;
    import com.fasterxml.jackson.dataformat.yaml.YAMLMapper;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SambaHelper.java

        private static final Logger logger = LogManager.getLogger(SambaHelper.class);
    
        public static final int SID_TYPE_ALIAS = 4;
    
        public static final int SID_TYPE_DELETED = 6;
    
        public static final int SID_TYPE_DOM_GRP = 2;
    
        public static final int SID_TYPE_DOMAIN = 3;
    
        public static final int SID_TYPE_INVALID = 7;
    
        public static final int SID_TYPE_UNKNOWN = 8;
    
        public static final int SID_TYPE_USE_NONE = 0;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/DfsImpl.java

            if ( tf.getConfig().isDfsDisabled() )
                return null;
            String dom = domain.toLowerCase(Locale.ROOT);
            synchronized ( this.dcLock ) {
                CacheEntry<DfsReferralDataInternal> ce = this.dcCache.get(dom);
                if ( ce != null && System.currentTimeMillis() > ce.expiration ) {
                    ce = null;
                }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/PrunedTag.java

    import org.apache.commons.lang3.StringUtils;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.stream.StreamUtil;
    import org.codelibs.fess.exception.FessSystemException;
    import org.w3c.dom.Node;
    
    public class PrunedTag {
        private final String tag;
        private String id;
        private String css;
        private String attrName;
        private String attrValue;
    
        public PrunedTag(final String tag) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/popper.min.js.map

    placements;\n\n  static Defaults = Defaults;\n}\n\n/**\n * The `referenceObject` is an object that provides an interface compatible with Popper.js\n * and lets you use it as replacement of a real DOM node.<br />\n * You can use this method to position a popper relatively to a set of coordinates\n * in case you don't have a DOM node to use as reference.\n *\n * ```\n * new Popper(referenceObject, popperNode);\n * ```\n *\n * NB: This feature isn't supported in Internet Explorer 10.\n * @name referenceObject\n...
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 121K bytes
    - Viewed (2)
  9. src/main/java/jcifs/SID.java

         */
        public static final int SID_TYPE_USE_NONE = 0;
    
        /**
         * 
         */
        public static final int SID_TYPE_USER = 1;
    
        /**
         * 
         */
        public static final int SID_TYPE_DOM_GRP = 2;
    
        /**
         * 
         */
        public static final int SID_TYPE_DOMAIN = 3;
    
        /**
         * 
         */
        public static final int SID_TYPE_ALIAS = 4;
    
        /**
         * 
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

            }
            this.pathConsumed -= i;
        }
    
    
        @Override
        public void fixupDomain ( String dom ) {
            String s = getServer();
            if ( s.indexOf('.') < 0 && s.toUpperCase(Locale.ROOT).equals(s) ) {
                String fqdn = s + "." + dom;
                if ( log.isDebugEnabled() ) {
                    log.debug(String.format("Applying DFS netbios name hack %s -> %s ", s, fqdn));
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
Back to top