Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 414 for meets (0.04 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

            """
        }
    
        @ToBeFixedForConfigurationCache
        def "ignores target machine not buildable from project configuration dimensions"() {
            assumeFalse(toolChain.meets(WINDOWS_GCC))
    
            when:
            componentUnderTest.writeToProject(testDirectory)
            makeSingleProject()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeToolChainTestInterceptor.java

            if (toolChainRequirement != null) {
                return toolChain.meets(toolChainRequirement.value());
            }
            // Swift tests will always have a toolchain requirement for swiftc
            return !toolChain.meets(ToolChainRequirement.SWIFTC);
        }
    
        private static class ToolChainExecution extends Execution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/ProjectSpec.java

    public interface ProjectSpec {
        /**
         * Determines whether the given registry contains at least 1 project which meets this spec.
         */
        boolean containsProject(ProjectRegistry<? extends ProjectIdentifier> registry);
    
        /**
         * Returns the single project in the given registry which meets this spec.
         * @return the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 27 03:42:56 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

            if (toolChain?.visualCpp) {
                // There is not a built-in tool for querying pdb files, so we just check that the debug file exists
                assertDebugFileExists()
            } else if (toolChain.meets(ToolChainRequirement.GCC) && OperatingSystem.current().windows) {
                // Currently cannot probe the actual symbols yet, just verify that there are some
                binaryInfo.assertHasDebugSymbols()
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

        }
    
        /**
         * Locates a tool chain that meets the given criteria, if any.
         *
         * @return null if there is no such tool chain.
         */
        @Nullable
        public static InstalledToolChain getToolChain(ToolChainRequirement requirement) {
            for (ToolChainCandidate toolChainCandidate : getToolChains()) {
                if (toolChainCandidate.meets(requirement)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

            skipped getComponentTasks("main")
        }
    
        @ToBeFixedForConfigurationCache
        def "visual studio tasks re-execute when output file locations change"() {
            assumeFalse(toolChain.meets(WINDOWS_GCC))
            app.writeSources(file("src/main"))
    
            when:
            run "visualStudio"
    
            then:
            executedAndNotSkipped ":appVisualStudioSolution"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestSamplesIntegrationTest.groovy

            failingResults.suites['OperatorTests'].failingTests == ['test_plus']
            failingResults.checkTestCases(2, 1, 1)
        }
    
        private static boolean isVisualCpp2015() {
            return toolChain.meets(ToolChainRequirement.VISUALCPP_2015)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DaemonContext.java

    import java.io.File;
    import java.util.Collection;
    
    /**
     * A value object that describes a daemons environment/context.
     * <p>
     * This is used by clients to determine whether or not a daemon meets its requirements
     * such as JDK version, special system properties etc.
     * <p>
     * Instances are serialized by {@link org.gradle.launcher.daemon.context.DefaultDaemonContext.Serializer}
     * and shared via the Daemon Registry.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkQueue.java

         *
         * Execution of the work may begin immediately.
         *
         * Work submitted using {@link WorkerExecutor#processIsolation()} will execute in an idle daemon that meets the requirements set
         * in the {@link ProcessWorkerSpec}.  If no idle daemons are available, a new daemon will be started.  Any errors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitSamplesIntegrationTest.groovy

            failingResults.checkTestCases(2, 1, 1)
            failingResults.checkAssertions(6, 4, 2)
        }
    
        private static boolean isVisualCpp2015() {
            return toolChain.meets(ToolChainRequirement.VISUALCPP_2015)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top