A term used with respect to terminating the sale or support of products and services.
Questions tagged [end-of-life]
45 questions
3
votes
1 answer
How to read a file containing ctrl-Z when stdin is redirected from a file?
I have a line like this in my python script:
data = sys.stdin.read()
Then I run the script with file redirecting on Windows:
>> python test.py < binary_file
If binary_file contains \x1a (ctrl-Z) that is EOF in Windows, data will only have the…

yuwen
- 109
- 5
2
votes
1 answer
Does Oracle Cloud provide extended support for Databases like Oracle 11gR2 which has reached end of support
I wanted to know if Oracle 11gR2 database is migrated to Oracle cloud without upgrading the version, then does oracle cloud provide us with extended support, as oracle 11gR2 is reaching end of support on Dec 2020.
I found 4 methods for migrating…

Huda
- 21
- 2
2
votes
1 answer
Fortran error: "end of file" while reading character in namelist
I am writing a Fortran application, and I get this problem. When I define a namelist as following:
CHARACTER(100) :: INPUT_DIR, OUTPUT_DIR, ROOT_DIR
NAMELIST /IODIR/ INPUT_DIR, OUTPUT_DIR
and then I read IODIR from file as:
READ(FUNIT,IODIR,…

Hải Phạm Thanh
- 23
- 2
2
votes
4 answers
Using AWK to process two different files consecutively
I am trying to evaluate two files consecutively with awk. At the end of the first file I am reading a date and I use that date as input for the evaluation of the second file. Unfortunately I have some problems understanding how to detect the end of…

Alexander Cska
- 738
- 1
- 7
- 29
2
votes
4 answers
unexpected End of File error in if else statement
I keep getting unexpected End of file error while running a if else statement
#! /bin/bash
echo -e "1: Proband\n 2: mincount\n Enter an option:"
read promin
echo $promin
if ($promin == 1) then
echo -e "Enter the proband file name\n"
read…

Vignesh
- 912
- 6
- 13
- 24
1
vote
1 answer
How to upgrade Oracle Enterprise Manager Database Console without upgrade the database version itself?
Maybe the question is not so clear.
I'm not sure about the relations of these Oracle's components.
We have an Oracle 11g with an OEM dbconsole on it.
Is dbconsole and databse control are actualy the same thing?
Since Adobe Flash EOL arrived at…

user2671057
- 1,411
- 2
- 25
- 43
1
vote
0 answers
Jetty 8 blocking IO with slow clients
My understanding so far is Jetty 8(server) is based on servlet 3.0 which supports asynchronous processing but the socket IO is still blocking. So if there is a slow client processing a large response 10s of MB of size then its possible that the…

Bukhtawar
- 85
- 10
1
vote
1 answer
Does end of support of AngularJS mean applications will stop working in Chrome?
I understand that AngularJS will stop being supported in July 2021; after that date, some changes to jQuery etc. might cause AngularJS applications to stop working and AngularJS will not be updated.
I have an AngularJS-based application running in…

PiotrS
- 180
- 3
- 16
1
vote
0 answers
Java- does an opposite of Crtrl-D exist?
I'm using Scanner to read input to a textfile where I post Account info.
After this I'm supposed to do the same thing with Transaction info.
However after I finish putting in info for the account class, I press Ctrl-D, as one does, to indicate end…

Sarah Wadley
- 21
- 1
- 5
0
votes
0 answers
Jetty spikes in response time
The normal response time (GET request) amounts to around 50-100ms, but randomly on average every 10th request takes 1-1.5 seconds.
This is independent from the request library, server or network used, also in Chrome timing tab this behaviour is…

Mircea Golgu
- 23
- 1
- 5
0
votes
0 answers
How to start JMX with jetty-maven-plugin?
jetty-maven-plugin version is 9.3.27.v20190418.
I need a JMX running during integration tests to send request to MBeans, but while JMS is starting successfully, JMX does not seem to start, as it does not appear to be listening on the designated…

Restless Lizard
- 1
- 1
0
votes
0 answers
Jetty 6.1.26 QueuedThreadPool increase with high frequency and low concurrency
I have use jetty 6.1.26 to build a app service, and I set thread number 1000 like this.
QueuedThreadPool httpThreadPool = new QueuedThreadPool(1000);
server.setThreadPool(httpThreadPool);
And I also have another service, it use 4 threads…

hehe
- 173
- 3
- 13
0
votes
1 answer
Logback 1.3.0 and Jetty 9.4.50 having the compatibility issues
Logaback version 1.3.0 uses Javax-Servlet version 4.0.1.
In the same application, I am using Jetty 9.4.50, which uses javax-servlet 3.1.0.
When I load logback.xml locally, my application works successfully.
If I start the application through the…

Shubham Goswami
- 37
- 7
0
votes
1 answer
unable to create default RequestDispatcher
I have updated my KARAF version from 4.2.15 to 4.4.1 and Java from 8 to 11 in my application.
Gone through the official Release notes and updated some dependencies as well.
Upgraded OSGI-Core from 6.0.0 to 8.0.0.
Upgraded osgi.compendium 5.0.0 to…
0
votes
1 answer
What is the support duration or end of life for log4j1.x bridge jar. How long is the bridge library supported by apache?
For migrating Log4j 1.x to 2.x in java applications that still using Log4j 1.x API OR the application depends on a library which depends on the Log 1.x API. Apache recommends using the bridge jar.
log4j-api.jar
log4j-core.jar
log4j-1.2-api.jar…

Vishal Dosala
- 1
- 1