Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for Refreshed (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                    if (cachePolicy.moduleExpiry(moduleComponentIdentifier, cachedMetadata.getModuleVersion(), cachedMetadata.getAge()).isMustCheck()) {
                        LOGGER.debug("Cached meta-data for module must be refreshed: will perform fresh resolve of '{}' in '{}'", moduleComponentIdentifier, delegate.getName());
                        return;
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. cmd/bucket-metadata-sys.go

    // GetConfig returns a specific configuration from the bucket metadata.
    // The returned object may not be modified.
    // reloaded will be true if metadata refreshed from disk
    func (sys *BucketMetadataSys) GetConfig(ctx context.Context, bucket string) (meta BucketMetadata, reloaded bool, err error) {
    	objAPI := newObjectLayerFn()
    	if objAPI == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. cmd/metrics-v3-types.go

    		}
    		return nil
    	}
    }
    
    // MetricsGroup - represents a group of metrics. It includes a `MetricsLoaderFn`
    // function that provides a way to load the metrics from the system. The metrics
    // are cached and refreshed after a given timeout.
    //
    // For metrics with a `bucket` dimension, a list of buckets argument is required
    // to collect the metrics.
    //
    // It implements the prometheus.Collector interface for metric groups without a
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    				if err != nil {
    					return "", err
    				}
    			}
    		}
    	}
    
    	// Create new podToMount object. If it already exists, it is refreshed with
    	// updated values (this is required for volumes that require remounting on
    	// pod update, like Downward API volumes).
    	dsw.volumesToMount[volumeName].podsToMount[podName] = podToMount{
    		podName:             podName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent.go

    	if err != nil {
    		return fmt.Errorf("failed to start workload secret manager %v", err)
    	}
    
    	if a.cfg.DisableEnvoy {
    		// For proxyless we don't need an SDS server, but still need the keys and
    		// we need them refreshed periodically.
    		//
    		// This is based on the code from newSDSService, but customized to have explicit rotation.
    		go func() {
    			st := a.secretCache
    			st.RegisterSecretHandler(func(resourceName string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/controllermanager.go

    		return ControllerContext{}, fmt.Errorf("failed to wait for apiserver being healthy: %v", err)
    	}
    
    	// Use a discovery client capable of being refreshed.
    	discoveryClient := rootClientBuilder.DiscoveryClientOrDie("controller-discovery")
    	cachedClient := cacheddiscovery.NewMemCacheClient(discoveryClient)
    	restMapper := restmapper.NewDeferredDiscoveryRESTMapper(cachedClient)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
        @CanIgnoreReturnValue
        @CheckForNull
        V refresh(K key, int hash, CacheLoader<? super K, V> loader, boolean checkTime) {
          final LoadingValueReference<K, V> loadingValueReference =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. src/os/file.go

    // error 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 ErrDeadlineExceeded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

      Classes that don't need to be recompiled remain unchanged in the output directory.
      An example scenario when this is really useful is using JRebel — the fewer output classes are changed the quicker the JVM can use refreshed classes.
    
    To help you understand how incremental compilation works, the following provides a high-level overview:
    
    * Gradle will recompile all classes _affected_ by a change.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
        @CanIgnoreReturnValue
        @CheckForNull
        V refresh(K key, int hash, CacheLoader<? super K, V> loader, boolean checkTime) {
          final LoadingValueReference<K, V> loadingValueReference =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top