Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for Processors (0.39 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

                    Processor processor = instantiateProcessor(processorClass);
                    supportedOptionsCollectingProcessor.addProcessor(processor);
                    processor = decorateForIncrementalProcessing(processor, declaredProcessor.getType(), processorResult);
                    processor = decorateForTimeTracking(processor, processorResult);
                    processors.add(processor);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

        @Override
        public void addModules(Iterable<String> moduleNames) {
            delegate.addModules(moduleNames);
        }
    
        @Override
        public void setProcessors(Iterable<? extends Processor> processors) {
            delegate.setProcessors(processors);
        }
    
        @Override
        public void setLocale(Locale locale) {
            delegate.setLocale(locale);
        }
    
        @Override
        public Boolean call() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            this.sourcepath = sourcepath;
        }
    
        /**
         * Returns the classpath to use to load annotation processors. This path is also used for annotation processor discovery.
         *
         * @return The annotation processor path, or {@code null} if annotation processing is disabled.
         * @since 3.4
         */
        @Nullable
        @Optional
        @Classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/SuiteTestClassProcessor.java

            this.clock = clock;
        }
    
        @Override
        public void startProcessing(TestResultProcessor testResultProcessor) {
            try {
                resultProcessor = new AttachParentTestResultProcessor(new CaptureTestOutputTestResultProcessor(testResultProcessor, new JULRedirector()));
                resultProcessor.started(suiteDescriptor, new TestStartEvent(clock.getCurrentTime()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

        private final TestResultProcessor processor;
        private final TestOutputRedirector outputRedirector;
        private Object rootId;
        private Map<Object, Object> parents = new ConcurrentHashMap<Object, Object>();
    
        public CaptureTestOutputTestResultProcessor(TestResultProcessor processor, StandardOutputRedirector outputRedirector) {
            this(processor, new TestOutputRedirector(processor, outputRedirector));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

            def testEvent = new TestStartEvent(2, null)
            def complete = new TestCompleteEvent(1)
    
            processor.started(new DefaultTestSuiteDescriptor("1", "Foo"), new TestStartEvent(1))
            processor.started(test, testEvent)
            processor.completed("2", complete)
    
            when: processor.completed("1", complete)
    
            then:
            1 * redirector.stopRedirecting()
            1 * target.completed("1", complete)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    == Annotation processors and Kotlin
    
    The <<caching_java_projects.adoc#annotation_processors,advice above>> for pure Java projects also applies to Android projects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

         */
        @Nullable
        public String getAdvice() {
            return advice;
        }
    
        /**
         * Advice on what to do about the notice, specific to this usage.
         *
         * Example: Annotation processors Foo, Bar and Baz were found on the compile classpath.
         */
        @Nullable
        public String getContextualAdvice() {
            return contextualAdvice;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

                @Override
                public void run() {
                    try {
                        processor.stop();
                    } finally {
                        state = State.STOPPED;
                        // Clean the interrupted status
                        // because some test class processors do work here, e.g. JUnitPlatform
                        Thread.interrupted();
                    }
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/runtime/extern.go

    		# MB goal    goal heap size, or /gc/heap/goal:bytes
    		# MB stacks  estimated scannable stack size, or /gc/scan/stack:bytes
    		# MB globals scannable global size, or /gc/scan/globals:bytes
    		# P          number of processors used, or /sched/gomaxprocs:threads
    	The phases are stop-the-world (STW) sweep termination, concurrent
    	mark and scan, and STW mark termination. The CPU times
    	for mark/scan are broken down in to assist time (GC performed in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top