Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 819 for combinations (0.19 sec)

  1. src/path/path_test.go

    	{"abc/def/..", "abc"},
    	{"abc/def/../..", "."},
    	{"/abc/def/../..", "/"},
    	{"abc/def/../../..", ".."},
    	{"/abc/def/../../..", "/"},
    	{"abc/def/../../../ghi/jkl/../../../mno", "../../mno"},
    
    	// Combinations
    	{"abc/./../def", "def"},
    	{"abc//./../def", "def"},
    	{"abc/../../././../def", "../../def"},
    }
    
    func TestClean(t *testing.T) {
    	for _, test := range cleantests {
    		if s := Clean(test.path); s != test.result {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 01:12:09 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

                [apiUsingUsage(), apiUsingUsage("fromResolutionOf('compileClasspath')")],
                [runtimeUsingUsage(), runtimeUsingUsage("fromResolutionOf('runtimeClasspath')")]
            ].combinations() + [[allVariants(), noop()]])
        }
    
        def "dependency constraints which are unresolved are published as is"() {
            javaLibrary(mavenRepo.module("org.test", "foo", "1.0")).withModuleMetadata().publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/virtualservice/destinationrules.go

    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (d *DestinationRuleAnalyzer) Analyze(ctx analysis.Context) {
    	// To avoid repeated iteration, precompute the set of existing destination host+subset combinations
    	destHostsAndSubsets := initDestHostsAndSubsets(ctx)
    
    	ctx.ForEach(gvk.VirtualService, func(r *resource.Instance) bool {
    		d.analyzeVirtualService(r, ctx, destHostsAndSubsets)
    		return true
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top