Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for classes (0.21 sec)

  1. dbflute_fess/_readme.txt

    manage.bat(sh) => 23 (generate):
    A execution command of Generate task
    which generates classes corresponding your tables,
    for example, entities, condition-beans to specified
    directories by DBFlute properties on "dfprop" directory.
    
    Generated structures (directories and classes) are like this:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    allcommon : classes bridging to DBFlute Runtime
    bsbhv     : base behaviors
    bsentity  : base entities
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.5K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/basicInfoMap.dfprop

        #  All classes are target.
        #
        #; classAuthor = DBFlute(AutoGenerator)
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o sourceFileEncoding: (NotRequired - Default 'UTF-8')
        #  The value of an encoding for source files that are generated classes.
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.2K bytes
    - Viewed (0)
  3. .gitignore

    /target/
    /work/
    /bin/
    /mydbflute/
    /solr/data/
    /src/main/webapp/WEB-INF/classes/
    /src/main/webapp/WEB-INF/lib/
    /src/main/webapp/WEB-INF/site/
    /src/main/webapp/WEB-INF/plugin/
    /src/main/webapp/WEB-INF/env/crawler/lib/
    /src/main/webapp/WEB-INF/env/suggest/lib/
    /src/main/webapp/WEB-INF/env/thumbnail/lib/
    /src/main/webapp/WEB-INF/thumbnails/
    /src/main/webapp/jar/
    /dbflute_fess/extlib/*
    /dbflute_fess/log/*.log
    /dbflute_h2/log/*.log
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 17 01:48:33 GMT 2022
    - 983 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

            buf.append("},");
            final Classes classes = jvmStats.getClasses();
            buf.append("\"classes\":{");
            append(buf, "loaded", () -> classes.getLoadedClassCount()).append(',');
            append(buf, "total_loaded", () -> classes.getTotalLoadedClassCount()).append(',');
            append(buf, "unloaded", () -> classes.getUnloadedClassCount());
            buf.append("},");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            }
            return org.codelibs.core.io.ResourceUtil.getResourceAsFile(String.join("/", names)).toPath();
        }
    
        public static Path getClassesPath(final String... names) {
            return getPath("WEB-INF/", "classes", names);
        }
    
        public static Path getOrigPath(final String... names) {
            return getPath("WEB-INF/", "orig", names);
        }
    
        public static Path getMailTemplatePath(final String... names) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

                                    && (attributes.get("Fess-WebAppJar") != null || attributes.getValue("Fess-WebAppJar") != null)) {
                                createWebResourceSet(ResourceSetType.CLASSES_JAR, "/WEB-INF/classes", possibleJar.getURL(), "/");
                            }
                        }
                    } catch (final Exception e) {
                        logger.log(Level.WARNING, e, () -> {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

            buf.append(cpSeparator);
            // WEB-INF/classes
            buf.append("WEB-INF");
            buf.append(File.separator);
            buf.append("classes");
            // target/classes
            final String userDir = System.getProperty("user.dir");
            final File targetDir = new File(userDir, "target");
            final File targetClassesDir = new File(targetDir, "classes");
            if (targetClassesDir.isDirectory()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String LDAP_ADMIN_USER_BASE_DN = "ldap.admin.user.base.dn";
    
        /** The key of the configuration. e.g. organizationalPerson,top,person,inetOrgPerson */
        String LDAP_ADMIN_USER_OBJECT_CLASSES = "ldap.admin.user.object.classes";
    
        /** The key of the configuration. e.g. cn=%s */
        String LDAP_ADMIN_ROLE_FILTER = "ldap.admin.role.filter";
    
        /** The key of the configuration. e.g. ou=Role,dc=fess,dc=codelibs,dc=org */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  9. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #  But you can specify the '@gen' suffix that means generate-only except.
            #  A table with the mark can be treated as documents but no generating classes.
            #
            #; tableExceptList = list:{FOO_TABLE@gen ; prefix:FOO_@gen ; suffix:_FOO ; contain:_FOO_}
    
            # o tableTargetList: (NotRequired - Default list:{})
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 7.3K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/adminlte.min.css.map

    {\n  background-color: #ffffff;\n  border-color: #dee2e6;\n}\n\n[class*=\"accent-\"] a.btn-primary {\n  color: #ffffff;\n}\n\n[class*=\"accent-\"] a.btn-secondary {\n  color: #ffffff;\n}\n\n[class*=\"accent-\"] a.btn-success {\n  color: #ffffff;\n}\n\n[class*=\"accent-\"] a.btn-info {\n  color: #ffffff;\n}\n\n[class*=\"accent-\"] a.btn-warning {\n  color: #1F2D3D;\n}\n\n[class*=\"accent-\"] a.btn-danger {\n  color: #ffffff;\n}\n\n[class*=\"accent-\"] a.btn-light {\n  color: #1F2D3D;\n}\n\n[class*=\"accent-\"]...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 2M bytes
    - Viewed (0)
Back to top