Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ImportModule (0.22 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/XCTestSourceFileElement.java

        private String renderImports() {
            StringBuilder sb = new StringBuilder();
            for (String importModule : getImports()) {
                sb.append("import ").append(importModule).append('\n');
            }
            for (String importModule : getTestableImports()) {
                sb.append("@testable import ").append(importModule).append('\n');
            }
            return sb.toString();
        }
    
        private String renderTestCases() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/runtime/runtime.cc

    // will be attached as callables to this TaggedValue.
    //
    // `name` specifies the full path to the saved model.
    //
    // `ctx` should outlive the lifetime of the module.
    static tensorflow::StatusOr<TaggedValue> ImportModule(String name,
                                                          AbstractContext* ctx) {
      // Load the serialized model.
      tensorflow::StatusOr<TFPackage> tf_package = TFPackage::Load(name.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/noder/noder.go

    		return pragma
    	}
    
    	switch {
    	case strings.HasPrefix(text, "go:wasmimport "):
    		f := strings.Fields(text)
    		if len(f) != 3 {
    			p.error(syntax.Error{Pos: pos, Msg: "usage: //go:wasmimport importmodule importname"})
    			break
    		}
    
    		if buildcfg.GOARCH == "wasm" {
    			// Only actually use them if we're compiling to WASM though.
    			pragma.WasmImport = &WasmImport{
    				Pos:    pos,
    				Module: f[1],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top