Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for ISOLATING (0.54 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

    import org.gradle.util.internal.TextUtil
    import spock.lang.Issue
    
    import static org.gradle.api.internal.tasks.compile.CompileJavaBuildOperationType.Result.AnnotationProcessorDetails.Type.ISOLATING
    import static org.gradle.api.tasks.compile.JavaAnnotationProcessingIntegrationTest.CompileMode.COMMAND_LINE
    import static org.gradle.api.tasks.compile.JavaAnnotationProcessingIntegrationTest.CompileMode.IN_PROCESS
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/tooling/JavaCompileTaskSuccessResultPostProcessor.java

            switch (type) {
                case AGGREGATING:
                    return InternalAnnotationProcessorResult.TYPE_AGGREGATING;
                case ISOLATING:
                    return InternalAnnotationProcessorResult.TYPE_ISOLATING;
                case UNKNOWN:
                    return InternalAnnotationProcessorResult.TYPE_UNKNOWN;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/HelperProcessorFixture.groovy

                """
                @Override
                public Set<String> getSupportedOptions() {
                    return new HashSet<String>(Arrays.asList("message", "${IncrementalAnnotationProcessorType.ISOLATING.processorOption}"));
                }
                """
            } else {
                """
                @Override
                public Set<String> getSupportedOptions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultIsolatableFactory.java

                return value;
            }
    
            @Override
            public Isolatable<?> gradleSerialized(Object value, byte[] serializedValue) {
                throw new UnsupportedOperationException("Isolating values of type '" + value.getClass().getSimpleName() + "' is not supported");
            }
    
            @Override
            public Isolatable<?> javaSerialized(Object value, byte[] serializedValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

        }
    
        private Processor decorateForIncrementalProcessing(Processor processor, IncrementalAnnotationProcessorType type, AnnotationProcessorResult processorResult) {
            switch (type) {
                case ISOLATING:
                    return new IsolatingProcessor(processor, processorResult);
                case AGGREGATING:
                    return new AggregatingProcessor(processor, processorResult);
                case DYNAMIC:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/bidi/core.go

    	// We do not remove the embeddings, the overrides, the PDFs, and the BNs
    	// from the string explicitly. But they are not copied into isolating run
    	// sequences when they are created, so they are removed for all
    	// practical purposes.
    
    	// Rule X10.
    	// Run remainder of algorithm one isolating run sequence at a time
    	for _, seq := range p.determineIsolatingRunSequences() {
    		// 3) resolving weak types
    		// Rules W1-W7.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    [source,java,indent=0]
    .processor/src/main/java/org/gradle/EntityProcessor.java
    ----
    include::{snippetsPath}/java/incrementalAnnotationProcessing/groovy/processor/src/main/java/org/gradle/EntityProcessor.java[tag=isolating-annotation-processor]
    ----
    
    "Isolating" processors have the following additional limitations:
    
    * They must make all decisions (code generation, validation messages) for an annotated type based on information reachable from its AST.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

         * This method will be retired in the future.
         */
        InstantiationScheme decorateLenientScheme();
    
        /**
         * Returns a managed factory to use when isolating managed objects created using this factory.
         */
        ManagedFactory getManagedFactory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    === 2. Composite Builds
    
    Composite Builds, also referred to as _included builds_, are best for sharing logic between builds (_not subprojects_) or isolating access to shared build logic (i.e., convention plugins).
    
    Let's take the previous example.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/start.go

    	Upload bool
    
    	// TelemetryDir, if set, will specify an alternate telemetry
    	// directory to write data to. If not set, it uses the default
    	// directory.
    	// This field is intended to be used for isolating testing environments.
    	TelemetryDir string
    
    	// UploadStartTime, if set, overrides the time used as the upload start time,
    	// which is the time used by the upload logic to determine whether counter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top