Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 192 for Expired (0.1 sec)

  1. security/pkg/pki/testdata/expired-cert.pem

    Zhonghu Xu <******@****.***> 1660661797 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 16 14:56:37 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. security/pkg/server/ca/monitoring.go

    		"The unix timestamp, in seconds, when Citadel root cert will expire. "+
    			"A negative time indicates the cert is expired.",
    	)
    	rootCertExpirySeconds = monitoring.NewDerivedGauge(
    		"citadel_server_root_cert_expiry_seconds",
    		"The time remaining, in seconds, before the root certificate will expire. "+
    			"A negative value indicates the cert is expired.",
    	)
    	certChainExpiryTimestamp = monitoring.NewGauge(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/interface.go

    //	|                |   |               +       |
    //	+----------------+   +-----------> Expired   +----> Deleted
    //	      Forget             Expire
    //
    // Note that an assumed pod can expire, because if we haven't received Add event notifying us
    // for a while, there might be some problems and we shouldn't keep the pod in cache anymore.
    //
    // Note that "Initial", "Expired", and "Deleted" pods do not actually exist in cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. pkg/controlplane/controller/apiserverleasegc/gc_controller_test.go

    					LeaseDurationSeconds: pointer.Int32Ptr(10),
    					RenewTime:            &metav1.MicroTime{Time: fakeClock.Now().Add(-time.Minute)},
    				},
    			},
    			expectDeleted: false,
    		},
    		{
    			name: "lease expired due to expired renew time",
    			lease: &coordinationv1.Lease{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "kube-apiserver-12345",
    					Namespace: metav1.NamespaceSystem,
    					Labels: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 20:37:22 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/gateway-secrets-validation.yaml

    kind: Secret
    metadata:
      name: expired-secret
      namespace: istio-system
    type: kubernetes.io/tls
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: defaultgateway-expired
    spec:
      selector:
        istio: ingressgateway # use istio default ingress gateway, so we expect the credential in istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcConnectionMonitorTarget.java

        /*
         * (non-Javadoc)
         *
         * @see org.seasar.extension.timer.TimeoutTarget#expired()
         */
        @Override
        public void expired() {
            if (clientConnectionManager == null) {
                logger.warn("clientConnectionManager is null.");
                return;
            }
    
            try {
                // Close expired connections
                clientConnectionManager.closeExpiredConnections();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. cmd/data-scanner_test.go

    	es.workers.Store(&workers)
    	globalExpiryState = es
    	var wg sync.WaitGroup
    	wg.Add(1)
    	expired := make([]ObjectToDelete, 0, 5)
    	go func() {
    		defer wg.Done()
    		workers := globalExpiryState.workers.Load()
    		for t := range (*workers)[0] {
    			if t, ok := t.(newerNoncurrentTask); ok {
    				expired = append(expired, t.versions...)
    			}
    		}
    	}()
    	lc := lifecycle.Lifecycle{
    		Rules: []lifecycle.Rule{
    			{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 11:18:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonExpirationIntegrationTest.groovy

            ['a', 'b'].each { file("$it/src/main/java/p/Type.java") << 'package p; class Type {}' }
        }
    
        def "expire worker daemons to free system memory"() {
            when:
            withDebugLogging()
            succeeds 'expireWorkers'
    
            then:
            outputContains 'Worker Daemon(s) expired to free some system memory'
        }
    
        def "worker daemons expiration can be disabled using a system property"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring.go

    }
    
    // Set sets a key/value/expiry entry in the map, overwriting any previous entry
    // with the same key. The entry expires at the given expiry time, but its TTL
    // may be lengthened or shortened by additional calls to Set(). Garbage
    // collection of expired entries occurs during calls to Set(), however calls to
    // Get() will not return expired entries that have not yet been garbage
    // collected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/k8sleaderelection/healthzadaptor_test.go

    		{
    			description:    "call check before leader elector initialized",
    			expected:       nil,
    			adaptorTimeout: time.Second * 20,
    			elector:        nil,
    		},
    		{
    			description:    "call check when the lease is far expired",
    			expected:       fmt.Errorf("failed election to renew leadership on lease %s", "foo"),
    			adaptorTimeout: time.Second * 20,
    			elector: &LeaderElector{
    				config: LeaderElectionConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 18:41:53 UTC 2022
    - 5.3K bytes
    - Viewed (0)
Back to top