Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setTestSupport (0.25 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/plugins/NativeBinariesTestPlugin.java

                NativeDependentBinariesResolutionStrategy nativeStrategy = resolver.getStrategy(NativeDependentBinariesResolutionStrategy.NAME, NativeDependentBinariesResolutionStrategy.class);
                nativeStrategy.setTestSupport(new NativeDependentBinariesResolutionStrategyTestSupport());
            }
    
            @Finalize
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeDependentBinariesResolutionStrategy.java

            this.projectModelResolver = projectModelResolver;
        }
    
        @Override
        public String getName() {
            return NAME;
        }
    
        public void setTestSupport(TestSupport testSupport) {
            this.testSupport = testSupport;
        }
    
        @Nullable
        @Override
        protected List<DependentBinariesResolvedResult> resolveDependents(BinarySpecInternal target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top