Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 776 for Imported (0.12 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    //
    //  1. (The import invariant.) Every module that provides a package transitively
    //     imported by any package or test in the main module is included as a root.
    //     This follows by induction from (1) and (3) above. Transitively-imported
    //     packages loaded during this invocation are marked with pkgInAll (1),
    //     and by hypothesis any transitively-imported packages loaded in previous
    //     invocations were already roots in rs (3).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/go/types/api.go

    	// error found.
    	Error func(err error)
    
    	// An importer is used to import packages referred to from
    	// import declarations.
    	// If the installed importer implements ImporterFrom, the type
    	// checker calls ImportFrom instead of Import.
    	// The type checker reports an error if an importer is needed
    	// but none was installed.
    	Importer Importer
    
    	// If Sizes != nil, it provides the sizing functions for package unsafe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api.go

    	// error found.
    	Error func(err error)
    
    	// An importer is used to import packages referred to from
    	// import declarations.
    	// If the installed importer implements ImporterFrom, the type
    	// checker calls ImportFrom instead of Import.
    	// The type checker reports an error if an importer is needed
    	// but none was installed.
    	Importer Importer
    
    	// If Sizes != nil, it provides the sizing functions for package unsafe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/go/types/issues_test.go

    }
    
    // TestIssue34921 verifies that we don't update an imported type's underlying
    // type when resolving an underlying type. Specifically, when determining the
    // underlying type of b.T (which is the underlying type of a.T, which is int)
    // we must not set the underlying type of a.T again since that would lead to
    // a race condition if package b is imported elsewhere, in a package that is
    // concurrently type-checked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/test.go

    			// The stack is supposed to be in the order x imports y imports z.
    			// We collect in the reverse order: z is imported by y is imported
    			// by x, and then we reverse it.
    			var stk []string
    			for p != nil {
    				stk = append(stk, p.ImportPath)
    				p = importerOf[p]
    			}
    			// complete the cycle: we set importer[p] = nil to break the cycle
    			// in importerOf, it's an implicit importerOf[p] == pTest. Add it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    const Doc = `check for unkeyed composite literals
    
    This analyzer reports a diagnostic for composite literals of struct
    types imported from another package that do not use the field-keyed
    syntax. Such literals are fragile because the addition of a new field
    (even if unexported) to the struct will cause compilation to fail.
    
    As an example,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

                 * the original `Base.bar` callable symbol instead of `MyObject.bar`, because there are
                 * no separate symbol for that case.
                 *
                 * Java statics present a similar case - they can be imported not only from the declaring class,
                 * but also from any subclass.
                 */
                private fun FirQualifiedAccessExpression.importableNameForImplicitlyDispatchedCallable(): FqName? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/convert_attr.cc

    namespace tensorflow {
    
    // Converts non func AttrValue proto into an MLIR attribute. Func attribute is
    // exclused in this function because the function might be renamed when the
    // function definition is imported.
    absl::StatusOr<mlir::Attribute> ConvertNonFuncAttributeValue(
        const AttrValue& value, mlir::Builder* builder) {
      switch (value.value_case()) {
        case AttrValue::kI:
          return builder->getI64IntegerAttr(value.i());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/issues_test.go

    }
    
    // TestIssue34921 verifies that we don't update an imported type's underlying
    // type when resolving an underlying type. Specifically, when determining the
    // underlying type of b.T (which is the underlying type of a.T, which is int)
    // we must not set the underlying type of a.T again since that would lead to
    // a race condition if package b is imported elsewhere, in a package that is
    // concurrently type-checked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/internal/stringslite/strings.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package stringslite implements a subset of strings,
    // only using packages that may be imported by "os".
    //
    // Tests for these functions are in the strings package.
    package stringslite
    
    import (
    	"internal/bytealg"
    	"unsafe"
    )
    
    func HasPrefix(s, prefix string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top