Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for EXPIRES (0.19 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java

        public String permissions;
    
        @Size(max = 10000)
        public String parameterName;
    
        @Pattern(regexp = "[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]T[0-9][0-9]:[0-9][0-9]:[0-9][0-9]")
        public String expires;
    
        @Size(max = 1000)
        public String createdBy;
    
        @ValidateTypeFailure
        public Long createdTime;
    
        public void initialize() {
            crudMode = CrudMode.CREATE;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/NotMostRecentlyUsedDaemonExpirationStrategyTest.groovy

        def "does not expire when there is only one daemon"() {
            given:
            DaemonInfo d1 = registerDaemon(Idle)
    
            expect:
            !wouldExpire(d1)
        }
    
        def "expires given more than 1 daemon"() {
            given:
            DaemonInfo d1 = registerDaemon(Idle)
            DaemonInfo d2 = registerDaemon(Idle)
    
            expect:
            wouldExpire(d1)
            !wouldExpire(d2)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/time/internal_test.go

    //
    // This test has to be in internal_test.go since it fiddles with
    // unexported data structures.
    func CheckRuntimeTimerPeriodOverflow() {
    	// We manually create a runtimeTimer with huge period, but that expires
    	// immediately. The public Timer interface would require waiting for
    	// the entire period before the first update.
    	t := newTimer(runtimeNano(), 1<<63-1, empty, nil, nil)
    	defer t.Stop()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/AnyDaemonExpirationStrategy.java

    import java.util.List;
    
    import static org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus.DO_NOT_EXPIRE;
    import static org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus.highestPriorityOf;
    
    /**
     * Expires the daemon if any of the children would expire the daemon.
     */
    public class AnyDaemonExpirationStrategy implements DaemonExpirationStrategy {
        private Iterable<DaemonExpirationStrategy> expirationStrategies;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/CompatibleDaemonExpirationStrategyTest.groovy

        def setup() {
            // Start with a new registry on each test.
            _ * compatibilitySpec.isSatisfiedBy(_) >> { DaemonContext context -> context in compatibleWithCurrent }
        }
    
        def "expires compatible daemons"() {
            given:
            DaemonInfo d1 = registerDaemon(Idle)
            DaemonInfo d2 = registerDaemon(Idle)
    
            when:
            compatible = [ d1, d2 ]
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/AllDaemonExpirationStrategy.java

    import java.util.List;
    
    import static org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus.DO_NOT_EXPIRE;
    import static org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus.highestPriorityOf;
    
    /**
     * Expires the daemon only if all children would expire the daemon.
     */
    public class AllDaemonExpirationStrategy implements DaemonExpirationStrategy {
        private Iterable<DaemonExpirationStrategy> expirationStrategies;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. pkg/apis/abac/types.go

    	Namespace string
    
    	// NonResourcePath matches non-resource request paths.
    	// "*" matches all paths
    	// "/foo/*" matches all subpaths of foo
    	NonResourcePath string
    
    	// TODO: "expires" string in RFC3339 format.
    
    	// TODO: want a way to allow some users to restart containers of a pod but
    	// not delete or modify it.
    
    	// TODO: want a way to allow a controller to create a pod based only on a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  8. pkg/kube/controllers/queue.go

    	q.queue.Forget(key)
    	return true
    }
    
    // WaitForClose blocks until the Instance has stopped processing tasks or the timeout expires.
    // If the timeout is zero, it will wait until the queue is done processing.
    // WaitForClose an error if the timeout expires.
    func (q Queue) WaitForClose(timeout time.Duration) error {
    	closed := q.Closed()
    	if timeout == 0 {
    		<-closed
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/k8sleaderelection/healthzadaptor.go

    }
    
    // NewLeaderHealthzAdaptor creates a basic healthz adaptor to monitor a leader election.
    // timeout determines the time beyond the lease expiry to be allowed for timeout.
    // checks within the timeout period after the lease expires will still return healthy.
    func NewLeaderHealthzAdaptor(timeout time.Duration) *HealthzAdaptor {
    	result := &HealthzAdaptor{
    		timeout: timeout,
    	}
    	return result
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/log/nflog.go

    		iptablesTrace.Warnf("log failed: %v", e)
    		return 0
    	})
    	if err != nil {
    		log.Errorf("failed to register nflog callback: %v", err)
    		return
    	}
    
    	// Block util the context expires
    	<-ctx.Done()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top