Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for isolating (0.29 sec)

  1. 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)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/DefaultIsolatedProjectEvaluationListenerProvider.kt

    import org.gradle.internal.extensions.core.popSingletonProperty
    import org.gradle.internal.extensions.core.setSingletonProperty
    import org.gradle.internal.cc.impl.isolation.IsolatedActionDeserializer
    import org.gradle.internal.cc.impl.isolation.IsolatedActionSerializer
    import org.gradle.internal.cc.impl.isolation.SerializedIsolatedActionGraph
    import org.gradle.internal.serialize.graph.IsolateOwner
    import org.gradle.internal.cc.base.serialize.IsolateOwners
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

            // TODO - should hold the project lock to do the isolation. Should work the same way as artifact transforms (a work node does the isolation, etc)
            P isolatedParameters = isolatableFactory.isolate(getParameters()).isolate();
            // TODO - reuse this in other places
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializerTest.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolation
    
    import com.nhaarman.mockitokotlin2.doReturn
    import com.nhaarman.mockitokotlin2.mock
    import org.gradle.api.IsolatedAction
    import org.gradle.api.internal.GradleInternal
    import org.gradle.api.internal.file.TestFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

                    // TODO - assert same parameters
                    return uncheckedNonnullCast(existing.getService());
                }
                // TODO - finalize the parameters during isolation
                // TODO - need to lock the project during isolation - should do this the same way as artifact transforms
                BuildServiceSpec<P> spec = specSupplier.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/IsolateTransformParametersCodec.kt

    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher
    import org.gradle.internal.isolation.IsolatableFactory
    import org.gradle.internal.operations.BuildOperationRunner
    
    
    class IsolateTransformParametersCodec(
        val parameterScheme: TransformParameterScheme,
        val isolatableFactory: IsolatableFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/DefaultTransformCodec.kt

                writeEnum(value.inputArtifactDependenciesLineEndingNormalization)
                write(value.isolatedParameters)
                // TODO - isolate now and discard node, if isolation is scheduled but has no dependencies
            }
        }
    
        override suspend fun ReadContext.decode(): DefaultTransform {
            return decodePreservingSharedIdentity {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/IsolatedActionCodecsFactory.kt

            )
    
        /**
         * Value sources and build services are currently unsupported but could eventually
         * be captured as part of the serialized action [environment][org.gradle.internal.cc.impl.isolation.SerializedIsolatedActionGraph.environment]
         **/
        private
        fun BindingsBuilder.unsupportedProviderTypes() {
            bind(unsupported<ValueSourceProvider<*, *>>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DeprecatedFeaturesListener.kt

        /**
         * Only nag about tasks that are actually executing, but not tasks that are configured by the executing tasks.
         * A task is unlikely to reach out to other tasks without violating other constraints.
         **/
        private
        fun shouldReportInContext(task: TaskInternal, runningTask: TaskInternal?) =
            runningTask == null || task === runningTask
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializer.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolation
    
    import org.gradle.api.IsolatedAction
    import org.gradle.internal.cc.impl.ConfigurationCacheError
    import org.gradle.internal.cc.impl.problems.AbstractProblemsListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top