Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 309 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/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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers_test.go

    		conditionType        CustomResourceDefinitionConditionType
    		expectedcrdCondition []CustomResourceDefinitionCondition
    	}{
    		{
    			name: "test remove CRDCondition when the conditionType meets",
    			crdCondition: []CustomResourceDefinitionCondition{
    				{
    					Type:               Established,
    					Status:             ConditionTrue,
    					Reason:             "Accepted",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 17 19:08:05 UTC 2019
    - 15.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            given:
            buildFile << """
                model {
                    binaries {
                        all { ${compilerTool}.args ${toolChain.meets(ToolChainRequirement.VISUALCPP_2013_OR_NEWER) ? "'/Zi', '/FS'" : "'/Zi'"}; linker.args '/DEBUG'; }
                    }
                }
            """
            run "mainExecutable"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apihelpers/helpers_test.go

    		conditionType        apiextensionsv1.CustomResourceDefinitionConditionType
    		expectedcrdCondition []apiextensionsv1.CustomResourceDefinitionCondition
    	}{
    		{
    			name: "test remove CRDCondition when the conditionType meets",
    			crdCondition: []apiextensionsv1.CustomResourceDefinitionCondition{
    				{
    					Type:               apiextensionsv1.Established,
    					Status:             apiextensionsv1.ConditionTrue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 20.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    							t.Errorf("Expected validations '%s' error to contain '%v' but got: %v", expr, expectErr, result.Error)
    						}
    						meets[i] = true
    					}
    				}
    			}
    			for i, meet := range meets {
    				if !meet && CompilationResults[i].Error != nil {
    					t.Errorf("Unexpected err '%v' for expression '%s'", CompilationResults[i].Error, validations[i].GetExpression())
    				}
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/mvs/mvs_test.go

    # because B2 is hidden — B1 is the next-highest version that is not hidden.
    # However, if we downgrade D, we will also downgrade C to C1.
    # And C1 requires B2.hidden, and B2.hidden also meets our requirements:
    # it is compatible with D1 and a strict downgrade from B3.
    #
    # Since neither the initial nor the final build list includes B1,
    # and the nothing in the final downgraded build list requires E at all,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. pkg/test/framework/suite.go

    	RequireExternalControlPlaneTopology() Suite
    	// RequireMinVersion validates the environment meets a minimum version
    	RequireMinVersion(minorVersion uint) Suite
    	// RequireMaxVersion validates the environment meets a maximum version
    	RequireMaxVersion(minorVersion uint) Suite
    	// Setup runs enqueues the given setup function to run before test execution.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

        }
    
        @RequiresInstalledToolChain(GCC_COMPATIBLE)
        @ToBeFixedForConfigurationCache
        def "target platforms"() {
            assumeTrue(toolchainUnderTest.meets(SUPPORTS_32))
    
            given:
            sample targetPlatforms
    
            and:
            targetPlatforms.dir.file("build.gradle") << """
    model {
        toolChains {
            all{
                target("arm"){
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/abt/avlint32_test.go

    type sstring struct {
    	s string
    }
    
    func (s *sstring) String() string {
    	return s.s
    }
    
    func stringer(s string) interface{} {
    	return &sstring{s}
    }
    
    // wellFormed ensures that a red-black tree meets
    // all of its invariants and returns a string identifying
    // the first problem encountered. If there is no problem
    // then the returned string is empty. The size is also
    // returned to allow comparison of calculated tree size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
Back to top