Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for Expired (0.25 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutorTest.groovy

                getResult() >> new Result(length: 123)
            }
            1 * validator.isValid(_, _) >> true
            0 * _
            result.length == 123
        }
    
        void "if cache expired, re-executes the rule"() {
            withToUpperCaseRule()
            def snapshot
            def keyHash
            def id = new Id('Alicia')
    
            when:
            execute(id)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. docs/config/README.md

    transition_workers              (number)    set the number of transition workers (default: '100')
    stale_uploads_expiry            (duration)  set to expire stale multipart uploads older than this values (default: '24h')
    stale_uploads_cleanup_interval  (duration)  set to change intervals when stale multipart uploads are expired (default: '6h')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheBuilder.java

       * useful in testing, or to disable caching temporarily without a code change.
       *
       * <p>Expired entries may be counted in {@link Cache#size}, but will never be visible to read or
       * write operations. Expired entries are cleaned up as part of the routine maintenance described
       * in the class javadoc.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{27, "SIGIOER", "I/O error"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGXCPU", "CPU time limit exceeded"},
    	{30, "SIGXFSZ", "file size limit exceeded"},
    	{31, "SIGVTALRM", "virtual timer expired"},
    	{32, "SIGPROF", "profiling timer expired"},
    	{33, "SIGDANGER", "danger"},
    	{34, "SIGTHSTOP", "stop thread"},
    	{35, "SIGTHCONT", "continue thread"},
    	{37, "SIGTRACE", "trace"},
    	{38, "", "DCE"},
    	{39, "SIGDUMP", "dump"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. pkg/serviceaccount/claims_test.go

    			expectErr: "",
    		},
    		{
    			name:      "expired",
    			getter:    fakeGetter{serviceAccount, nil, nil, nil},
    			private:   &privateClaims{Kubernetes: kubernetes{Svcacct: ref{Name: "saname", UID: "sauid"}, Namespace: "ns"}},
    			expiry:    *jwt.NewNumericDate(now().Add(-1_000 * time.Hour)),
    			expectErr: "service account token has expired",
    		},
    		{
    			name:      "not yet valid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                        return true;
                    }
    
                    final Date expires = DocumentUtil.getValue(document, fessConfig.getIndexFieldExpires(), Date.class);
                    if (expires != null && expires.getTime() < systemHelper.getCurrentTimeAsLong()) {
                        final Object idValue = document.get(fessConfig.getIndexFieldId());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. cmd/batch-expire.go

    	"github.com/minio/pkg/v3/wildcard"
    	"github.com/minio/pkg/v3/workers"
    	"gopkg.in/yaml.v3"
    )
    
    // expire: # Expire objects that match a condition
    //   apiVersion: v1
    //   bucket: mybucket # Bucket where this batch job will expire matching objects from
    //   prefix: myprefix # (Optional) Prefix under which this job will expire objects matching the rules below.
    //   rules:
    //     - type: object  # regular objects with zero or more older versions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

                        if (time > maxAge || time < 0) {
                            if (logger.isDebugEnabled()) {
                                logger.debug("role info is expired: {} > {}", time, maxAge);
                            }
                            return;
                        }
                    } catch (final NumberFormatException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_en.properties

    labels.defaultLabelValue=Default Label
    labels.designFileName=File Name
    labels.incrementalCrawling=Check Last Modified
    labels.errorCount=Error Count
    labels.errorLog=Error Log
    labels.errorName=Error Name
    labels.expiredTime=Expired
    labels.expires=Expired
    labels.failureCountThreshold=Failure Count
    labels.fileConfigName=File System Config Name
    labels.fileName=File name
    labels.handlerName=Handler Name
    labels.handlerParameter=Parameters
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  10. pkg/kubelet/certificate/kubelet.go

    			Help: "Gauge of the shortest TTL (time-to-live) of " +
    				"the Kubelet's serving certificate. The value is in seconds " +
    				"until certificate expiry (negative if already expired). If " +
    				"serving certificate is invalid or unused, the value will " +
    				"be +INF.",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		func() float64 {
    			if c := m.Current(); c != nil && c.Leaf != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top