Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # This module selects the same versions in Go 1.16 and 1.17 for all modules
    # that provide packages (or test dependencies of packages) imported by the
    # main module. However, in Go 1.16 it selects a higher version of a
    # transitive module dependency that is not otherwise relevant to the main module.
    # As a result, Go 1.16 needs an additional checksum for the go.mod file of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

                                            ModelProblem.Severity.WARNING, ModelProblem.Version.V40)
                                    .setMessage("Ignored POM import for: " + toString(dependency) + " as already imported "
                                            + toString(present) + ". Add the conflicting managed dependency directly "
                                            + "to the dependencyManagement section of the POM."));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

    /// legalize_tf_with_tf2xla.cc for details). By default, TF2XLA fallback is not
    /// used.
    /// Note: This is a module pass because when legalizing with TF2XLA fallback,
    /// functions are imported into the module. Importing functions into a
    /// module is not thread safe.
    std::unique_ptr<OperationPass<ModuleOp>> createLegalizeTFPass(
        bool legalize_chlo = true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

                            problems.add(
                                    Severity.WARNING,
                                    Version.V40,
                                    "Ignored POM import for: " + toString(dependency) + " as already imported "
                                            + toString(present) + ". Add the conflicting managed dependency directly "
                                            + "to the dependencyManagement section of the POM.");
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

            .getDeclaredConstructors()
            .singleOrNull()
    }
    
    /**
     * Implicit dispatch receiver is present when an extension function declared in object
     * is imported somewhere else and used without directly referencing the object instance
     * itself:
     *
     * ```kt
     * import Foo.bar
     *
     * object Foo { fun String.bar() {} }
     *
     * fun usage() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc

    // RUN:   | %p/importer_test_min_max - \
    // RUN:   | flatbuffer_to_string - \
    // RUN:   | FileCheck --check-prefix=FB %s
    
    // Tests for verifying the tflite model with min/max can be imported
    // correctly.
    
    // NOLINTNEXTLINE
    static opt<std::string> inputFileName(llvm::cl::Positional,
                                          llvm::cl::desc("<input file>"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top