Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for cCompiler (0.26 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    //     int foo;
    //     GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is
    //                                      // not a compile-time constant.
    //
    // - By using the type CompileAssert<(bool(expr))>, we ensures that
    //   expr is a compile-time constant.  (Template arguments must be
    //   determined at compile-time.)
    //
    // - The outer parentheses in CompileAssert<(bool(expr))> are necessary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. .bazelrc

    build:rocm --config=no_tfrt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	tg.run("test", "-c", "-n", "p1")
    	tg.grepBothNot(`([\\/]compile|gccgo).* (-p main|-fgo-pkgpath=main).*p1\.go`, "should not have run compile -p main p1.go")
    	tg.grepStderr(`([\\/]compile|gccgo).* (-p p1|-fgo-pkgpath=p1).*p1\.go`, "should have run compile -p p1 p1.go")
    }
    
    // Issue 4104.
    func TestGoTestWithPackageListedMultipleTimes(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:library_dependencies]]
    == Library Dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    //     int foo;
    //     GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is
    //                                      // not a compile-time constant.
    //
    // - By using the type CompileAssert<(bool(expr))>, we ensures that
    //   expr is a compile-time constant.  (Template arguments must be
    //   determined at compile-time.)
    //
    // - The outer parentheses in CompileAssert<(bool(expr))> are necessary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    #include "absl/strings/str_join.h"
    #include "tensorflow/compiler/jit/compilability_check_util.h"
    #include "tensorflow/compiler/jit/deadness_analysis.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/device_util.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/resource_operation_safety_analysis.h"
    #include "tensorflow/compiler/jit/xla_cluster_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	} else {
    		archive = b
    	}
    
    	// Compile Go code.
    	compile := []string{pathf("%s/compile", tooldir), "-std", "-pack", "-o", b, "-p", pkgName, "-importcfg", importcfg}
    	if gogcflags != "" {
    		compile = append(compile, strings.Fields(gogcflags)...)
    	}
    	if len(sfiles) > 0 {
    		compile = append(compile, "-asmhdr", goasmh)
    	}
    	if symabis != "" {
    		compile = append(compile, "-symabis", symabis)
    	}
    	if goos == "android" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    }
    
    // The following sets of files are excluded from testing depending on configuration.
    // The types2Failures(32Bit) files pass with the 1.17 compiler but don't pass with
    // the 1.18 compiler using the new types2 type checker, or pass with sub-optimal
    // error(s).
    
    // List of files that the compiler cannot errorcheck with the new typechecker (types2).
    var types2Failures = setOf(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/go/build/build.go

    	}
    	switch ctxt.Compiler {
    	case "gccgo":
    		pkgtargetroot = "pkg/gccgo_" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
    	case "gc":
    		pkgtargetroot = "pkg/" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
    	default:
    		// Save error for end of function.
    		pkgerr = fmt.Errorf("import %q: unknown compiler %q", path, ctxt.Compiler)
    	}
    	setPkga := func() {
    		switch ctxt.Compiler {
    		case "gccgo":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    // But with a different input it will be used.
    func TestDefinitionDoesntMatch(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    		DefaultMatch: true,
    	}
    
    	testContext := setupFakeTest(t, compiler, matcher)
    
    	datalock := sync.Mutex{}
    	passedParams := []*unstructured.Unstructured{}
    	numCompiles := 0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top