Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 673 for impacted (0.17 sec)

  1. src/go/ast/resolve.go

    			// import failed. Consider adjusting the logic here a bit.
    
    			// local name overrides imported package name
    			name := pkg.Name
    			if spec.Name != nil {
    				name = spec.Name.Name
    			}
    
    			// add import to file scope
    			if name == "." {
    				// merge imported scope with file scope
    				for _, obj := range pkg.Data.(*Scope).Objects {
    					p.declare(fileScope, pkgScope, obj)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/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: Thu Jul 06 13:09:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/objectivec/ObjectiveCLanguageIncrementalCompileIntegrationTest.groovy

            "replacement header dir after" | '"src/main/headers", "src/replacement-headers"'
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles only source file that imported changed header file"() {
            given:
            sourceFile << """
                #import "${otherHeaderFile.name}"
    """
            and:
            outputs.snapshot { run "mainExecutable" }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/list_issue_59905.txt

    level1a${/}pkg.go:5:2: "test/main/level1a/level2y" imported as level2x and not used
    level1a${/}pkg.go:8:39: undefined: level2y
     # test/main/level1b
    level1b${/}pkg.go:5:2: level2x redeclared in this block
    	level1b${/}pkg.go:4:2: other declaration of level2x
    level1b${/}pkg.go:5:2: "test/main/level1b/level2y" imported as level2x and not used
    level1b${/}pkg.go:8:39: undefined: level2y
    ]
    -- wanterr_61816 --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 17:34:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/kotlin/Module.md

    All members of this package are implicitly imported and readily available in `.gradle.kts` scripts in addition to the Java API <a href="../userguide/writing_build_scripts.html#script-default-imports">default imports</a>.
    
    # Package org.gradle.kotlin.dsl
    
    The `org.gradle.kotlin.dsl` package contains the Gradle Kotlin DSL public API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 22:09:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_import_err.txt

    # Test that errors importing packages are reported on the importing package,
    # not the imported package.
    
    env GO111MODULE=off # simplify vendor layout for test
    
    go list -e -deps -f '{{.ImportPath}}: {{.Error}}' ./importvendor
    stdout 'importvendor: importvendor[\\/]p.go:2:8: vendor/p must be imported as p'
    stdout 'vendor/p: <nil>'
    
    go list -e -deps -f '{{.ImportPath}}: {{.Error}}' ./importinternal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 20:27:52 UTC 2023
    - 771 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/export.go

    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    )
    
    // importfunc declares symbol s as an imported function with type t.
    func importfunc(s *types.Sym, t *types.Type) {
    	fn := ir.NewFunc(src.NoXPos, src.NoXPos, s, t)
    	importsym(fn.Nname)
    }
    
    // importvar declares symbol s as an imported variable with type t.
    func importvar(s *types.Sym, t *types.Type) {
    	n := ir.NewNameAt(src.NoXPos, s, t)
    	n.Class = ir.PEXTERN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:28 UTC 2023
    - 838 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.h

    // expressed with tf_executor dialect. It does not require a session to be
    // created and it does not perform any graph transformation. If `exported_names`
    // is std::nullopt, all signatures will be imported. Otherwise, only names
    // in `exported_names` are imported.
    //
    // Note that the word `Lite` means it is a lighter version compared to
    // ConvertSavedModelV1ToMlir(), and is not related to TFLite.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_deprecated.txt

    go get example.com/deprecated/a@v1.0.0
    stderr '^go: module example.com/deprecated/a is deprecated: in example.com/deprecated/a@v1.9.0$'
    
    # 'go get pkg' should show a deprecation message for a module providing
    # packages directly imported by pkg.
    go get ./use/a
    stderr '^go: module example.com/deprecated/a is deprecated: in example.com/deprecated/a@v1.9.0$'
    
    # 'go get pkg' may show a deprecation message for an indirectly required module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_lazy_test_of_test_dep.txt

    go mod edit -go=1.17 c2/go.mod
    go mod edit -go=1.17
    
    
    # After changing to 'go 1.17` uniformly, 'go list -m all' should prune out
    # example.com/c, because it is not imported by any package (or test of a package)
    # transitively imported by the main module.
    #
    # example.com/a is imported,
    # and example.com/b is needed in order to run 'go test example.com/a',
    # but example.com/c is not needed because we don't expect the user to need to run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 19:32:28 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top