Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,561 for mprotect (0.62 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

    Projects:
    
    ------------------------------------------------------------
    Root project 'my-root-project'
    ------------------------------------------------------------
    
    Root project 'my-root-project'
    +--- Project ':p1'
    \\--- Project ':p2'
         \\--- Project ':p2:p22'
    
    Included builds:
    
    \\--- Included build ':another'
    """
        }
    
        def "reports project structure with transitive composite"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

            ProjectBuilder.builder().withName("app2").withParent(project).build()
    
            project.pluginManager.apply(SwiftPackageManagerExportPlugin)
            project.pluginManager.apply("swift-library")
    
            project.evaluate()
    
            expect:
            def generateManifest = project.tasks['generateSwiftPmManifest']
            def products = generateManifest.package.get().products
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            when:
            project.pluginManager.apply(CppLibraryPlugin)
            project.evaluate()
    
            then:
            project.components.main == project.library
            project.library.binaries.get().name == ['mainDebug', 'mainRelease']
            project.components.containsAll(project.library.binaries.get())
    
            and:
            def binaries = project.library.binaries.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

                }
    
                project(':impl') {
                    dependencies {
                        implementation project(':api')
                    }
                }
    
                project(':app') {
                    dependencies {
                        implementation project(':api')
                        testImplementation project(':impl')
                        runtimeOnly project(':impl')
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            then:
            def messages = models.left
            messages.size() == 2
            messages[0] == "It works from project :"
            messages[1] == "It works from project :a"
            def model = models.right
            model.size() == 2
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginTest.groovy

            project.library instanceof SwiftLibrary
            project.library.module.get() == "TestLib"
            project.library.swiftSource.files == [src] as Set
        }
    
        def "registers a component for the library with default linkage"() {
            when:
            project.pluginManager.apply(SwiftLibraryPlugin)
            project.evaluate()
    
            then:
            project.components.main == project.library
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/ReactorReader.java

            MavenProject project = getProject(artifact);
    
            if (project != null) {
                File file = findArtifact(project, artifact);
                if (file == null && project != project.getExecutionProject()) {
                    file = findArtifact(project.getExecutionProject(), artifact);
                }
                return file;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            project.targets.size() == 2
            assertTargetIsTool(project.targets[0], 'App', 'app')
            project.targets[1].assertIsIndexerFor(project.targets[0])
    
            project.products.children.size() == 1
            project.products.children[0].path == exe("build/install/main/debug/lib/app").absolutePath
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

        artifacts {
            'default' jar
        }
    }
    
    project('a') {
        dependencies {
            first project(':b')
            other project(':b')
        }
    }
    
    project('b') {
        dependencies {
            first project(':c')
        }
    }
    
    project('c') {
        dependencies {
            first project(':a')
        }
    }
    """
            when:
            resolve.prepare("first")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            given:
            project.pluginManager.apply(NativeBasePlugin)
            project.pluginManager.apply(MavenPublishPlugin)
            project.components.add(component)
            project.group = "my.group"
            project.version = "1.2"
            ((ProjectInternal) project).evaluate()
    
            expect:
            def publishing = project.publishing
            publishing.publications.size() == 3
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top