Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 635 for Expired (0.12 sec)

  1. pkg/scheduler/internal/cache/cache_test.go

    	}
    	cache.cleanupAssumedPods(logger, now.Add(2*ttl))
    	// It should be expired and removed.
    	if err := isForgottenFromCache(test.pod, cache); err != nil {
    		t.Error(err)
    	}
    	if err := cache.AddPod(logger, test.pod); err != nil {
    		t.Fatalf("AddPod failed: %v", err)
    	}
    	// check after expiration. confirmed pods shouldn't be expired.
    	n := cache.nodes[nodeName]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  2. src/crypto/x509/verify.go

    const (
    	// NotAuthorizedToSign results when a certificate is signed by another
    	// which isn't marked as a CA certificate.
    	NotAuthorizedToSign InvalidReason = iota
    	// Expired results when a certificate has expired, based on the time
    	// given in the VerifyOptions.
    	Expired
    	// CANotAuthorizedForThisName results when an intermediate or root
    	// certificate has a name constraint which doesn't permit a DNS or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. pilot/pkg/grpc/tls.go

    				if err != nil {
    					log.Warnf("cannot parse the cert chain, using token instead: %v", err)
    					return &certificate, nil
    				}
    				if isExpired {
    					log.Warnf("cert expired, using token instead")
    					return &certificate, nil
    				}
    				// Load the certificate from disk
    				certificate, err = tls.LoadX509KeyPair(cert, key)
    				if err != nil {
    					return nil, err
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/postupgrade_test.go

    	keyFile, err := os.OpenFile(keyPath, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0666)
    	if err != nil {
    		t.Fatalf("Failed to create key file %s: %v", keyPath, err)
    	}
    	keyFile.Close()
    
    	subDir := filepath.Join(tmpdir, "expired")
    	if err := os.Mkdir(subDir, 0766); err != nil {
    		t.Fatalf("Failed to create backup directory %s: %v", subDir, err)
    	}
    
    	filesToMove := map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 11:40:04 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{23, "SIGURG", "urgent I/O condition"},
    	{24, "SIGXCPU", "CPU time limit exceeded"},
    	{25, "SIGXFSZ", "file size limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGIO", "I/O possible"},
    	{30, "SIGPWR", "power failure"},
    	{31, "SIGSYS", "bad system call"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	{23, "SIGURG", "urgent I/O condition"},
    	{24, "SIGXCPU", "CPU time limit exceeded"},
    	{25, "SIGXFSZ", "file size limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGIO", "I/O possible"},
    	{30, "SIGPWR", "power failure"},
    	{31, "SIGSYS", "bad system call"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	{23, "SIGURG", "urgent I/O condition"},
    	{24, "SIGXCPU", "CPU time limit exceeded"},
    	{25, "SIGXFSZ", "file size limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGIO", "I/O possible"},
    	{30, "SIGPWR", "power failure"},
    	{31, "SIGSYS", "bad system call"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. pkg/kubelet/util/cache/object_cache_test.go

    	}, 1*time.Second, fakeClock)
    
    	err := objectCache.Add(testObj.key, testObj.val)
    	if err != nil {
    		t.Errorf("Unable to add obj %#v by key: %s", testObj, testObj.key)
    	}
    
    	// sleep 2s so cache should be expired.
    	fakeClock.Sleep(2 * time.Second)
    
    	value, err := objectCache.Get(testObj.key)
    	if err != nil {
    		t.Errorf("Unable to get obj %#v by key: %s", testObj, testObj.key)
    	}
    	if value.(string) != expectedVal {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 17 13:19:08 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPerformanceMonitoringSoakTest.groovy

                "org.gradle.java.home": jdk.javaHome.absolutePath,
                "org.gradle.jvmargs": jvmArgs + " " + version.gc.jvmArgs
            )
        }
    
        def "when build leaks slowly daemon is eventually expired"() {
            when:
            setupTenuredHeapLeak(leakRate)
            then:
            daemonIsExpiredEagerly(maxBuilds, heapSize)
    
            where:
            maxBuilds | heapSize | leakRate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{23, "SIGURG", "urgent I/O condition"},
    	{24, "SIGXCPU", "CPU time limit exceeded"},
    	{25, "SIGXFSZ", "file size limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGIO", "I/O possible"},
    	{30, "SIGPWR", "power failure"},
    	{31, "SIGSYS", "bad system call"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top