Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,078 for imposes (0.13 sec)

  1. platforms/documentation/docs/src/docs/kotlin/Module.md

    # Package org.gradle.kotlin.dsl
    
    The `org.gradle.kotlin.dsl` package contains the Gradle Kotlin DSL public API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 22:09:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_errors.txt

    # cannot be resolved.
    
    ! go get
    stderr '^go: example.com/m imports\n\texample.com/badimport imports\n\texample.net/oops: cannot find module providing package example.net/oops$'
    cmp go.mod.orig go.mod
    
    cd importsyntax
    
    
    # A syntax error in a dependency prevents the compiler from needing that
    # dependency's imports, so 'go get' should not report an error when those
    # imports cannot be resolved: it has all of the dependencies that the compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_e.txt

    ! go mod tidy
    
    stderr '^go: example.com/untidy imports\n\texample.net/directnotfound: cannot find module providing package example.net/directnotfound: module example.net/directnotfound: reading http://.*: 404 Not Found$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/imports/scan_test.go

    			if err != nil {
    				t.Fatalf("error reading want: %v", err)
    			}
    			want := string(bytes.TrimSpace(wantData))
    
    			imports, _, err := ScanDir(path.Join("testdata", dir.Name()), tags)
    			if err != nil {
    				t.Fatal(err)
    			}
    			got := strings.Join(imports, "\n")
    			if got != want {
    				t.Errorf("ScanDir: got imports:\n%s\n\nwant:\n%s", got, want)
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 21:55:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftMainWithCppDep.groovy

        final GreeterElement greeter
        final SwiftSum sum
        String[] imports = ['cppGreeter']
    
        SwiftMainWithCppDep(GreeterElement greeter) {
            this(greeter, new SwiftSum())
        }
    
        SwiftMainWithCppDep(GreeterElement greeter, String[] imports) {
            this(greeter, new SwiftSum())
            this.imports = imports
        }
    
        SwiftMainWithCppDep(GreeterElement greeter, SwiftSum sum) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/go/types/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: Wed Apr 03 18:48:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/mdo/model-v3.vm

        #set ( $types = { } )
        #set ( $imports = $class.getClass().forName("java.util.TreeSet").newInstance() )
        #set ( $dummy = $imports.add( "java.io.Serializable" ) )
        #set ( $dummy = $imports.add( "java.util.AbstractList" ) )
        #set ( $dummy = $imports.add( "java.util.Collections" ) )
        #set ( $dummy = $imports.add( "java.util.HashMap" ) )
        #set ( $dummy = $imports.add( "java.util.List" ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. cmd/importverifier/importverifier.go

    }
    
    // forbiddenImportsFor determines all of the forbidden
    // imports for a package given the import restrictions
    // and returns a deduplicated list of them
    func (i *ImportRestriction) forbiddenImportsFor(pkg Package) []string {
    	forbiddenImportSet := map[string]struct{}{}
    	imports := pkg.Imports
    	if !i.ExcludeTests {
    		imports = append(imports, append(pkg.TestImports, pkg.XTestImports...)...)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/Resolver.kt

    
    interface Resolver {
        fun resolve(schema: AnalysisSchema, imports: List<Import>, topLevelBlock: Block): ResolutionResult
    }
    
    
    class ResolverImpl(
        private val codeAnalyzer: CodeAnalyzer,
        private val errorCollector: ErrorCollector,
        private val generationId: OperationGenerationId
    ) : Resolver {
        override fun resolve(schema: AnalysisSchema, imports: List<Import>, topLevelBlock: Block): ResolutionResult {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/gopath_local.txt

    env GO111MODULE=off  # Relative imports only work in GOPATH mode.
    
    [short] skip
    
    # Imports should be resolved relative to the source file.
    go build testdata/local/easy.go
    exec ./easy$GOEXE
    stdout '^easysub\.Hello'
    
    # Ignored files should be able to import the package built from
    # non-ignored files in the same directory.
    go build -o easysub$GOEXE testdata/local/easysub/main.go
    exec ./easysub$GOEXE
    stdout '^easysub\.Hello'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top