Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 673 for impacted (0.13 sec)

  1. src/go/types/package.go

    func (pkg *Package) MarkComplete() { pkg.complete = true }
    
    // Imports returns the list of packages directly imported by
    // pkg; the list is in source order.
    //
    // If pkg was loaded from export data, Imports includes packages that
    // provide package-level objects referenced by pkg. This may be more or
    // less than the set of packages directly imported by pkg's source code.
    //
    // If pkg uses cgo and the FakeImportC configuration option
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/types2/resolver.go

    					}
    					// merge imported scope with file scope
    					for name, obj := range imp.scope.elems {
    						// Note: Avoid eager resolve(name, obj) here, so we only
    						// resolve dot-imported objects as needed.
    
    						// A package scope may contain non-exported objects,
    						// do not import them!
    						if isExported(name) {
    							// declare dot-imported object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. src/go/types/resolver.go

    					}
    					// merge imported scope with file scope
    					for name, obj := range imp.scope.elems {
    						// Note: Avoid eager resolve(name, obj) here, so we only
    						// resolve dot-imported objects as needed.
    
    						// A package scope may contain non-exported objects,
    						// do not import them!
    						if token.IsExported(name) {
    							// declare dot-imported object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/metrics.h

    // the saved_model_checksum of the SM's fingerprint when it is imported.
    monitoring::GaugeCell<std::string>& SavedModelReadFingerprint();
    
    // Returns "/tensorflow/core/saved_model/read/path" cell, wich contains
    // the saved_model_path of the SM when it is imported.
    monitoring::GaugeCell<std::string>& SavedModelReadPath();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/script/vendor_resolve.txt

    env GO111MODULE=off
    ! go build p
    stderr 'must be imported as x'
    
    -- p/p.go --
    package p
    
    import (
    	_ "q/y"
    	_ "q/z"
    )
    -- q/vendor/x/x.go --
    package x
    -- q/y/y.go --
    package y
    
    import _ "x"
    -- q/z/z.go --
    package z
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 237 bytes
    - Viewed (0)
  8. test/fixedbugs/issue15470.go

    // Copyright 2016 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 15470: Make sure special-case signatures can
    // be exported and imported w/o problems.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 00:42:13 UTC 2016
    - 288 bytes
    - Viewed (0)
  9. test/fixedbugs/bug504.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo mishandled a reference to a type alias in a package that was
    // not directly imported.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 19:02:09 UTC 2017
    - 288 bytes
    - Viewed (0)
  10. test/fixedbugs/issue6428.go

    // errorcheck
    
    // Copyright 2020 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 p
    
    import . "testing" // ERROR "imported and not used"
    
    type S struct {
    	T int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 07:53:10 UTC 2020
    - 281 bytes
    - Viewed (0)
Back to top