Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 202 for combinations (0.21 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/DefaultExcludesFixture.groovy

                    [new RootBuildLocation(), new IncludedBuildLocation()],
                    [new RootBuildLocation(), new BuildSrcLocation(), new IncludedBuildLocation()],
                ]
            ].combinations().collect { language, locations ->
                new Spec(locations, language)
            }
        }
    
        static class Spec {
    
            final String copyTask = "copyTask"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import spock.lang.Issue
    
    /**
     * Tests for the tooling API, which check fetching models and running actions using different
     * combinations of versions of the TAPI and Gradle.
     *
     * Support for clients using a tooling API version older than 3.0 was removed in Gradle 5.0, so
     * there is a class-level lower bound for both versions.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt

        assertThat(frameLog(true, 3, 10000, TYPE_DATA, 0x20))
          .isEqualTo("<< 0x00000003 10000 DATA          COMPRESSED")
      }
    
      /**
       * Ensures that valid flag combinations appear visually correct, and invalid show in hex.  This
       * also demonstrates how sparse the lookup table is.
       */
      @Test
      fun allFormattedFlagsWithValidBits() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

    import org.gradle.integtests.fixtures.KotlinDslTestUtil
    import org.gradle.test.fixtures.file.TestFile
    
    class BuildLogicChangeFixture {
    
        static List<Spec> specs() {
            [Kind.values(), Language.values()].combinations().collect { Kind kind, Language language ->
                new Spec(language, kind)
            }
        }
    
        @Immutable
        static class Spec {
            Language language
            Kind kind
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesInSettingsIntegrationTest.groovy

    import org.gradle.test.fixtures.server.http.MavenHttpPluginRepository
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    // Restrict the number of combinations because that's not really what we want to test
    @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
    @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/crypto/ed25519/ed25519vectors_test.go

    	"crypto/ed25519"
    	"encoding/hex"
    	"encoding/json"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"testing"
    )
    
    // TestEd25519Vectors runs a very large set of test vectors that exercise all
    // combinations of low-order points, low-order components, and non-canonical
    // encodings. These vectors lock in unspecified and spec-divergent behaviors in
    // edge cases that are not security relevant in most contexts, but that can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/util/internal/NameValidatorTest.groovy

            assertForbidden(name, exception.getMessage())
    
            where:
            [name, objectType, domainObjectContainer] << [invalidNames, domainObjectContainersWithValidation].combinations().collect { [it[0], it[1][0], it[1][1]] }
        }
    
        def "names are not allowed to be empty"() {
            given:
            def name = ''
    
            when:
            NameValidator.validate('', 'name', '')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 22:27:15 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

              parentBuilder) {
        List<TestSuite> derivedSuites = new ArrayList<>(super.createDerivedSuites(parentBuilder));
    
        if (!parentBuilder.getFeatures().contains(SUBSET_VIEW)) {
          // Other combinations are inherited from SortedSetTestSuiteBuilder.
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidGradleRecipesKotlinSmokeTest.groovy

                     mapBegin: 'flatMap { it.fieldValueOutputFile }.map { it.asFile.readText(Charsets.UTF_8) }.map {', mapEnd: '}',
                     get: 'it']
                ]
            ].combinations()
            providerType = provider['type']
            kotlinVersionNumber = VersionNumber.parse('1.8.0')
            taskName = 'compileDebugKotlin'
        }
    
        private getRepositoriesBlock() {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/base/AbstractIteratorTest.java

              }
            };
        try {
          iter.hasNext();
          fail();
        } catch (IllegalStateException expected) {
        }
      }
    
      // Technically we should test other reentrant scenarios (4 combinations of
      // hasNext/next), but we'll cop out for now, knowing that
      // next() both start by invoking hasNext() anyway.
    
      /** Throws an undeclared checked exception. */
      private static void sneakyThrow(Throwable t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 04 09:41:29 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top