Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for correctness (0.63 sec)

  1. 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
    - 33K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

                                                    absl::StrCat("_func_", name));
    
      // This preserves the order of the ops that was in the original parent
      // funtion. This is critical for preserving correctness in the presence of
      // resource variables and stateful functions.
      std::vector<Operation*> topological_order;
      for (Operation& op : parent_func.getOps())
        if (ops.contains(&op)) topological_order.push_back(&op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

       * modification. Fail-fast iterators throw {@code ConcurrentModificationException} on a
       * best-effort basis. Therefore, it would be wrong to write a program that depended on this
       * exception for its correctness: <i>the fail-fast behavior of iterators should be used only to
       * detect bugs.</i>
       *
       * @return an iterator over the elements contained in this collection
       */
      @Override
      public Iterator<E> iterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (1)
  4. pilot/pkg/networking/core/httproute.go

    	// call obviously saw an egress listener
    	if egressListener == nil {
    		return nil, nil, nil
    	}
    
    	services = egressListener.Services()
    	// To maintain correctness, we should only use the virtualservices for
    	// this listener and not all virtual services accessible to this proxy.
    	virtualServices = egressListener.VirtualServices()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

       * modification. Fail-fast iterators throw {@code ConcurrentModificationException} on a
       * best-effort basis. Therefore, it would be wrong to write a program that depended on this
       * exception for its correctness: <i>the fail-fast behavior of iterators should be used only to
       * detect bugs.</i>
       *
       * @return an iterator over the elements contained in this collection
       */
      @Override
      public Iterator<E> iterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/infer.go

    	// Substitute type arguments for their respective type parameters in params,
    	// if any. Note that nil targs entries are ignored by check.subst.
    	// We do this for better error messages; it's not needed for correctness.
    	// For instance, given:
    	//
    	//   func f[P, Q any](P, Q) {}
    	//
    	//   func _(s string) {
    	//           f[int](s, s) // ERROR
    	//   }
    	//
    	// With substitution, we get the error:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/module/module.go

    func escapeString(s string) (escaped string, err error) {
    	haveUpper := false
    	for _, r := range s {
    		if r == '!' || r >= utf8.RuneSelf {
    			// This should be disallowed by CheckPath, but diagnose anyway.
    			// The correctness of the escaping loop below depends on it.
    			return "", fmt.Errorf("internal error: inconsistency in EscapePath")
    		}
    		if 'A' <= r && r <= 'Z' {
    			haveUpper = true
    		}
    	}
    
    	if !haveUpper {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/go/types/infer.go

    	// Substitute type arguments for their respective type parameters in params,
    	// if any. Note that nil targs entries are ignored by check.subst.
    	// We do this for better error messages; it's not needed for correctness.
    	// For instance, given:
    	//
    	//   func f[P, Q any](P, Q) {}
    	//
    	//   func _(s string) {
    	//           f[int](s, s) // ERROR
    	//   }
    	//
    	// With substitution, we get the error:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. src/crypto/internal/mlkem768/mlkem768.go

    //
    // [Kyber version 3.0]: https://pq-crystals.org/kyber/data/kyber-specification-round3-20210804.pdf
    // [NIST FIPS 203 ipd]: https://doi.org/10.6028/NIST.FIPS.203.ipd
    package mlkem768
    
    // This package targets security, correctness, simplicity, readability, and
    // reviewability as its primary goals. All critical operations are performed in
    // constant time.
    //
    // Variable and function names, as well as code layout, are selected to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

      // Tolerance level from the quantized value for verification. If the tolerance
      // is very small(<0.1), only the stats of the diff is displayed.
      float error_tolerance = 5.0f;
    
      // Whether to verify numerical correctness layer by layer or by whole model
      bool whole_model_verify = false;
    
      // Whether to enable log for failures
      bool log_if_failed_flag = false;
    };
    
    // Used in TFL Quantize Pass
    struct QuantPassSpec {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top