Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 7,374 for mprotect (0.21 sec)

  1. platforms/documentation/docs/src/snippets/testing/testReport/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    // tag::test-report[]
    plugins {
        id 'java'
    }
    
    // Disable the test report for the individual test task
    test {
        reports.html.required = false
    }
    
    // Share the test report data to be aggregated for the whole project
    configurations {
        binaryTestResultsElements {
            canBeResolved = false
            canBeConsumed = true
            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 676 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/swift/testReport/groovy/buildSrc/src/main/groovy/myproject.xctest-conventions.gradle

                // Disable the test report for the individual test task
                reports.html.required = false
            }
        }
    }
    
    // Share the test report data to be aggregated for the whole project
    configurations {
        binaryTestResultsElements {
            canBeResolved = false
            attributes {
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 772 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/multi-project-standards.png

    multi-project-standards.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 90.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/ci-systems/travis-enable-project.png

    travis-enable-project.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys   Lremovexattr(path string, attr string) (err error) = SYS___LREMOVEXATTR_A
    //sys	Lutimes(path string, tv []Timeval) (err error) = SYS___LUTIMES_A
    //sys   Mprotect(b []byte, prot int) (err error) = SYS_MPROTECT
    //sys   Msync(b []byte, flags int) (err error) = SYS_MSYNC
    //sys   Console2(cmsg *ConsMsg2, modstr *byte, concmd *uint32) (err error) = SYS___CONSOLE2
    
    // Pipe2 begin
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/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
    - 1.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/multi-project-structure.png

    multi-project-structure.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 01:30:02 UTC 2023
    - 81.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-create-project.png

    teamcity-create-project.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignmentWithPlatform/groovy/buildSrc/src/main/groovy/myproject.java-library-conventions.gradle

    plugins {
        id 'java-library'
        id 'myproject.publishing-conventions'
    }
    
    publishing {
        publications {
            maven(MavenPublication) {
                from components.java
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 194 bytes
    - Viewed (0)
  10. build-logic/uber-plugins/src/main/kotlin/gradlebuild.instrumented-project.gradle.kts

    }
    
    val libs = project.the<ExternalModulesExtension>()
    
    dependencies {
        api(project(":internal-instrumentation-api"))
        implementation(project(":base-asm"))
        compileOnly(libs.asm)
        compileOnly(libs.asmUtil)
        compileOnly(libs.asmTree)
        annotationProcessor(project(":internal-instrumentation-processor"))
        annotationProcessor(platform(project(":distributions-dependencies")))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:53:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top