Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 174 for correctness (0.91 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.internal.TextUtil
    
    import java.nio.file.Path
    
    /**
     * The cross-platform builder of shell scripts that can be used to verify correctness of the
     * invocation of an executable. It uses "sh" syntax on POSIX platforms and batch files on Windows.
     */
    abstract class ShellScript {
        protected final TestFile scriptFile
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

       *
       * The initial write to delegateRef is made definitely visible via the semantics of
       * addListener/SES.schedule. The later racy write in cancel() is not guaranteed to be observed,
       * however that is fine since the correctness is based on the atomic state in our base class. The
       * initial write to timer is never definitely visible to Fire.run since it is assigned after
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/TimeoutFuture.java

       *
       * The initial write to delegateRef is made definitely visible via the semantics of
       * addListener/SES.schedule. The later racy write in cancel() is not guaranteed to be observed,
       * however that is fine since the correctness is based on the atomic state in our base class. The
       * initial write to timer is never definitely visible to Fire.run since it is assigned after
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

      // It seems highly unlikely to encounter such a case but, to be safe, this
      // should be revisited for new resource-allocators that might potentially
      // break our currently guaranteed correctness.
      // For context, we are very conservative here compared to
      // `auto_control_deps.py` where it is assumed that allocated resource values
      // NEVER alias. We should align our assumptions in the future.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm_arm64_test.go

    	cmd.Env = append(os.Environ(), "GOOS=linux")
    	if out, err := cmd.CombinedOutput(); err != nil {
    		t.Errorf("%v\n%s", err, out)
    	}
    }
    
    // TestPCALIGN verifies the correctness of the PCALIGN by checking if the
    // code can be aligned to the alignment value.
    func TestPCALIGN(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	dir, err := os.MkdirTemp("", "testpcalign")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. src/strconv/ftoaryu.go

    // the range -1600 <= x && x <= +1600.
    //
    // The range restriction lets us work in faster integer arithmetic instead of
    // slower floating point arithmetic. Correctness is verified by unit tests.
    func mulByLog2Log10(x int) int {
    	// log(2)/log(10) ≈ 0.30102999566 ≈ 78913 / 2^18
    	return (x * 78913) >> 18
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm_test.go

    			want := index
    			if have != want {
    				regName := rconv(int(reg))
    				t.Errorf("regIndex(%s):\nhave: %d\nwant: %d",
    					regName, have, want)
    			}
    		}
    	}
    }
    
    // TestPCALIGN verifies the correctness of the PCALIGN by checking if the
    // code can be aligned to the alignment value.
    func TestPCALIGN(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	dir := t.TempDir()
    	tmpfile := filepath.Join(dir, "test.s")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. src/html/template/error.go

    	//   produce HTML output safe against code injection. Manually escaping
    	//   pipeline output using the predefined escapers "html" or "urlquery" is
    	//   unnecessary, and may affect the correctness or safety of the escaped
    	//   pipeline output in Go 1.8 and earlier.
    	//
    	//   In most cases, such as the given example, this error can be resolved by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    // a directory, otherwise it is assumed to represent a file. In either case,
    // it may or may not represent an actual file or directory in the file system.
    // Names are NOT checked for syntax correctness -- no checking for illegal
    // characters, malformed paths, etc.
    
    class GTEST_API_ FilePath {
     public:
      FilePath() : pathname_("") { }
      FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    // a directory, otherwise it is assumed to represent a file. In either case,
    // it may or may not represent an actual file or directory in the file system.
    // Names are NOT checked for syntax correctness -- no checking for illegal
    // characters, malformed paths, etc.
    
    class GTEST_API_ FilePath {
     public:
      FilePath() : pathname_("") { }
      FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top