Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,644 for Imported (0.17 sec)

  1. test/interface/private.dir/private1.go

    // 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.
    
    // Imported by private.go, which should not be able to see the private method.
    
    package p
    
    type Exported interface {
    	private()
    }
    
    type Implementation struct{}
    
    func (p *Implementation) private() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 389 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. src/cmd/go/testdata/script/mod_sum_ambiguous.txt

    ! go list -deps .
    stderr '^use.go:3:8: missing go.sum entry needed to verify package example.com/ambiguous/a/b \(imported by m\) is provided by exactly one module; to add:\n\tgo get m$'
    
    cp go.sum.b-only go.sum
    ! go list example.com/ambiguous/a/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:37:31 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top