Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,251 for mprotect (0.15 sec)

  1. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/main/groovy/myproject.library-conventions.gradle

                name "myOrgPrivateRepo"
                url 'build/my-repo'
            }
        }
    }
    
    // The project requires libraries to have a README containing sections configured below
    // tag::use-java-class[]
    def readmeCheck = tasks.register('readmeCheck', com.example.ReadmeVerificationTask) {
        // Expect the README in the project directory
        readme = layout.projectDirectory.file("README.md")
        // README must contain a Service API header
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. .idea/codeStyles/Project.xml

    <component name="ProjectCodeStyleConfiguration">
      <code_scheme name="Project" version="173">
        <option name="LINE_SEPARATOR" value="&#10;" />
        <option name="RIGHT_MARGIN" value="140" />
        <JavaCodeStyleSettings>
          <option name="PREFER_LONGER_NAMES" value="false" />
          <option name="PACKAGES_TO_USE_IMPORT_ON_DEMAND">
            <value>
              <package name="java.awt" withSubpackages="false" static="false" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue May 02 13:36:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. .idea/codeStyles/Project.xml

    <component name="ProjectCodeStyleConfiguration">
      <code_scheme name="Project" version="173">
        <option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="999" />
        <option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="999" />
        <option name="IMPORT_LAYOUT_TABLE">
          <value>
            <package name="" withSubpackages="true" static="true" />
            <emptyLine />
            <package name="" withSubpackages="true" static="false" />
            <emptyLine />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 31 14:47:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/main/kotlin/myproject.library-conventions.gradle.kts

    // Define Java Library conventions for this organization.
    // Projects need to use the organization's Java conventions and publish using Maven Publish
    
    // tag::plugins[]
    plugins {
        `java-library`
        `maven-publish`
        id("myproject.java-conventions")
    }
    // end::plugins[]
    
    // Projects have the 'com.example' group by convention
    group = "com.example"
    
    publishing {
        publications {
            create<MavenPublication>("library") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1000 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/groovy/buildSrc/src/main/groovy/myproject.greeting.gradle

    tasks.register("greet", com.example.GreetingTask) {
        greeting = "Hello from 'myproject.greeting' plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 110 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/kotlin/buildSrc/src/main/kotlin/myproject.greeting.gradle.kts

    tasks.register<com.example.GreetingTask>("greet") {
        greeting = "Hello from 'myproject.greeting' plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 110 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/java/jvm-multi-project-with-additional-test-types/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

        dependsOn(integrationTestTask)
    }
    
    dependencies {
        testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
        testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
    
        integrationTestImplementation project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r25/ToolingApiEclipseModelCrossVersionSpec.groovy

            EclipseProject aProject = rootProject.children.find { it.name == 'a'}
            EclipseProject bProject = rootProject.children.find { it.name == 'b'}
            EclipseProject cProject = rootProject.children.find { it.name == 'c'}
            then:
            aProject.classpath.find { it.file.name == "someArtifact-17.0.jar" }
            bProject.classpath.find { it.file.name == "someArtifact-16.0.1.jar" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    }
    
    testing {
        suites {
            test {
                useJUnitJupiter('5.7.1')
            }
    
            integrationTest(JvmTestSuite) {
                dependencies {
                    implementation project()
                }
    
                targets {
                    all {
                        testTask.configure {
                            shouldRunAfter(test)
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 594 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-additional-test-types/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    }
    
    testing {
        suites {
            test {
                useJUnitJupiter('5.7.1')
            }
    
            integrationTest(JvmTestSuite) {
                dependencies {
                    implementation project()
                }
    
                targets {
                    all {
                        testTask.configure {
                            shouldRunAfter(test)
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 594 bytes
    - Viewed (0)
Back to top