Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 545 for Imported (0.14 sec)

  1. src/go/doc/reader.go

    		}
    		if typ := r.lookupType(recvTypeName); typ != nil {
    			typ.methods.set(fun, r.mode&PreserveAST != 0)
    		}
    		// otherwise ignore the method
    		// TODO(gri): There may be exported methods of non-exported types
    		// that can be called because of exported values (consts, vars, or
    		// function results) of that type. Could determine if that is the
    		// case and then show those methods in an appropriate section.
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. src/cmd/dist/buildtool.go

    // if a newer copy needs to be substituted for the Go bootstrap copy when used
    // by the command packages. Paths ending with /... automatically
    // include all packages within subdirectories as well.
    // These will be imported during bootstrap as bootstrap/name, like bootstrap/math/big.
    var bootstrapDirs = []string{
    	"cmp",
    	"cmd/asm",
    	"cmd/asm/internal/...",
    	"cmd/cgo",
    	"cmd/compile",
    	"cmd/compile/internal/...",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/iimport.go

    	list := append(([]*types.Package)(nil), pkgList[1:]...)
    	slices.SortFunc(list, func(a, b *types.Package) int {
    		return strings.Compare(a.Path(), b.Path())
    	})
    	localpkg.SetImports(list)
    
    	// package was imported completely and without errors
    	localpkg.MarkComplete()
    	return localpkg, nil
    }
    
    type setConstraintArgs struct {
    	t          *types.TypeParam
    	constraint types.Type
    }
    
    type iimporter struct {
    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/cmd/go/internal/help/helpdoc.go

    		into a C archive file. The only callable symbols will be those
    		functions exported using a cgo //export comment. Requires
    		exactly one main package to be listed.
    
    	-buildmode=c-shared
    		Build the listed main package, plus all packages it imports,
    		into a C shared library. The only callable symbols will
    		be those functions exported using a cgo //export comment.
    		Requires exactly one main package to be listed.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/issues0.go

    import (
    	"fmt"
    	syn "regexp/syntax"
    	t1 "text/template"
    	t2 "html/template"
    )
    
    func issue7035() {
    	type T struct{ X int }
    	_ = func() {
    		fmt.Println() // must refer to imported fmt rather than the fmt below
    	}
    	fmt := new(T)
    	_ = fmt.X
    }
    
    func issue8066() {
    	const (
    		_ = float32(340282356779733661637539395458142568447)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/cmd/doc/doc_test.go

    	{
    		"type",
    		[]string{"-src", p, `ExportedType`},
    		[]string{
    			`Comment about exported type`, // Include comment.
    			`type ExportedType struct`,    // Type definition.
    			`Comment before exported field`,
    			`ExportedField.*Comment on line with exported field`,
    			`ExportedEmbeddedType.*Comment on line with exported embedded field`,
    			`unexportedType.*Comment on line with unexported embedded field`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    val dslMetaData by tasks.registering(ExtractDslMetaDataTask::class) {
        source(gradleApiSources)
        destinationFile = generatedBinFileFor("dsl-meta-data.bin")
    }
    
    // List of packages that are imported by default in Gradle build scripts
    val defaultImports = tasks.register("defaultImports", GenerateDefaultImports::class) {
        metaDataFile = dslMetaData.flatMap(ExtractDslMetaDataTask::getDestinationFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/fmt.go

    var LocalPkg *Pkg
    
    // UnsafePkg is package unsafe.
    var UnsafePkg *Pkg
    
    // BlankSym is the blank (_) symbol.
    var BlankSym *Sym
    
    // numImport tracks how often a package with a given name is imported.
    // It is used to provide a better error message (by using the package
    // path to disambiguate) if a package that appears multiple times with
    // the same name appears in an error message.
    var NumImport = make(map[string]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            verifyAll(receivedProblem) {
                fqid == 'dependency-version-catalog:no-import-files'
                contextualLabel == 'Problem: In version catalog testLibs, no files are resolved to be imported.'
                details == 'The imported dependency doesn\'t resolve into any file'
                solutions == [ 'Check the import statement, it should resolve into a single file' ]
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

          std::unique_ptr<xla::HloModule> hlo_module,
          xla::HloModule::CreateFromProto(computation.proto(), hlo_module_config));
    
      if (!RootInstructionIsTuple(*hlo_module)) {
        return tsl::errors::InvalidArgument("Imported XLA Root is not a tuple op");
      }
    
      if (op_->getNumOperands() !=
          hlo_module->entry_computation()->num_parameters()) {
        return tsl::errors::InvalidArgument(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top