Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 275 for imposes (0.19 sec)

  1. src/cmd/go/internal/modindex/read.go

    		if p.Doc == "" && !isTest && !isXTest {
    			if synopsis := tf.synopsis(); synopsis != "" {
    				p.Doc = synopsis
    			}
    		}
    
    		// Record Imports and information about cgo.
    		isCgo := false
    		imports := tf.imports()
    		for _, imp := range imports {
    			if imp.path == "C" {
    				if isTest {
    					badGoFile(name, fmt.Errorf("use of cgo in test %s not supported", name))
    					continue
    				}
    				isCgo = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    # error, with useful suggestions about how to resolve it.
    
    cp go.mod go.mod.orig
    ! go mod tidy
    stderr '^go: example\.com/m imports\n\texample\.net/lazy tested by\n\texample\.net/lazy.test imports\n\texample\.com/retract/incompatible loaded from example\.com/retract/incompatible@v1\.0\.0,\n\tbut go 1\.16 would select v2\.0\.0\+incompatible\n\n'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/go/ast/filter.go

    					// - 2 imports exist but only one has a comment
    					// - 2 imports exist and they both have (possibly
    					//   different) comments
    					imports = append(imports, imp)
    					seen[path] = true
    				}
    			}
    		}
    	} else {
    		// Iterate over filenames for deterministic order.
    		for _, filename := range filenames {
    			f := pkg.Files[filename]
    			imports = append(imports, f.Imports...)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/go/types/resolver.go

    // into their respective scopes. It also performs imports and associates
    // methods with receiver base type names.
    func (check *Checker) collectObjects() {
    	pkg := check.pkg
    
    	// pkgImports is the set of packages already imported by any package file seen
    	// so far. Used to avoid duplicate entries in pkg.imports. Allocate and populate
    	// it (pkg.imports may not be empty if we are checking test files incrementally).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. cmd/import-boss/main.go

    		to   string
    	}
    
    	adj := make(map[edge]bool)
    	imports := make(map[string]struct{})
    	for from, tos := range in {
    		for _, to := range tos {
    			adj[edge{from, to}] = true
    			imports[to] = struct{}{}
    		}
    	}
    
    	// Warshal's algorithm
    	for k := range in {
    		for i := range in {
    			if !adj[edge{i, k}] {
    				continue
    			}
    			for j := range imports {
    				if adj[edge{i, j}] {
    					continue
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    # does not privilege roots above other dependencies).
    #
    # However, the overall build list is identical for both versions.
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsDslSchema.kt

    
    private
    val isTopLevelPluginManagementBlock = isTopLevelElement.implies(isPluginManagementCall)
    
    
    private
    val ignoreTopLevelPluginsPluginManagementAndConventions = isTopLevelElement.implies(
        isPluginManagementCall.not()
            .and(isTopLevelPluginsBlock.not())
            .and(isConventionsConfiguringCall.not())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

                }
    
                ${mavenCentralRepository(GradleDsl.KOTLIN)}
            """
            def conventionPluginFile = testDirectory.file(file)
            conventionPluginFile << """
                ${snippets.imports}
    
                ${snippets.body}
            """
    
            buildFile("""
                plugins {
                    id("test-convention-plugin")
                }
            """)
    
            executer.noDeprecationChecks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/ConventionsInterpretationSequenceStep.kt

    import org.gradle.internal.declarativedsl.analysis.DefaultOperationGenerationId
    import org.gradle.internal.declarativedsl.analysis.and
    import org.gradle.internal.declarativedsl.analysis.implies
    import org.gradle.internal.declarativedsl.common.dependencyCollectors
    import org.gradle.internal.declarativedsl.common.gradleDslGeneralSchema
    import org.gradle.internal.declarativedsl.evaluationSchema.SimpleInterpretationSequenceStep
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/ArgumentsConverterGenerator.kt

            val imports = buildList {
                add("org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder")
                add("org.jetbrains.kotlin.analysis.api.fir.KaFirSession")
                convertersMap.values.flatMapTo(this) { it.importsToAdd }
                convertersMap.keys.mapNotNullTo(this) { it.qualifiedName }
            }
            printImports(imports)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top