Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for correctness (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/DefaultWorkValidationWarningRecorder.java

            warnings.forEach(warning -> {
                withDocumentation(warning, deprecateBehaviour(convertToSingleLine(renderMinimalInformationAbout(warning, false, false)))
                        .withContext("Execution optimizations are disabled to ensure correctness.")
                        .willBeRemovedInGradle9())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/vet/README

    Vet is a tool that checks correctness of Go programs. It runs a suite of tests,
    each tailored to check for a particular class of errors. Examples include incorrect
    Printf format verbs and malformed build tags.
    
    Over time many checks have been added to vet's suite, but many more have been
    rejected as not appropriate for the tool. The criteria applied when selecting which
    checks to add are:
    
    Correctness:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_verifiers.h

    namespace mlir {
    namespace TF {
    
    // Verifies correctness of ops implementing LayoutSensitiveInterface (see
    // definition in tf_op_base.td):
    // (1) Operation must have valid `data_format` attribute.
    // (2) Layout dependent arguments and results indices must be in
    //     [0, getNumOperands/getNumResults) range.
    LogicalResult VerifyLayoutSensitiveInterface(Operation* op);
    
    // Verifies correctness of ops implementing FoldOperandsTransposeInterface (see
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 25 01:54:09 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  4. test/closure3.go

    //go:build !goexperiment.newinliner
    
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check correctness of various closure corner cases
    // that are expected to be inlined
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 358 bytes
    - Viewed (0)
  5. test/closure5.dir/main.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check correctness of various closure corner cases
    // that are expected to be inlined
    package main
    
    import "./a"
    
    func main() {
    	if !a.G()()() {
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 328 bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/IntMathTest.java

        }
      }
    
      // Relies on the correctness of BigIntegerMath.log2 for all modes except UNNECESSARY.
      public void testLog2MatchesBigInteger() {
        for (int x : POSITIVE_INTEGER_CANDIDATES) {
          for (RoundingMode mode : ALL_SAFE_ROUNDING_MODES) {
            assertEquals(BigIntegerMath.log2(valueOf(x), mode), IntMath.log2(x, mode));
          }
        }
      }
    
      // Relies on the correctness of isPowerOfTwo(int).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. releasenotes/notes/locality-lb-docs.yaml

        how locality load balancing works as well as how to configure both
        failover and weighted distribution. In addition, the new docs are now
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 15 22:52:39 UTC 2020
    - 420 bytes
    - Viewed (0)
  8. test/closure5.dir/a.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check correctness of various closure corner cases
    // that are expected to be inlined
    
    package a
    
    func f() bool               { return true }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 20 22:53:32 UTC 2021
    - 375 bytes
    - Viewed (0)
  9. test/closure5.go

    // compiledir
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check correctness of various closure corner cases
    // that are expected to be inlined
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 20 22:53:32 UTC 2021
    - 280 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/gateway/secret.go

    )
    
    // SecretAnalyzer checks a gateway's referenced secrets for correctness
    type SecretAnalyzer struct{}
    
    var _ analysis.Analyzer = &SecretAnalyzer{}
    
    // Metadata implements analysis.Analyzer
    func (a *SecretAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "gateway.SecretAnalyzer",
    		Description: "Checks a gateway's referenced secrets for correctness",
    		Inputs: []config.GroupVersionKind{
    			gvk.Gateway,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 18:29:24 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top