Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for correctness (3.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/go/types/stmt.go

    		check.simpleStmt(s.Init)
    
    		// A type switch guard must be of the form:
    		//
    		//     TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" .
    		//
    		// The parser is checking syntactic correctness;
    		// remaining syntactic errors are considered AST errors here.
    		// TODO(gri) better factoring of error handling (invalid ASTs)
    		//
    		var lhs *ast.Ident // lhs identifier or nil
    		var rhs ast.Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/switch.go

    			//    disallowed by the spec.
    			// 2. A concrete type shadowing an interface type.
    			//    That can never happen, as interface types can
    			//    be satisfied by an infinite set of concrete types.
    			// The correctness of this step also depends on handling
    			// the dynamic type cases separately, as we do above.
    		}
    
    		if c.typ.Type().IsInterface() {
    			interfaceCases = append(interfaceCases, c)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top