Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 192 for isolating (0.31 sec)

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

        }
    
        def "reports isolating processor in build operation"() {
            java "class Irrelevant {}"
    
            when:
            succeeds "compileJava"
    
            then:
            with(operations[':compileJava'].result.annotationProcessorDetails as List<Object>) {
                size() == 1
                first().className == 'HelperProcessor'
                first().type == ISOLATING.name()
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    			// and gets ignored
    		}
    	}
    }
    
    // Bracket pairs within an isolating run sequence are processed as units so
    // that both the opening and the closing paired bracket in a pair resolve to
    // the same direction.
    //
    // N0. Process bracket pairs in an isolating run sequence sequentially in
    // the logical order of the text positions of the opening paired brackets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            !file("build/generated/sources/headers/java/main/A.txt").exists()
            !file("build/classes/java/main/A.txt").exists()
        }
    
        def "an isolating processor is also a valid aggregating processor"() {
            given:
            withProcessor(new HelperProcessorFixture().withDeclaredType(IncrementalAnnotationProcessorType.AGGREGATING))
            java "@Helper class A {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParametersIntegrationTest.groovy

            outputContains("service: value is 1")
            outputContains("value = 1")
    
            where:
            // TODO - this should work with classloader isolation too
            isolationMode << ['noIsolation']
        }
    
        def "can provide managed object parameters with isolation mode #isolationMode"() {
            file('buildSrc/src/main/java').createDir()
            file('buildSrc/src/main/java/SomeExtension.java').text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    === Step 3. Change the isolation mode
    
    The isolation mode controls how strongly Gradle will isolate items of work from each other and the rest of the Gradle runtime.
    
    There are three methods on `WorkerExecutor` that control this:
    
    1. `noIsolation()`
    2. `classLoaderIsolation()`
    3. `processIsolation()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top