Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for jmx (0.02 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

         * Whether or not to expose functionality via JMX under {@code org.jacoco:type=Runtime}. Defaults to {@code false}.
         *
         * The configuration of the jmx property is only taken into account if the used JaCoCo version supports this option (JaCoCo version >= 0.6.2)
         */
        @Input
        public boolean isJmx() {
            return jmx;
        }
    
        public void setJmx(boolean jmx) {
            this.jmx = jmx;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/test/groovy/org/gradle/testing/jacoco/plugins/JacocoTaskExtensionSpec.groovy

            expect:
            extension.asJvmArg == "-javaagent:${agent.jar.absolutePath}=append=true,inclnolocationclasses=false,dumponexit=true,output=file,jmx=false"
        }
    
        def 'supports jacocoagent with no jmx support'() {
            given:
            agent.supportsJmx() >> false
            agent.jar >> temporaryFolder.file('fakeagent.jar')
            task.getWorkingDir() >> temporaryFolder.file("workingDir")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.testing.jacoco.plugins.JacocoTaskExtension.xml

                </tr>
                <tr>
                    <td>port</td>
                </tr>
                <tr>
                    <td>classDumpDir</td>
                </tr>
                <tr>
                    <td>jmx</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/groovy/build.gradle

            sessionId = "<auto-generated value>"
            dumpOnExit = true
            classDumpDir = null
            output = JacocoTaskExtension.Output.FILE
            address = "localhost"
            port = 6300
            jmx = false
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/test/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginSpec.groovy

                dumpOnExit = false
                output = JacocoTaskExtension.Output.TCP_SERVER
                address = '1.1.1.1'
                port = 100
                classDumpDir = project.file('build/jacoco-dump')
                jmx = true
            }
    
            def expected = new StringBuilder().with { builder ->
                builder << "destfile=build/jacoco/fake.exec,"
                builder << "append=true,"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/test/groovy/org/gradle/internal/jacoco/JacocoAgentJarTest.groovy

    class JacocoAgentJarTest extends Specification {
        def project = ProjectBuilder.builder().build()
        def jacocoAgentJar = new JacocoAgentJar(project.services.get(FileOperations))
    
        def "versions >= 0.6.2 support jmx #version -> #jmxSupport"() {
            given:
            def agentJarName = "org.jacoco.agent-${version}.jar"
            jacocoAgentJar.agentConf = TestFiles.fixed(project.file(agentJarName))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 21:09:25 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/process/internal/JvmOptionsTest.groovy

            parse("-XX:-PrintClassHistogram -Dfoo.encoding=blah").managedJvmArgs == ["-Dfile.encoding=${defaultCharset}", *localePropertyStrings()]
        }
    
        def "managed jvm args includes JMX settings"() {
            expect:
            parse("-Dfile.encoding=utf-8 -Dcom.sun.management.jmxremote").managedJvmArgs == ["-Dcom.sun.management.jmxremote", "-Dfile.encoding=utf-8", *localePropertyStrings()]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/IntersectionsTest.groovy

            moduleId("com.google.collections", "google-collections")                                                       | moduleIdSet(["com.sun.jmx", "jmxri"], ["com.google.collections", "google-collections"], ["com.sun.jdmk", "jmxtools"]) | moduleId("com.google.collections",...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    -Dio.netty.noUnsafe=true\n\
    -Dio.netty.noKeySetOptimization=true\n\
    -Dio.netty.recycler.maxCapacityPerThread=0\n\
    -Dlog4j.shutdownHookEnabled=false\n\
    -Dlog4j2.formatMsgNoLookups=true\n\
    -Dlog4j2.disable.jmx=true\n\
    -Dlog4j.skipJansi=true\n\
    -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider\n\
    -Dorg.apache.pdfbox.rendering.UsePureJavaCMYKConversion=true\n\
    
    
    jvm.suggest.options=\
    -Djava.awt.headless=true\n\
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * -Dio.netty.noKeySetOptimization=true<br>
         * -Dio.netty.recycler.maxCapacityPerThread=0<br>
         * -Dlog4j.shutdownHookEnabled=false<br>
         * -Dlog4j2.formatMsgNoLookups=true<br>
         * -Dlog4j2.disable.jmx=true<br>
         * -Dlog4j.skipJansi=true<br>
         * -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider<br>
         * -Dorg.apache.pdfbox.rendering.UsePureJavaCMYKConversion=true<br>
         *  */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
Back to top