Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 6,875 for projets (0.23 sec)

  1. platforms/native/language-native/build.gradle.kts

        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":base-services"))
        api(project(":build-operations"))
        api(project(":concurrent"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":files"))
        api(project(":file-collections"))
        api(project(":file-temp"))
        api(project(":hashing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/build.gradle.kts

        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Build operations are our way to inspect the process of executing a build"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(libs.jsr305)
        api(projects.stdlibJavaExtensions)
    
        implementation(libs.slf4jApi)
    
        testFixturesImplementation(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 394 bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/apache/apache/1/apache-1.pom

           define the settings common to all projects at Apache -->
      <groupId>org.apache</groupId>
      <artifactId>apache</artifactId>
      <version>1</version>
      <packaging>pom</packaging>
      <name>The Apache Software Foundation</name>
      <description>
        The Apache Software Foundation provides support for the Apache community of open-source software projects.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/native/testing-native/build.gradle.kts

        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":diagnostics"))
        api(project(":stdlib-java-extensions"))
        api(project(":language-native"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":platform-base"))
        api(project(":platform-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canUseDynamicVersions/projectA-1.2-ivy.xml

    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectA"
    		revision="1.2"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectA" type="jar" ext="jar" conf="*"/>
    	</publications>
        <dependencies>
            <dependency org="test" name="projectB" rev="latest.release" conf="runtime->default"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 519 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectB-1.5-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectB"
    		revision="1.5"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
    	</publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 392 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectB-2.1.5-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectB"
    		revision="2.1.5"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
    	</publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 394 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_testing.adoc

    == Test execution
    
    Gradle executes tests in a separate (‘forked’) process.
    
    You can control how the test process is launched via several properties on the link:{groovyDslPath}/org.gradle.nativeplatform.test.tasks.RunTestExecutable.html[RunTestExecutable] task, including the following:
    
    `ignoreFailures` - default: false::
    If this property is `true`, Gradle will continue with the project’s build once the tests have completed, even if some of them have failed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/plugin_reference.adoc

    <<idea_plugin.adoc#idea_plugin,IntelliJ IDEA>>::
    Generates IDEA project files for the build that can be opened by the IDE. It can also be used to fine tune IDEA's import process for Gradle builds.
    
    <<visual_studio_plugin.adoc#visual_studio_plugin,Visual Studio>>::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        Path getPomPath();
    
        /**
         * Sets the POM file of the project to build. Note that providing the path to a POM file via this method will make
         * the model builder operate in project mode. This mode is meant for effective models that are employed during the
         * build process of a local project. Hence the effective model will support the notion of a project directory. To
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top