Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,644 for Imported (0.23 sec)

  1. src/go/doc/testdata/blank.2.golden

    		C1	T
    		C2
    	
    		C3
    	
    		C4	int
    	)
    
    	// Constants with a single type that is not propagated. 
    	const (
    		Default		= 0644
    		Useless		= 0312
    		WideOpen	= 0777
    	)
    
    	// Constants with an imported type that is propagated. 
    	const (
    		M1	os.FileMode
    		M2
    		M3
    	)
    
    	// Package constants. 
    	const (
    		I1	int
    		I2
    	)
    
    
    TYPES
    	// S has a padding field. 
    	type S struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 01:12:26 UTC 2017
    - 751 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/mlir.h

    //   exported_names_str: Comma-separated list of names to export.
    //                       Empty means "export all".
    //
    // Returns:
    //   A string of textual MLIR representing the raw imported SavedModel.
    std::string ExperimentalConvertSavedModelToMlir(
        const std::string &saved_model_path, const std::string &exported_names_str,
        bool show_debug_info, TF_Status *status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 23:44:01 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. test/fixedbugs/bug506.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo caused an undefined symbol reference building hash functions
    // for an imported struct with unexported fields.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 18 04:57:41 UTC 2018
    - 308 bytes
    - Viewed (0)
  4. test/interface/recursive1.dir/recursive1.go

    // Copyright 2012 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.
    
    // Mutually recursive type definitions imported and used by recursive1.go.
    
    package p
    
    type I1 interface {
    	F() I2
    }
    
    type I2 interface {
    	I1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 304 bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/gcimporter.go

    }
    
    // Import imports a gc-generated package given its import path and srcDir, adds
    // the corresponding package object to the packages map, and returns the object.
    // The packages map must contain all packages already imported.
    func Import(fset *token.FileSet, packages map[string]*types.Package, path, srcDir string, lookup func(path string) (io.ReadCloser, error)) (pkg *types.Package, err error) {
    	var rc io.ReadCloser
    	var id string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue32922.go

    // license that can be found in the LICENSE file.
    
    // This directory contains a pair of packages that triggers a compiler
    // error in gccgo (problem with the way inlinable call expressions are
    // imported). See issue 32922 for details.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 08 13:20:23 UTC 2019
    - 377 bytes
    - Viewed (0)
  7. test/fixedbugs/bug239.go

    // Test case for issue 475. This file should compile.
    
    package main
    
    import . "unsafe"
    
    func main() {
    	var x int
    	println(Sizeof(x))
    }
    
    /*
    bug239.go:11: imported and not used: unsafe
    bug239.go:15: undefined: Sizeof
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 390 bytes
    - Viewed (0)
  8. test/fixedbugs/bug367.go

    // rundir
    
    // Copyright 2011 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.
    
    // Issue 1536: bug when handling imported interfaces with
    // private methods.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 07 16:37:05 UTC 2012
    - 266 bytes
    - Viewed (0)
  9. test/interface/recursive1.go

    // compiledir
    
    // Copyright 2012 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.
    
    // Mutually recursive type definitions imported and used by recursive1.go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 267 bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/importdecl1/importdecl1a.go

    // license that can be found in the LICENSE file.
    
    // Test case for issue 8969.
    
    package importdecl1
    
    import "go/ast"
    import . "unsafe"
    
    var _ Pointer // use dot-imported package unsafe
    
    // Test cases for issue 23914.
    
    type A interface {
    	// Methods m1, m2 must be type-checked in this file scope
    	// even when embedded in an interface in a different
    	// file of the same package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 521 bytes
    - Viewed (0)
Back to top