Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 194 for Expired (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	{24, "SIGTSTP", "stopped"},
    	{25, "SIGCONT", "continued"},
    	{26, "SIGTTIN", "stopped (tty input)"},
    	{27, "SIGTTOU", "stopped (tty output)"},
    	{28, "SIGVTALRM", "virtual timer expired"},
    	{29, "SIGPROF", "profiling timer expired"},
    	{30, "SIGXCPU", "CPU time limit exceeded"},
    	{31, "SIGXFSZ", "file size limit exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. pkg/wasm/cache.go

    			c.mux.Unlock()
    		case <-c.stopChan:
    			// Currently this will only happen in test.
    			return
    		}
    	}
    }
    
    // Expired returns true if the module has not been touched for Wasm module Expiry.
    func (ce *cacheEntry) expired(expiry time.Duration) bool {
    	now := time.Now()
    	return now.Sub(ce.last) > expiry
    }
    
    var wasmMagicNumber = []byte{0x00, 0x61, 0x73, 0x6d}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/cache.go

    			klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    		}
    		if !ps.bindingFinished {
    			logger.V(5).Info("Could not expire cache for pod as binding is still in progress", "podKey", key, "pod", klog.KObj(ps.pod))
    			continue
    		}
    		if cache.ttl != 0 && now.After(*ps.deadline) {
    			logger.Info("Pod expired", "podKey", key, "pod", klog.KObj(ps.pod))
    			if err := cache.removePod(logger, ps.pod); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool-rebalance.go

    			versionsSorter(fivs.Versions).reverse()
    
    			var rebalanced, expired int
    			for _, version := range fivs.Versions {
    				// Skip transitioned objects for now. TBD
    				if version.IsRemote() {
    					continue
    				}
    
    				// Apply lifecycle rules on the objects that are expired.
    				if filterLifecycle(bucket, version.Name, version) {
    					expired++
    					continue
    				}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.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
    - 36.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.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
    - 36.7K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle.go

    // - in progress (no content on MinIO's disks yet)
    // - completed
    // - completed but expired (again, no content on MinIO's disks)
    func (r restoreObjStatus) OnDisk() bool {
    	if expiry, ok := r.Expiry(); ok && time.Now().UTC().Before(expiry) {
    		// completed
    		return true
    	}
    	return false // in progress or completed but expired
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. pilot/pkg/credentials/kube/secrets.go

    }
    
    func (s *CredentialsController) HasSynced() bool {
    	return s.secrets.HasSynced()
    }
    
    const cacheTTL = time.Minute
    
    // clearExpiredCache iterates through the cache and removes all expired entries. Should be called with mutex held.
    func (s *CredentialsController) clearExpiredCache() {
    	for k, v := range s.authorizationCache {
    		if v.expiration.Before(time.Now()) {
    			delete(s.authorizationCache, k)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    			User:  CommonNameUserConversion,
    
    			ExpectUserName: "My Client",
    			ExpectOK:       true,
    			ExpectErr:      false,
    		},
    		"multi-level, expired": {
    			Opts:  multilevelOpts,
    			Certs: getCertsFromFile(t, "client-expired", "intermediate"),
    			User:  CommonNameUserConversion,
    
    			ExpectOK:  false,
    			ExpectErr: true,
    		},
    	}
    
    	for k, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGIO", "I/O possible"},
    	{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, "SIGLOST", "power failure"},
    	{30, "SIGUSR1", "user defined signal 1"},
    	{31, "SIGUSR2", "user defined signal 2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
Back to top