Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for StandardLocation (0.35 sec)

  1. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/HelperProcessorFixture.groovy

    import groovy.transform.CompileStatic
    import org.gradle.api.internal.tasks.compile.incremental.processing.IncrementalAnnotationProcessorType
    import org.gradle.test.fixtures.file.TestFile
    
    import javax.tools.StandardLocation
    
    /**
     * Generates a "Helper" class for each annotated type. The helper has a "getValue()" method that returns
     * a greeting. The greeting is composed of a message and a suffix. The message is compiled into a support
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/AutoTestedSamplesToolingApiTest.groovy

            def fileManager = compiler.getStandardFileManager(null, null, null);
    
            def location = ("javax.tools.StandardLocation" as Class).CLASS_OUTPUT
            fileManager.setLocation(location, [temp.testDirectory]);
    
            location = ("javax.tools.StandardLocation" as Class).CLASS_PATH
            fileManager.setLocation(location, [ClasspathUtil.getClasspathForClass(Element)]);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompileDaemonCancellationIntegrationTest.groovy

                import javax.lang.model.SourceVersion;
                import javax.lang.model.element.TypeElement;
                import java.util.Set;
                import java.io.File;
                import javax.tools.StandardLocation;
                import java.io.Writer;
                import javax.tools.FileObject;
    
                @SupportedAnnotationTypes("BlockingClass")
                @SupportedSourceVersion(SourceVersion.RELEASE_9)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/types/InstrumentedTypesResourceGeneratorTest.groovy

    import org.gradle.internal.instrumentation.InstrumentationCodeGenTest
    
    import java.nio.charset.StandardCharsets
    
    import static com.google.testing.compile.CompilationSubject.assertThat
    import static javax.tools.StandardLocation.CLASS_OUTPUT
    
    class InstrumentedTypesResourceGeneratorTest extends InstrumentationCodeGenTest {
    
        def "should generate a resource with types with intercept inherited methods"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/InstrumentationCodeGeneratorHost.java

    import javax.annotation.processing.Messager;
    import javax.lang.model.element.Element;
    import javax.lang.model.element.ExecutableElement;
    import javax.tools.Diagnostic;
    import javax.tools.FileObject;
    import javax.tools.StandardLocation;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.util.Collection;
    import java.util.List;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.Set;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsResourceGeneratorTest.groovy

    import org.gradle.internal.instrumentation.InstrumentationCodeGenTest
    
    import java.nio.charset.StandardCharsets
    
    import static com.google.testing.compile.CompilationSubject.assertThat
    import static javax.tools.StandardLocation.CLASS_OUTPUT
    
    class InterceptJvmCallsResourceGeneratorTest extends InstrumentationCodeGenTest {
    
        def "should generate a META-INF/services resource with all JvmBytecodeCallInterceptor factory classes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsResourceGeneratorTest.groovy

    import org.gradle.internal.instrumentation.InstrumentationCodeGenTest
    
    import java.nio.charset.StandardCharsets
    
    import static com.google.testing.compile.CompilationSubject.assertThat
    import static javax.tools.StandardLocation.CLASS_OUTPUT
    
    class InterceptGroovyCallsResourceGeneratorTest extends InstrumentationCodeGenTest {
    
        def "should generate a META-INF/services resource with all CallInterceptor classes"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:46:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonProcessFailureIntegrationTest.groovy

                import javax.lang.model.SourceVersion;
                import javax.lang.model.element.TypeElement;
                import java.util.Set;
                import javax.tools.FileObject;
                import javax.tools.StandardLocation;
                import java.io.Writer;
    
                @SupportedAnnotationTypes("WorkerPid")
                @SupportedSourceVersion(SourceVersion.RELEASE_9)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 18:43:14 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/AnnotationProcessorFixture.groovy

                import javax.lang.model.util.*;
                import javax.tools.*;
                ${annotationPackageName.empty ? '' : "import ${fqAnnotationName};"}
    
                import static javax.tools.StandardLocation.*;
    
                @SupportedOptions({ "message" })
                public class ${annotationName}Processor extends AbstractProcessor {
                    private Map<String, String> options;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGeneratorTest.groovy

    import org.gradle.internal.instrumentation.InstrumentationCodeGenTest
    
    import java.nio.charset.StandardCharsets
    
    import static com.google.testing.compile.CompilationSubject.assertThat
    import static javax.tools.StandardLocation.CLASS_OUTPUT
    import static org.gradle.internal.instrumentation.api.annotations.ReplacesEagerProperty.BinaryCompatibility.ACCESSORS_REMOVED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top