Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for regressed (0.43 sec)

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

       */
      public abstract V load(K key) throws Exception;
    
      /**
       * 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
    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. 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)
  3. 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)
  4. pkg/controlplane/reconcilers/lease.go

    			},
    		}
    	}
    
    	// ... and the list of master IP keys from etcd
    	masterIPs, err := r.masterLeases.ListLeases()
    	if err != nil {
    		return err
    	}
    
    	// Since we just refreshed our own key, assume that zero endpoints
    	// returned from storage indicates an issue or invalid state, and thus do
    	// not update the endpoints list based on the result.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. cmd/local-locker.go

    				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)
  6. pkg/api/v1/pod/util.go

    func IsPodReady(pod *v1.Pod) bool {
    	return IsPodReadyConditionTrue(pod.Status)
    }
    
    // IsPodTerminal returns true if a pod is terminal, all containers are stopped and cannot ever regress.
    func IsPodTerminal(pod *v1.Pod) bool {
    	return IsPodPhaseTerminal(pod.Status.Phase)
    }
    
    // IsPodPhaseTerminal returns true if the pod's phase is terminal.
    func IsPodPhaseTerminal(phase v1.PodPhase) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/compiler/jit/partially_decluster_pass.cc

    // such f's would be marked as must-be-constant.
    //
    // We assume here that the extra repeated (repeated compared to a clustered f
    // where it will always be constant folded) host-side computation of f does not
    // regress performance in any significant manner.  We will have to revisit this
    // algorithm with a more complex cost model if this assumption turns out to be
    // incorrect.
    Status PartiallyDeclusterGraph(Graph* graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    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.
    However, where possible Gradle will check if the previously downloaded artifacts are valid before downloading again.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top