Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,347 for VERSION (0.19 sec)

  1. src/main/java/org/codelibs/fess/util/JvmUtil.java

            final String javaVersion = System.getProperty("java.version");
            int version = 8;
            if (javaVersion != null) {
                final String[] split = javaVersion.split("[\\._]");
                if (split.length > 0) {
                    version = Integer.parseInt(split[0]);
                    if (version == 1 && split.length > 1) {
                        version = Integer.parseInt(split[1]);
                    }
                }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/exentity/UserInfo.java

        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        @Override
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        public String getLogMessage() {
            return getId();
        }
    
        public LocalDateTime getRequestedAt() {
            return getUpdatedAt();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/exentity/FavoriteLog.java

        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        @Override
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        public void addField(final String key, final Object value) {
            fields.put(key, value);
        }
    
        public String getLogMessage() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

                return this;
            }
    
            public String id() {
                return id;
            }
    
            public DocMeta version(Long version) {
                this.version = version;
                return this;
            }
    
            public Long version() {
                return version;
            }
    
            public DocMeta seqNo(Long seqNo) {
                this.seqNo = seqNo;
                return this;
            }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/PathMapping.java

        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        public String process(final PathMappingHelper pathMappingHelper, final String input) {
            if (regexPattern == null) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/test/resources/plugin/repo1/fess-ds-atlassian/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata>
        <groupId>org.codelibs.fess</groupId>
        <artifactId>fess-ds-atlassian</artifactId>
        <versioning>
            <latest>13.2.0</latest>
            <release>13.2.0</release>
            <versions>
                <version>12.2.0</version>
                <version>12.5.0</version>
                <version>12.6.0</version>
                <version>12.7.0</version>
                <version>13.0.0</version>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 13 07:34:14 GMT 2019
    - 606 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            protected final String version;
            protected final String url;
    
            public Artifact(final String name, final String version, final String url) {
                this.name = name;
                this.version = version;
                this.url = url;
            }
    
            public Artifact(final String name, final String version) {
                this(name, version, null);
            }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin.jsp

                                                                                    <input type="hidden" name="version"
                                                                                           value="${f:h(artifact.version)}">
                                                                                    <button type="submit"
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 10.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

    /*
     * Copyright 2012-2024 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
Back to top