Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 635 for Expired (0.12 sec)

  1. security/pkg/nodeagent/cache/monitoring.go

    	)
    
    	certExpirySeconds = monitoring.NewDerivedGauge(
    		"cert_expiry_seconds",
    		"The time remaining, in seconds, before the certificate chain will expire. "+
    			"A negative value indicates the cert is expired.",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection_test.go

    	if err := raw.Wait(15 * time.Second); err != nil {
    		t.Fatalf("client: timed out waiting for connection closure: %v", err)
    	}
    
    	expired := time.NewTimer(15 * time.Second)
    	defer expired.Stop()
    	i := 0
    	for {
    		select {
    		case <-expired.C:
    			t.Fatalf("timed out waiting for proxy and/or server closure")
    		case <-serverDone:
    			i++
    		case <-proxyDone:
    			i++
    		}
    		if i == 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 11:58:57 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. src/net/hook.go

    	// testHookStepTime sleeps until time has moved forward by a nonzero amount.
    	// This helps to avoid flakes in timeout tests by ensuring that an implausibly
    	// short deadline (such as 1ns in the future) is always expired by the time
    	// a relevant system call occurs.
    	testHookStepTime = func() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 934 bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/DosError.java

            "No process is on the other end of the pipe.", "More data is available.", "This user account has expired.",
            "The user is not allowed to log on from this workstation.", "The user is not allowed to log on at this time.",
            "The password of this user has expired.",
        };
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/DosError.java

            "No process is on the other end of the pipe.",
            "More data is available.",
            "This user account has expired.",
            "The user is not allowed to log on from this workstation.",
            "The user is not allowed to log on at this time.",
            "The password of this user has expired.",
        };
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server_bootstrap_test.go

    	}
    	defer m.Stop()
    	r := m.(rotater)
    
    	// get an expired CSR (simulating historical output)
    	server.backdate = 2 * time.Hour
    	server.SetExpectUserAgent("FirstClient")
    	ok, err := r.RotateCerts()
    	if !ok || err != nil {
    		t.Fatalf("unexpected rotation err: %t %v", ok, err)
    	}
    	if cert := m.Current(); cert != nil {
    		t.Fatalf("Unexpected cert, should be expired: %#v", cert)
    	}
    	fi := getFileInfo(testDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  7. cmd/sts-errors.go

    		Description:    "The web identity token that was passed is expired or is not valid. Get a new identity token from the identity provider and then retry the request.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrSTSClientGrantsExpiredToken: {
    		Code:           "ExpiredToken",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java

    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.atomic.AtomicInteger;
    import junit.framework.TestCase;
    
    /**
     * Tests relating to cache expiration: make sure entries expire at the right times, make sure
     * expired entries don't show up, etc.
     *
     * @author mike nonemacher
     */
    @SuppressWarnings("deprecation") // tests of deprecated method
    public class CacheExpirationTest extends TestCase {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 18.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    	return PollUntilWithContext(ContextForChannel(stopCh), interval, condition.WithContext())
    }
    
    // PollUntilWithContext tries a condition func until it returns true,
    // an error or the specified context is cancelled or expired.
    //
    // PollUntilWithContext always waits interval before the first run of 'condition'.
    // 'condition' will always be invoked at least once.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/PurgeDocJob.java

            try {
                searchEngineClient.deleteByQuery(fessConfig.getIndexDocumentUpdateIndex(), queryBuilder);
    
            } catch (final Exception e) {
                logger.error("Could not delete expired documents: {}", queryBuilder, e);
                resultBuf.append(e.getMessage()).append("\n");
            }
    
            return resultBuf.toString();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top