Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Mixtures (0.31 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                        """
                    )
                },
                block = block
            )
    
        /**
         * Runs the binary compatibility check against two source trees.
         *
         * The fixture build supports both Java and Kotlin sources.
         *
         * @param v1 sources producer for V1, receiver is the `src/main` directory
         * @param v2 sources producer for V2, receiver is the `src/main` directory
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 16.4K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts

        // This test task runs only multi-version tests and is intended to be used in the late pipeline to sweep up versions not previously tested
        includeSpockAnnotation("org.gradle.integtests.fixtures.compatibility.MultiVersionTestCategory")
        (options as JUnitPlatformOptions).includeEngines("spock")
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Nov 21 22:31:45 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                    name = "MAKE_SURE_NO_@FLAKY_IN_DISTRIBUTIONS_INTEG_TESTS"
                    executionMode = BuildStep.ExecutionMode.ALWAYS
                    scriptContent = "! grep 'org.gradle.test.fixtures.Flaky' -r subprojects/distributions-integ-tests/src"
                }
            }
        }
    
        testsWithOs.forEachIndexed { index, testCoverage ->
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  4. .teamcity/subprojects.json

        "path": "platforms/jvm/plugins-java-library",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "plugins-jvm-test-fixtures",
        "path": "platforms/jvm/plugins-jvm-test-fixtures",
        "unitTests": false,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "plugins-jvm-test-suite",
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:57 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  5. .teamcity/test-buckets.json

    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"composite-builds",
    					"tooling-native",
    					"build-events",
    					"core-api",
    					"plugins-jvm-test-fixtures",
    					"plugins-jvm-test-suite",
    					"wrapper",
    					"plugins",
    					"model-groovy",
    					"ide-native",
    					"reporting"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 01 00:30:22 GMT 2024
    - 49.5K bytes
    - Viewed (0)
  6. build-logic-commons/code-quality-rules/src/main/java/gradlebuild/codenarc/rules/IntegrationTestFixturesRule.java

        public void setPriority(int priority) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public String getDescription() {
            return "Reports incorrect usages of integration test fixtures";
        }
    
        @Override
        protected Class<?> getAstVisitorClass() {
            return IntegrationTestFixtureVisitor.class;
        }
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  7. .cm/plugins/filters/byCodeowner/ignore/index.js

            ? match
            // Invalid range (out of order) which is ok for gitignore rules but
            //   fatal for JavaScript regular expression, so eliminate it.
            : EMPTY
    )
    
    // See fixtures #59
    const cleanRangeBackSlash = slashes => {
        const {length} = slashes
        return slashes.slice(0, length - length % 2)
    }
    
    // > If the pattern ends with a slash,
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  8. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <suppress checks="JavadocPackage"
                  files=".*[/\\]platforms[/\\]jvm[/\\]plugins-jvm-test-fixtures[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\]plugins[/\\][^/\\]+"/>
        <suppress checks="JavadocPackage"
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 11 10:51:28 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

     */
    
    import org.gradle.plugins.ide.idea.model.IdeaModel
    
    /**
     * Test Fixtures Plugin.
     *
     * Configures the Project as a test fixtures producer if `src/testFixtures` is a directory:
     * - adds a new `testFixtures` source set which should contain utilities/fixtures to assist in unit testing
     *   classes from the main source set,
     * - the test fixtures are automatically made available to the test classpath.
     *
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        when (project.flakyTestStrategy) {
            FlakyTestStrategy.INCLUDE -> {}
            FlakyTestStrategy.EXCLUDE -> {
                excludeSpockAnnotation("org.gradle.test.fixtures.Flaky")
                (options as JUnitPlatformOptions).excludeTags("org.gradle.test.fixtures.Flaky")
            }
            FlakyTestStrategy.ONLY -> {
                // Note there is an issue: https://github.com/spockframework/spock/issues/1288
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
Back to top