Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 334 for refreshed (0.2 sec)

  1. android/guava/src/com/google/common/cache/CacheLoader.java

      /**
       * Computes or retrieves a replacement value corresponding to an already-cached {@code key}. This
       * method is called when an existing cache entry is refreshed by {@link
       * CacheBuilder#refreshAfterWrite}, or through a call to {@link LoadingCache#refresh}.
       *
       * <p>This implementation synchronously delegates to {@link #load}. It is recommended that it be
       * overridden with an asynchronous implementation when using {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/cache_test.go

    	mtime3 := now
    	if _, err := c.Get(dummyID(2)); err == nil { // haven't done a Get for this since original write above
    		t.Fatalf("Trim did not remove dummyID(2)")
    	}
    
    	// The c.Get(id) refreshed id's mtime again.
    	// Check that another 5 days later it is still not gone,
    	// but check by using checkTime, which doesn't bring mtime forward.
    	now += 5 * 86400
    	if err := c.Trim(); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/typed_xds_cache.go

    }
    
    type lruCache[K comparable] struct {
    	enableAssertions bool
    	store            simplelru.LRUCache[K, cacheValue]
    	// token stores the latest token of the store, used to prevent stale data overwrite.
    	// It is refreshed when Clear or ClearAll are called
    	token       CacheToken
    	mu          sync.RWMutex
    	configIndex map[ConfigHash]sets.Set[K]
    
    	evictQueue []evictKeyConfigs[K]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. cmd/local-locker.go

    				idx++
    				continue
    			}
    			reply = true
    			l.removeEntry(resource, dsync.LockArgs{UID: args.UID}, &lris)
    			idx++
    		}
    	}
    }
    
    func (l *localLocker) Refresh(ctx context.Context, args dsync.LockArgs) (refreshed bool, err error) {
    	select {
    	case <-ctx.Done():
    		return false, ctx.Err()
    	default:
    		l.mutex.Lock()
    		defer l.mutex.Unlock()
    
    		// Check whether uid is still active.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	// freshness marks whether a group version's discovery document is up to date.
    	// "Current" indicates the discovery document was recently
    	// refreshed. "Stale" indicates the discovery document could not
    	// be retrieved and the returned discovery document may be
    	// significantly out of date. Clients that require the latest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/jwks_resolver_test.go

    	}
    
    	// Wait until refresh job at least finished once.
    	retry.UntilSuccessOrFail(t, func() error {
    		// Make sure refresh job has run and detect change or refresh happened.
    		if atomic.LoadUint64(&r.refreshJobKeyChangedCount) > 0 || atomic.LoadUint64(&r.refreshJobFetchFailedCount) > 0 {
    			return nil
    		}
    		return fmt.Errorf("refresher failed to run")
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    To refresh all dependencies in the dependency cache, use the `--refresh-dependencies` option on the command line.
    
    The `--refresh-dependencies` option tells Gradle to ignore all cached entries for resolved modules and artifacts.
    A fresh resolve will be performed against all configured repositories, with dynamic versions recalculated, modules refreshed, and artifacts downloaded.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

    abstract class AbstractSourceIncrementalCompilationIntegrationTest extends AbstractJavaGroovyIncrementalCompilationSupport {
    
        def "detects class changes in subsequent runs ensuring the class dependency data is refreshed"() {
            source "class A {}", "class B {}", "class C {}"
            outputs.snapshot { run language.compileTaskName }
    
            when:
            source "class B extends A {}"
            run language.compileTaskName
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  9. pkg/proxy/apis/config/types.go

    	// the range [-1000, 1000]
    	OOMScoreAdj *int32
    	// conntrack contains conntrack-related configuration options.
    	Conntrack KubeProxyConntrackConfiguration
    	// configSyncPeriod is how often configuration from the apiserver is refreshed. Must be greater
    	// than 0.
    	ConfigSyncPeriod metav1.Duration
    
    	// portRange was previously used to configure the userspace proxy, but is now unused.
    	PortRange string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/net/net.go

    	// fail instead of blocking. The deadline applies to all future
    	// and pending I/O, not just the immediately following call to
    	// Read or Write. After a deadline has been exceeded, the
    	// connection can be refreshed by setting a deadline in the future.
    	//
    	// If the deadline is exceeded a call to Read or Write or to other
    	// I/O methods will return an error that wraps os.ErrDeadlineExceeded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top