Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for eol (0.14 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

        private static final Pattern TAG = Pattern.compile("(?s)\\{@.+?\\}");
        private static final Pattern END_TAG_NAME = Pattern.compile("(?s)\\s|}");
        private static final Pattern WHITESPACE_WITH_EOL = Pattern.compile("(?s)\\s+");
        private static final String START_HTML_COMMENT = "<!--";
        private static final String END_HTML_COMMENT = "-->";
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

            StringBuffer input = new StringBuffer();
            int c = -1;
            boolean eol = false;
    
            while (!eol) {
                switch( c = read() ) {
                    case -1:
                    case '\n':
                        eol = true;
                        break;
                    case '\r':
                        eol = true;
                        long cur = fp;
                        if( read() != '\n' ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbRandomAccessFile.java

            StringBuffer input = new StringBuffer();
            int c = -1;
            boolean eol = false;
    
            while ( !eol ) {
                switch ( c = read() ) {
                case -1:
                case '\n':
                    eol = true;
                    break;
                case '\r':
                    eol = true;
                    long cur = this.fp;
                    if ( read() != '\n' ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/PlexusContainerDefaultDependenciesValidator.java

                        PluginValidationManager.IssueLocality.EXTERNAL,
                        session,
                        pluginArtifact,
                        "Plugin depends on plexus-container-default, which is EOL");
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 26 16:22:12 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ntlmssp/av/AvPair.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.ntlmssp.av;
    
    
    /**
     * @author mbechler
     *
     */
    public class AvPair {
    
        /**
         * EOL type
         */
        public static final int MsvAvEOL = 0x0;
    
        /**
         * Flags type
         */
        public static final int MsvAvFlags = 0x6;
    
        /**
         * Timestamp type
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            }
            final Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
            cal.set(2025, 10 - 1, 1); // EOL Date
            eolTime = cal.getTimeInMillis();
            if (isEoled()) {
                logger.error("Your system is out of support. See https://fess.codelibs.org/eol.html");
            }
            updateSystemProperties();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    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)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                        session,
                        mojoDescriptor,
                        mojo.getClass(),
                        "Mojo implements `Contextualizable` interface from Plexus Container, which is EOL.");
            }
    
            XmlNode dom = mojoExecution.getConfiguration() != null
                    ? mojoExecution.getConfiguration().getDom()
                    : null;
    
            PlexusConfiguration pomConfiguration;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String ONLINE_HELP_INSTALLATION = "online.help.installation";
    
        /** The key of the configuration. e.g. https://fess.codelibs.org/{lang}/eol.html */
        String ONLINE_HELP_EOL = "online.help.eol";
    
        /** The key of the configuration. e.g. failureurl */
        String ONLINE_HELP_NAME_FAILUREURL = "online.help.name.failureurl";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_development_mode_warning = "{labels.development_mode_warning}";
    
        /** The key of the message: Your system is out of support. See EOL page. */
        public static final String LABELS_eol_error = "{labels.eol_error}";
    
        /** The key of the message: Search View */
        public static final String LABELS_tooltip_search_view = "{labels.tooltip_search_view}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top