Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,201 for imposes (0.15 sec)

  1. src/sort/gen_sort_variants.go

    	// Path is the file path into which the generator will emit the code for this
    	// variant.
    	Path string
    
    	// Package is the package this code will be emitted into.
    	Package string
    
    	// Imports is the imports needed for this package.
    	Imports string
    
    	// FuncSuffix is appended to all function names in this variant's code. All
    	// suffixes should be unique within a package.
    	FuncSuffix string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. src/go/ast/resolve.go

    	imports := make(map[string]*Object)
    
    	// complete file scopes with imports and resolve identifiers
    	for _, file := range files {
    		// ignore file if it belongs to a different package
    		// (error has already been reported)
    		if file.Name.Name != pkgName {
    			continue
    		}
    
    		// build file scope by processing all imports
    		importErrors := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/references/FirStandaloneNormalAnalysisSourceModuleReferenceImportAliasTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/imports/importAliases"), Pattern.compile("^(.+)\\.kt$"), null, true);
      }
    
      @Test
      @TestMetadata("classAlias.kt")
      public void testClassAlias() {
        runTest("analysis/analysis-api/testData/imports/importAliases/classAlias.kt");
      }
    
      @Test
      @TestMetadata("classAliasWithCompanionObject.kt")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 15:30:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_error.txt

    ! stderr 'package nonexist is not in std'
    stderr '^go: issue27063 imports\n\tnonexist.example.com: cannot find module providing package nonexist.example.com'
    stderr '^go: issue27063 imports\n\tissue27063/other imports\n\tother.example.com/nonexist: cannot find module providing package other.example.com/nonexist'
    
    ! go mod vendor
    ! stderr 'package nonexist is not in std'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ImportTest.kt

            )
        }
    
        @Test
        fun `collects basic imports`() {
            val imports = listOf(
                importOf("a", "b", "C"),
                importOf("a", "b", "c", "d")
            )
            val analysisContext = testContext()
            val result = defaultCodeResolver().collectImports(imports, analysisContext)
    
            assertEquals(
                mapOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_constraints.txt

    # when they are excluded by build constraints.
    
    # Linux and cgo files should be included when building in that configuration.
    env GOOS=linux
    env GOARCH=amd64
    env CGO_ENABLED=1
    go list -f '{{range .GoFiles}}{{.}} {{end}}'
    stdout '^cgotag.go empty.go suffix_linux.go tag.go $'
    go list -f '{{range .CgoFiles}}{{.}} {{end}}'
    stdout '^cgoimport.go $'
    go list -f '{{range .Imports}}{{.}} {{end}}'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 04 23:54:27 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/package.go

    // If pkg uses cgo and the FakeImportC configuration option
    // was enabled, the imports list may contain a fake "C" package.
    func (pkg *Package) Imports() []*Package { return pkg.imports }
    
    // SetImports sets the list of explicitly imported packages to list.
    // It is the caller's responsibility to make sure list elements are unique.
    func (pkg *Package) SetImports(list []*Package) { pkg.imports = list }
    
    func (pkg *Package) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 06 13:09:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftXCTestWithDepAndCustomXCTestSuite.groovy

        String testSuiteName
        String methodName
        String assertion
        String[] imports
        String[] importsTestable
    
        SwiftXCTestWithDepAndCustomXCTestSuite(
            String projectName,
            String classToTest,
            String assertion,
            String[] imports,
            String[] importsTestable
        ) {
            super(projectName)
            this.testSuiteName = classToTest + "Test"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/test.go

    			pmain.Internal.Imports = append(pmain.Internal.Imports, ptest)
    			pmain.Imports = append(pmain.Imports, ptest.ImportPath)
    			t.ImportTest = true
    		}
    		if pxtest != nil {
    			pmain.Internal.Imports = append(pmain.Internal.Imports, pxtest)
    			pmain.Imports = append(pmain.Imports, pxtest.ImportPath)
    			t.ImportXtest = true
    		}
    
    		// Sort and dedup pmain.Imports.
    		// Only matters for go list -test output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirNonStarImportingScope.kt

        builder: KaSymbolByFirBuilder,
    ) : KaFirBasedScope<FirAbstractSimpleImportingScope>(firScope, builder) {
    
        private val imports: List<NonStarImport> by cached {
            buildList {
                firScope.simpleImports.values.forEach { imports ->
                    imports.forEach { import ->
                        val importedClassId = import.importedName?.let { importedName ->
                            val importedClassId =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top