Home
last modified time | relevance | path

Searched refs:lastUpdate (Results 1 – 25 of 1351) sorted by relevance

12345678910>>...55

/dports/security/softether-devel/v4.36-9754/src/BuildUtil/CoreUtil/
H A DReadIni.cs122 DateTime lastUpdate; field in CoreUtil.IniCache.IniCacheEntry
125 get { return lastUpdate; }
134 public IniCacheEntry(DateTime lastUpdate, Dictionary<string, string> datas) in IniCacheEntry() argument
136 this.lastUpdate = lastUpdate; in IniCacheEntry()
141 public static Dictionary<string, string> GetCache(string filename, DateTime lastUpdate) in GetCache() argument
148 if (e.LastUpdate == lastUpdate || lastUpdate.Ticks == 0) in GetCache()
173 caches.Add(filename, new IniCacheEntry(lastUpdate, datas)); in AddCache()
238 DateTime lastUpdate = new DateTime(0); in init()
242 lastUpdate = IO.GetLastWriteTimeUtc(filename); in init()
244 datas = IniCache.GetCache(filename, lastUpdate); in init()
[all …]
/dports/security/softether/v4.38-9760/src/BuildUtil/CoreUtil/
H A DReadIni.cs122 DateTime lastUpdate; field in CoreUtil.IniCache.IniCacheEntry
125 get { return lastUpdate; }
134 public IniCacheEntry(DateTime lastUpdate, Dictionary<string, string> datas) in IniCacheEntry() argument
136 this.lastUpdate = lastUpdate; in IniCacheEntry()
141 public static Dictionary<string, string> GetCache(string filename, DateTime lastUpdate) in GetCache() argument
148 if (e.LastUpdate == lastUpdate || lastUpdate.Ticks == 0) in GetCache()
173 caches.Add(filename, new IniCacheEntry(lastUpdate, datas)); in AddCache()
238 DateTime lastUpdate = new DateTime(0); in init()
242 lastUpdate = IO.GetLastWriteTimeUtc(filename); in init()
244 datas = IniCache.GetCache(filename, lastUpdate); in init()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/gnu/javax/crypto/assembly/
H A DAssembly.java201 public byte[] lastUpdate() throws TransformerException in lastUpdate() method in Assembly
203 return lastUpdate(new byte[0], 0, 0); in lastUpdate()
218 public byte[] lastUpdate(byte b) throws TransformerException in lastUpdate() method in Assembly
220 return lastUpdate(new byte[] { b }, 0, 1); in lastUpdate()
235 public byte[] lastUpdate(byte[] in) throws TransformerException in lastUpdate() method in Assembly
237 return lastUpdate(in, 0, in.length); in lastUpdate()
254 public byte[] lastUpdate(byte[] in, int offset, int length) in lastUpdate() method in Assembly
259 byte[] result = head.lastUpdate(in, offset, length); in lastUpdate()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/gnu/javax/crypto/assembly/
H A DAssembly.java201 public byte[] lastUpdate() throws TransformerException in lastUpdate() method in Assembly
203 return lastUpdate(new byte[0], 0, 0); in lastUpdate()
218 public byte[] lastUpdate(byte b) throws TransformerException in lastUpdate() method in Assembly
220 return lastUpdate(new byte[] { b }, 0, 1); in lastUpdate()
235 public byte[] lastUpdate(byte[] in) throws TransformerException in lastUpdate() method in Assembly
237 return lastUpdate(in, 0, in.length); in lastUpdate()
254 public byte[] lastUpdate(byte[] in, int offset, int length) in lastUpdate() method in Assembly
259 byte[] result = head.lastUpdate(in, offset, length); in lastUpdate()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/gnu/javax/crypto/assembly/
H A DAssembly.java201 public byte[] lastUpdate() throws TransformerException in lastUpdate() method in Assembly
203 return lastUpdate(new byte[0], 0, 0); in lastUpdate()
218 public byte[] lastUpdate(byte b) throws TransformerException in lastUpdate() method in Assembly
220 return lastUpdate(new byte[] { b }, 0, 1); in lastUpdate()
235 public byte[] lastUpdate(byte[] in) throws TransformerException in lastUpdate() method in Assembly
237 return lastUpdate(in, 0, in.length); in lastUpdate()
254 public byte[] lastUpdate(byte[] in, int offset, int length) in lastUpdate() method in Assembly
259 byte[] result = head.lastUpdate(in, offset, length); in lastUpdate()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/gnu/javax/crypto/assembly/
H A DAssembly.java201 public byte[] lastUpdate() throws TransformerException in lastUpdate() method in Assembly
203 return lastUpdate(new byte[0], 0, 0); in lastUpdate()
218 public byte[] lastUpdate(byte b) throws TransformerException in lastUpdate() method in Assembly
220 return lastUpdate(new byte[] { b }, 0, 1); in lastUpdate()
235 public byte[] lastUpdate(byte[] in) throws TransformerException in lastUpdate() method in Assembly
237 return lastUpdate(in, 0, in.length); in lastUpdate()
254 public byte[] lastUpdate(byte[] in, int offset, int length) in lastUpdate() method in Assembly
259 byte[] result = head.lastUpdate(in, offset, length); in lastUpdate()
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/gnu/javax/crypto/assembly/
H A DAssembly.java201 public byte[] lastUpdate() throws TransformerException in lastUpdate() method in Assembly
203 return lastUpdate(new byte[0], 0, 0); in lastUpdate()
218 public byte[] lastUpdate(byte b) throws TransformerException in lastUpdate() method in Assembly
220 return lastUpdate(new byte[] { b }, 0, 1); in lastUpdate()
235 public byte[] lastUpdate(byte[] in) throws TransformerException in lastUpdate() method in Assembly
237 return lastUpdate(in, 0, in.length); in lastUpdate()
254 public byte[] lastUpdate(byte[] in, int offset, int length) in lastUpdate() method in Assembly
259 byte[] result = head.lastUpdate(in, offset, length); in lastUpdate()
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/core3/util/
H A DAverage.java46 private long lastUpdate; field in Average
61 this.lastUpdate = getEffectiveTime() / _refreshRate; in Average()
85 lastUpdate = getEffectiveTime() / refreshRate; in clear()
95 lastUpdate = ((Long)details[1]).longValue(); in cloneFrom()
101 return( new Object[]{ values, new Long( lastUpdate )} ); in getCloneDetails()
115 if (lastUpdate < timeFactor - nbElements) in update()
116 lastUpdate = timeFactor - nbElements - 1; in update()
122 for (long i = lastUpdate + 1; i <= timeFactor; i++) { in update()
131 lastUpdate = timeFactor; in update()
/dports/devel/hadoop/hadoop-1.2.1/src/hdfs/org/apache/hadoop/hdfs/protocol/
H A DDatanodeInfo.java44 protected long lastUpdate; field in DatanodeInfo
68 this.lastUpdate = from.getLastUpdate(); in DatanodeInfo()
80 this.lastUpdate = 0L; in DatanodeInfo()
95 final long lastUpdate, final int xceiverCount, in DatanodeInfo() argument
103 this.lastUpdate = lastUpdate; in DatanodeInfo()
144 public long getLastUpdate() { return lastUpdate; } in getLastUpdate()
160 public void setLastUpdate(long lastUpdate) { in setLastUpdate() argument
161 this.lastUpdate = lastUpdate; in setLastUpdate()
251 buffer.append(" " + new Date(lastUpdate)); in dumpDatanode()
371 out.writeLong(lastUpdate); in write()
[all …]
/dports/x11/kf5-kactivities-stats/kactivities-stats-5.89.0/autotests/quickcheck/tables/
H A DResourceScoreCache.h25 int lastUpdate; member
40 DECL_COLUMN(int, lastUpdate) in DECL_COLUMN()
48 if (acc.lastUpdate < item.lastUpdate) { in DECL_COLUMN()
49 acc.lastUpdate = item.lastUpdate; in DECL_COLUMN()
/dports/databases/prometheus-postgresql-adapter/prometheus-postgresql-adapter-0.6.0/vendor/github.com/prometheus/prometheus/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/net/gscloud/gscloud-0.11.0/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/security/vault/vault-1.8.2/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/hashicorp/consul/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/cli/cli-20.10.2/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/containerd/containerd/containerd-1.4.3/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/containerd/containerd/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/k8s.io/client-go/client-go-0.16.8/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/sysutils/consul/consul-1.10.3/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/sysutils/docker/docker-ce-18.09.5/components/cli/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/sysutils/chaoskube/chaoskube-0.22.0/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/net/concourse-fly/concourse-6.7.1/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/containerd/containerd/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/k8s.io/client-go/util/flowcontrol/
H A Dbackoff.go29 lastUpdate time.Time member
75 if !ok || hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
81 entry.lastUpdate = p.Clock.Now()
99 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
113 if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) {
116 return eventTime.Sub(entry.lastUpdate) < entry.backoff
126 if now.Sub(entry.lastUpdate) > p.maxDuration*2 {
147 func hasExpired(eventTime time.Time, lastUpdate time.Time, maxDuration time.Duration) bool {
148 …return eventTime.Sub(lastUpdate) > maxDuration*2 // consider stable if it's ok for twice the maxDu…

12345678910>>...55