Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,080 for imposes (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/script/list_pgo_issue66218.txt

    # Test that pgo properly splits off the Imports field so that list doesn't alias
    # the non-pgo variant's slice when it modifies the pgo variant's Imports field to
    # add the [.ForMain] suffix.
    
    go list -f 'ImportPath: "{{.ImportPath}}", Imports: "{{.Imports}}", ImportMap: "{{.ImportMap}}"' m/a m/b
    cmp stdout want
    
    -- want --
    ImportPath: "m/a", Imports: "[m/b [m/a]]", ImportMap: "map[m/b:m/b [m/a]]"
    ImportPath: "m/b", Imports: "[m/c]", ImportMap: "map[]"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 615 bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDependencyInferenceIntegrationTest.groovy

    import spock.lang.Issue
    
    class TaskDependencyInferenceIntegrationTest extends AbstractIntegrationSpec implements TasksWithInputsAndOutputs {
        def "dependency declared using task provider implies dependency on task"() {
            buildFile << """
                // verify that eager and lazy providers work
                def providerA = tasks.register("a")
                tasks.create("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:20:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testerrors/ptr_test.go

    type ptrTest struct {
    	name      string   // for reporting
    	c         string   // the cgo comment
    	c1        string   // cgo comment forced into non-export cgo file
    	imports   []string // a list of imports
    	support   string   // supporting functions
    	body      string   // the body of the main function
    	extra     []extra  // extra files
    	fail      bool     // whether the test should fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            given:
            buildFile << """
            ${imports()}
            ${captureAndAssert()}
            """
    
            expect:
            buildSucceeds()
    
        }
    
        def "should capture basic data via when the daemon is running in continuous mode"() {
            given:
            buildFile << """
            ${imports()}
            ${captureAndAssert()}
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/references/FirIdeNormalAnalysisSourceModuleReferenceImportAliasTestGenerated.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.3K bytes
    - Viewed (0)
  10. 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)
Back to top