Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for importer (0.39 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    }
    
    // Create the MLIR Location corresponding to a given op. This is an
    // experimental/debugging feature and production code should not rely on names
    // of intermediate tensors since importer doesn't guarantee to preserve tensor
    // names except output tensors.
    Location OpLoc(const OperatorT& op,
                   const std::vector<std::unique_ptr<tflite::TensorT>>& tensors,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	}
    	slices.Sort(all)
    	return all, m
    }
    
    // Import is shorthand for Default.Import.
    func Import(path, srcDir string, mode ImportMode) (*Package, error) {
    	return Default.Import(path, srcDir, mode)
    }
    
    // ImportDir is shorthand for Default.ImportDir.
    func ImportDir(dir string, mode ImportMode) (*Package, error) {
    	return Default.ImportDir(dir, mode)
    }
    
    var (
    	plusBuild = []byte("+build")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/iimport.go

    // Copyright 2018 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.
    
    // Indexed package import.
    // See cmd/compile/internal/gc/iexport.go for the export data format.
    
    package gcimporter
    
    import (
    	"bufio"
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"go/constant"
    	"go/token"
    	"go/types"
    	"internal/saferio"
    	"io"
    	"math"
    	"math/big"
    	"slices"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/go/ast/import.go

    package ast
    
    import (
    	"cmp"
    	"go/token"
    	"slices"
    	"strconv"
    )
    
    // SortImports sorts runs of consecutive import lines in import blocks in f.
    // It also removes duplicate imports when it is possible to do so without data loss.
    func SortImports(fset *token.FileSet, f *File) {
    	for _, d := range f.Decls {
    		d, ok := d.(*GenDecl)
    		if !ok || d.Tok != token.IMPORT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/body-nested-models.md

    ### Importe `List` do typing
    
    Primeiramente, importe `List` do módulo `typing` que já vem por padrão no Python:
    
    ```Python hl_lines="1"
    {!../../../docs_src/body_nested_models/tutorial002.py!}
    ```
    
    ### Declare a `List` com um parâmetro de tipo
    
    Para declarar tipos que têm parâmetros de tipo(tipos internos), como `list`, `dict`, `tuple`:
    
    * Importe os do modulo `typing`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/cmd/dist/buildtool.go

    		}
    		if strings.HasPrefix(line, "import (") {
    			inBlock = true
    			continue
    		}
    		if inBlock && strings.HasPrefix(line, ")") {
    			inBlock = false
    			continue
    		}
    
    		var m []string
    		if !inBlock {
    			if !strings.HasPrefix(line, "import ") {
    				continue
    			}
    			m = importRE.FindStringSubmatch(line)
    			if m == nil {
    				fatalf("%s:%d: invalid import declaration: %q", srcFile, i+1, line)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/go/types/object.go

    	return &PkgName{object{nil, pos, pkg, name, Typ[Invalid], 0, black, nopos}, imported, false}
    }
    
    // Imported returns the package that was imported.
    // It is distinct from Pkg(), which is the package containing the import statement.
    func (obj *PkgName) Imported() *Package { return obj.imported }
    
    // A Const represents a declared constant.
    type Const struct {
    	object
    	val constant.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. staging/publishing/import-restrictions.yaml

    Sascha Grunert <******@****.***> 1714653658 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    package importdecl0
    
    import ()
    
    import (
    	// we can have multiple blank imports (was bug)
    	_ "math"
    	_ "net/rpc"
    	init /* ERROR "cannot import package as init" */ "fmt"
    	// reflect defines a type "flag" which shows up in the gc export data
    	"reflect"
    	. /* ERROR "imported and not used" */ "reflect"
    )
    
    import "math" /* ERROR "imported and not used" */
    import m /* ERROR "imported as m and not used" */ "math"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/object.go

    	return &PkgName{object{nil, pos, pkg, name, Typ[Invalid], 0, black, nopos}, imported, false}
    }
    
    // Imported returns the package that was imported.
    // It is distinct from Pkg(), which is the package containing the import statement.
    func (obj *PkgName) Imported() *Package { return obj.imported }
    
    // A Const represents a declared constant.
    type Const struct {
    	object
    	val constant.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top