Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 426 for Expired (0.11 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AccessTimeoutTarget.java

            runningThread = thread;
            running.set(true);
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.seasar.extension.timer.TimeoutTarget#expired()
         */
        @Override
        public void expired() {
            int count = 0;
            while (running.get() && count < MAX_LOOP_COUNT) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Interrupt {}", runningThread);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/time/sleep.go

    //
    // Before Go 1.23, the garbage collector did not recover
    // timers that had not yet expired or been stopped, so code often
    // immediately deferred t.Stop after calling NewTimer, to make
    // the timer recoverable when it was no longer needed.
    // As of Go 1.23, the garbage collector can recover unreferenced
    // timers, even if they haven't expired or been stopped.
    // The Stop method is no longer necessary to help the garbage collector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. pkg/test/loadbalancersim/timer/queue.go

    	}()
    
    	// Reset the timer.
    	if needReset {
    		q.timer.Reset(resetDuration)
    	}
    }
    
    func (q *Queue) onTimerExpired() {
    	// Collect all expired timers.
    	q.mutex.Lock()
    	handlers := q.heap.advanceTo(time.Now())
    	q.mutex.Unlock()
    
    	// Call the expired timer handlers.
    	for _, h := range handlers {
    		h()
    	}
    
    	// Reset the timer based on the earliest deadline.
    	q.resetTimer()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutorTest.groovy

            def cachedResult = Mock(ModuleComponentResolveMetadata)
            Multimap<String, ImplicitInputRecord<?, ?>> implicits = HashMultimap.create()
            def record = Mock(ImplicitInputRecord)
            if (expired) {
                implicits.put('SomeService', record)
            }
            def cachedEntry = new CrossBuildCachingRuleExecutor.CachedEntry<ComponentMetadata>(0, implicits, cachedResult)
            def ruleServices = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. security/pkg/util/certutil_test.go

    			// The cert expires at 2017-08-24 19:00:40 +0000 UTC, so the grace period starts at 2017-08-24 07:00:40 +0000 UTC
    			// The wait time is the duration from fake now to the grace period start time, which is 10h39s (36039s).
    			cert:             testCert,
    			now:              time.Date(2017, time.August, 23, 21, 0, 0, 40, time.UTC),
    			expectedWaitTime: 36039,
    		},
    		"Cert expired": {
    			// Now = 2017-08-25 21:00:40 +0000 UTC.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/crypto/x509/platform_test.go

    			},
    			time:        now.Add(time.Hour * 2),
    			expectedErr: "x509: certificate has expired or is not yet valid",
    		},
    		{
    			name: "expired (past)",
    			cert: &Certificate{
    				SerialNumber: big.NewInt(1),
    				DNSNames:     []string{"valid.testing.golang.invalid"},
    				NotBefore:    now.Add(-time.Hour),
    				NotAfter:     now.Add(time.Hour),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 17:18:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/HealthExpirationStrategyTest.groovy

            true
        )
        GarbageCollectionStats aboveMetaspaceThreshold = stats(
            strategy.getNonHeapUsageThreshold() + 1,
            1,
            true
        )
    
        def "daemon is not expired when memory stats are below threshold" () {
            given:
            def underTest = new HealthExpirationStrategy(
                health(belowThreshold, belowThreshold),
                strategy
            )
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	clock.Step(1 * time.Second)
    	ret = target.popExpiredWatchersThreadUnsafe()
    	if len(ret) != 1 || len(ret[0]) != 1 {
    		t.Fatalf("expected only one watcher to be expired")
    	}
    	if !target.addWatcherThreadUnsafe(ret[0][0]) {
    		t.Fatal("failed adding an even to the watcher")
    	}
    
    	// after 29 seconds the watcher is still expired
    	clock.Step(29 * time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. src/runtime/netpoll_windows.go

    		default:
    			println("runtime: GetQueuedCompletionStatusEx returned net_op with invalid key=", e.key)
    			throw("runtime: netpoll failed")
    		}
    	}
    	return toRun, delta
    }
    
    // netpollQueueTimer queues a timer to wake up the poller after the given delay.
    // It returns true if the timer expired during this call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

                get() = "cached version information for $displayName has expired"
        }
    
        class ChangingModule(
            val displayName: String,
            expireAt: Long
        ) : ChangingDependencyResolutionValue(expireAt) {
            override val reason: String
                get() = "cached artifact information for $displayName has expired"
        }
    
        data class SystemPropertiesPrefixedBy(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top