Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,377 for Imported (0.13 sec)

  1. tensorflow/cc/saved_model/metrics.h

    // the saved_model_path of the SM when it is imported.
    monitoring::GaugeCell<std::string>& SavedModelReadPath();
    
    // Returns "/tensorflow/core/saved_model/read/path_and_fingerprint" cell, which
    // contains the path (saved_model_path) and singleprint (concatenation of
    // graph_def_program_hash, signature_def_hash, saved_object_graph_hash,
    // and checkpoint_hash) of the SavedModel when it is imported.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/vendor_test_issue14613.txt

    # test with specified _test.go should work too
    cd $GOPATH/src
    go test github.com/clsung/go-vendor-issue-14613/vendor_test.go
    
    # test with imported and not used
    ! go test github.com/clsung/go-vendor-issue-14613/vendor/mylibtesttest/myapp/myapp_test.go
    stderr 'imported and not used'
    
    -- $GOPATH/src/github.com/clsung/go-vendor-issue-14613/./vendor_test.go --
    package main
    
    import (
    	"testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/object.go

    // The remaining arguments set the attributes found with all Objects.
    func NewPkgName(pos syntax.Pos, pkg *Package, name string, imported *Package) *PkgName {
    	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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/importdecl1/importdecl1b.go

    // Copyright 2014 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.
    
    package importdecl1
    
    import . /* ERRORx ".unsafe. imported and not used" */ "unsafe"
    
    type B interface {
    	A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 270 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // [GetPackageFunc] (if any) is also concurrency-safe.
    func (d *Decoder) Decode(read func(pkgPath string) ([]byte, error)) (*Set, error) {
    	// Read facts from imported packages.
    	// Facts may describe indirectly imported packages, or their objects.
    	m := make(map[key]analysis.Fact) // one big bucket
    	for _, imp := range d.pkg.Imports() {
    		logf := func(format string, args ...interface{}) {
    			if debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/go/internal/srcimporter/srcimporter.go

    // os functions. The file set is used to track position information of package
    // files; and imported packages are added to the packages map.
    func New(ctxt *build.Context, fset *token.FileSet, packages map[string]*types.Package) *Importer {
    	return &Importer{
    		ctxt:     ctxt,
    		fset:     fset,
    		sizes:    types.SizesFor(ctxt.Compiler, ctxt.GOARCH), // uses go/types default if GOARCH not found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 18:54:32 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/tac_importer_exporter.h

    // See TacModule in how to register it with the module and use it.
    class TacImporter {
     public:
      virtual ~TacImporter() = default;
    
      // Imports and returns the Module for the imported program.
      virtual absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> Import() = 0;
    };
    
    // Interface for exporting a module.
    // Users should implement the interface for exporting the result from TAC
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testshared/testdata/depBaseInternal/dep.go

    // Copyright 2023 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.
    
    // depBaseInternal is only imported by depBase.
    
    package depBaseInternal
    
    var Initialized bool
    
    func init() {
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:46:11 UTC 2023
    - 292 bytes
    - Viewed (0)
  9. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GrammarDelegate.java

        }
    
        /**
         * Retrieves the name of this vocabulary imported by this grammar.
         *
         * @return The grammar's imported vocabulary name.
         */
        public String getImportVocab() {
            return importVocab;
        }
    
        /**
         * Retrieves the name of this vocabulary exported by this grammar.
         *
         * @return The grammar's exported vocabulary name.
         */
        public String getExportVocab() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

        void handlesAntImportsOk() {
            testFile('imported.xml') << """
    <project>
        <target name='target1'>
            <mkdir dir='build'/>
            <touch file='build/target1.txt'/>
        </target>
    </project>
    """
            testFile('build.xml') << """
    <project>
        <import file="imported.xml"/>
        <target name='target2'>
            <mkdir dir='build'/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top