Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withImplementation (0.2 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

        ) {
            if (!testFramework.getUseDistributionDependencies()) {
                return new ForkedTestClasspath(
                    ImmutableList.copyOf(classpath), ImmutableList.copyOf(modulepath),
                    withImplementation(ImmutableList.of()), ImmutableList.of()
                );
            }
    
            AdditionalClasspath unfiltered = new AdditionalClasspath(
                testFramework.getWorkerApplicationClasspathModules(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

            TypeRegistrationBuilder<S> registration = register(publicType, definedBy);
            if (implementationType != null) {
                registration.withImplementation(implementationType);
            }
            for (Class<?> internalView : internalViews) {
                registration.withInternalView(ModelType.of(internalView));
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top