Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 236 for isIsolated (0.26 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/workers/internal/WorkerPruningSoakTest.groovy

    class WorkerPruningSoakTest extends AbstractIntegrationSpec {
        def fixture = new WorkerExecutorFixture(temporaryFolder)
    
        def setup() {
            fixture.prepareTaskTypeUsingWorker()
    
            // Purposefully not using an isolated daemon, this test should work regardless of any other builds before or after
            // If it doesn't, that indicates an issue with our worker memory management.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FetchParameterizedCustomModelForEachProject.java

     * 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.isolated;
    
    import org.gradle.api.Action;
    import org.gradle.internal.cc.impl.fixtures.SomeToolingModel;
    import org.gradle.internal.cc.impl.fixtures.SomeToolingModelParameter;
    import org.gradle.tooling.BuildAction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/services/NativeServicesInitializationTest.groovy

    import java.lang.reflect.Constructor
    
    class NativeServicesInitializationTest extends Specification {
    
        def "cannot get an instance of NativeServices without initializing first" () {
            // Construct an isolated classloader so we can load a pristine NativeServices class
            // that's guaranteed not to have been initialized before
            URL[] jars = [
                jar(NativeServices),
                jar(ServiceRegistration),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 08:51:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/NoIsolationWorkerFactory.java

    import org.gradle.internal.Cast;
    import org.gradle.internal.Factory;
    import org.gradle.internal.classloader.ClassLoaderUtils;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.isolated.IsolationScheme;
    import org.gradle.internal.operations.BuildOperationRef;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.workers.WorkAction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:07 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowAction.java

    import org.gradle.api.file.ArchiveOperations;
    import org.gradle.api.file.FileSystemOperations;
    import org.gradle.process.ExecOperations;
    
    /**
     * A dataflow action.
     *
     * <p>
     * A parameterized and isolated piece of work that becomes eligible for execution within a
     * {@link FlowScope dataflow scope} as soon as all of its input {@link FlowParameters parameters}
     * become available.
     * </p>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 20:51:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityBuildLifecycleServiceIntegrationTest.groovy

            outputDoesNotContain("Configuring ':included")
        }
    
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "accessing `tasks` from subprojects is in violation of Isolated Projects"
        )
        def "lifecycle applied build logic runs before subprojects configuration logic"() {
            given:
            settingsFile """
                include 'sub'
    
                $beforeProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/DefaultIsolatedAntBuilder.java

            File toolsJar = Jvm.current().getToolsJar();
            if (toolsJar != null) {
                antClasspath.add(toolsJar);
            }
    
            antLoader = classLoaderFactory.createIsolatedClassLoader("isolated-ant-loader", DefaultClassPath.of(antClasspath));
            FilteringClassLoader.Spec loggingLoaderSpec = new FilteringClassLoader.Spec();
            loggingLoaderSpec.allowPackage("org.slf4j");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 02 18:37:54 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_statements.txt

    # concurrently accessing the cache while this test is running, it can
    # lead to cache lookup failures, which manifest as test failures here.
    # To avoid such flakes, use a separate isolated GOCACHE for this test.
    env GOCACHE=$WORK/cache
    
    # Initial run with simple coverage.
    go test -cover ./pkg1 ./pkg2 ./pkg3 ./pkg4
    [!GOEXPERIMENT:coverageredesign] stdout 'pkg1	\[no test files\]'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. pkg/kubelet/config/flags.go

    )
    
    // ContainerRuntimeOptions defines options for the container runtime.
    type ContainerRuntimeOptions struct {
    	// General Options.
    
    	// RuntimeCgroups that container runtime is expected to be isolated in.
    	RuntimeCgroups string
    	// PodSandboxImage is the image whose network/ipc namespaces
    	// containers in each pod will use.
    	PodSandboxImage string
    	// Image credential provider plugin options
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 03:14:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/KotlinExtensionsForGradleApiFacade.kt

    import org.gradle.internal.classpath.ClassPath
    import java.io.File
    import java.lang.reflect.InvocationTargetException
    import java.net.URLClassLoader
    
    
    /**
     * Reflectively calls generation functions in an isolated classloader.
     *
     * This is required so that our build uses the production code to generate extensions.
     *
     * The parameters of the called functions need to be from the JDK only in order to isolate
     * the Kotlin version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 18:55:48 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top