Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for export_type (0.23 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    // NOLINTNEXTLINE
    opt<std::string> output_path("o", llvm::cl::desc("<output path>"),
                                 llvm::cl::Required);
    
    // NOLINTNEXTLINE
    opt<std::string> export_type("export-type", llvm::cl::desc("<export type>"),
                                 llvm::cl::Optional, llvm::cl::init("mlir"));
    
    // NOLINTNEXTLINE
    opt<bool> verbose(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/doc/testdata/pkg.go

    }
    
    // Constants tied to ExportedType. (The type is a struct so this isn't valid Go,
    // but it parses and that's all we need.)
    const (
    	ExportedTypedConstant ExportedType = iota
    )
    
    // Comment about constructor for exported type.
    func ExportedTypeConstructor() *ExportedType {
    	return nil
    }
    
    const unexportedTypedConstant ExportedType = 1 // In a separate section to test -u.
    
    // Comment about exported interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/doc/doc_test.go

    			`type ExportedStructOneField struct`,
    			`type ExportedType struct`,
    			`Comment about exported type`,
    			`const ConstGroup4 ExportedType = ExportedType`,
    			`ExportedTypedConstant ExportedType = iota`,
    			`Constants tied to ExportedType`,
    			`func ExportedTypeConstructor\(\) \*ExportedType`,
    			`Comment about constructor for exported type`,
    			`func ReturnExported\(\) ExportedType`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    			path, ok := cfg.ImportMap[importPath] // resolve vendoring, etc
    			if !ok {
    				return nil, fmt.Errorf("can't resolve import %q", path)
    			}
    			return compilerImporter.Import(path)
    		})
    	}
    
    	exportTypes = func(*Config, *token.FileSet, *types.Package) error {
    		// By default this is a no-op, because "go vet"
    		// makes the compiler produce type information.
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top