Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for correctness (0.58 sec)

  1. pilot/pkg/xds/ads.go

    	request := &model.PushRequest{
    		Full:   true,
    		Push:   con.proxy.LastPushContext,
    		Reason: model.NewReasonStats(model.ProxyRequest),
    
    		// The usage of LastPushTime (rather than time.Now()), is critical here for correctness; This time
    		// is used by the XDS cache to determine if a entry is stale. If we use Now() with an old push context,
    		// we may end up overriding active cache entries with stale ones.
    		Start: con.proxy.LastPushTime,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    * As a <<sub:local-repos,local repository>>, Gradle does not trust its content, because:
    ** Origin of artifacts cannot be tracked, which is a correctness and security problem
    ** Artifacts can be easily overwritten, which is a security, correctness and reproducibility problem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    Sometimes, Ant's default excludes prove problematic, for example when you want to include the `.gitignore` in an archive file.
    
    Changing Gradle's default excludes during the execution phase can lead to correctness problems with up-to-date checks.
    As a consequence, you are only allowed to change Gradle's default excludes in the settings script, see the <<working_with_files.adoc#sec:change_default_excludes,user manual>> for an example.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

                     << ResourceAliasAnalysisInfo::kMaxResourceTypeId
                     << "); this could lead to overly conservative execution order";
        // Note: By not incrementing `resource_type_id` we still maintain
        // correctness, we might only handle different resource types as the same
        // type (for ID `kMaxResourceTypeId`) which is overly conservative.
      } else {
        ++resource_type_id;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/BloomFilter.java

     * generated today may <i>not</i> be readable by a binary that was compiled 6 months ago).
     *
     * <p>As of Guava 23.0, this class is thread-safe and lock-free. It internally uses atomics and
     * compare-and-swap to ensure correctness when multiple threads are used to access it.
     *
     * @param <T> the type of instances that the {@code BloomFilter} accepts
     * @author Dimitris Andreou
     * @author Kevin Bourrillion
     * @since 11.0 (thread-safe since 23.0)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/BloomFilter.java

     * generated today may <i>not</i> be readable by a binary that was compiled 6 months ago).
     *
     * <p>As of Guava 23.0, this class is thread-safe and lock-free. It internally uses atomics and
     * compare-and-swap to ensure correctness when multiple threads are used to access it.
     *
     * @param <T> the type of instances that the {@code BloomFilter} accepts
     * @author Dimitris Andreou
     * @author Kevin Bourrillion
     * @since 11.0 (thread-safe since 23.0)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/math/big/arith_test.go

    	for i := range v {
    		v[i] = e
    	}
    	return v
    }
    
    // Extended testing to addVW and subVW using various kinds of input data.
    // We utilize the results of addVW_g and subVW_g as golden reference to check
    // correctness.
    func TestFunVWExt(t *testing.T) {
    	// 32 is the current threshold that triggers an optimized version of
    	// calculation for large-sized vector, ensure we have sizes around it tested.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cache/cache.go

    	// that repeating an action produces a different output hash
    	// (for example, if the output contains a time stamp or temp dir name).
    	// While not ideal, this is also not a correctness problem, so we
    	// don't make a big deal about it. In particular, we leave the action
    	// cache entries writable specifically so that they can be overwritten.
    	//
    	// Setting GODEBUG=gocacheverify=1 does make a big deal:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. plugin/pkg/admission/noderestriction/admission.go

    	if len(statusA) != len(statusB) {
    		return false
    	}
    	// In most cases, status entries only get added once and not modified.
    	// But this cannot be guaranteed, so for the sake of correctness in all
    	// cases this code here has to check.
    	for i := range statusA {
    		if statusA[i].Name != statusB[i].Name {
    			return false
    		}
    		claimNameA := statusA[i].ResourceClaimName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta.go

    	request := &model.PushRequest{
    		Full:   true,
    		Push:   con.proxy.LastPushContext,
    		Reason: model.NewReasonStats(model.ProxyRequest),
    
    		// The usage of LastPushTime (rather than time.Now()), is critical here for correctness; This time
    		// is used by the XDS cache to determine if a entry is stale. If we use Now() with an old push context,
    		// we may end up overriding active cache entries with stale ones.
    		Start: con.proxy.LastPushTime,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top