Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for correctness (1.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

     * mechanism.
     *
     * <p>While it is recommended that service lifecycles be managed via this class, state transitions
     * initiated via other mechanisms do not impact the correctness of its methods. For example, if the
     * services are started by some mechanism besides {@link #startAsync}, the listeners will be invoked
     * when appropriate and {@link #awaitHealthy} will still work as expected.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    	}
    	waitGroup.Wait()
    }
    
    // Show the handler is capable of serving many concurrent readers and many
    // concurrent writers without tripping up. Good to run with go '-race' detector
    // since there are not many "correctness" checks
    func TestAbuse(t *testing.T) {
    	manager := discoveryendpoint.NewResourceManager("apis")
    
    	numReaders := 100
    	numRequestsPerReader := 1000
    
    	numWriters := 10
    	numWritesPerWriter := 1000
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. src/runtime/cgocall.go

    	// code. We do this after entersyscall because this may block
    	// and cause an async preemption to fail, but at this point a
    	// sync preemption will succeed (though this is not a matter
    	// of correctness).
    	osPreemptExtEnter(mp)
    
    	mp.incgo = true
    	// We use ncgo as a check during execution tracing for whether there is
    	// any C on the call stack, which there will be after this point. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

                "This behavior has been deprecated. " +
                "This behavior is scheduled to be removed in Gradle 9.0. " +
                "Execution optimizations are disabled to ensure correctness. " +
                documentationRegistry.getDocumentationRecommendationFor("information", docId, section)
            executer.expectDocumentedDeprecationWarning(deprecationMessage)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top