Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for fals (0.06 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

            "latest.milestone"   | "select status" | "2.0"         | '["2.0"]'        | ['2.1', '2.0']     | false           | true             | ["didn't match version 2.1"]
            "latest.milestone"   | "select branch" | "2.0"         | '["2.0"]'        | ['2.1', '2.0']     | false           | false            | ["didn't match version 2.1"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/jwks_resolver_test.go

    		{"testReorderedKeys", args{test.JwtPubKey1, test.JwtPubKey1Reordered}, false, false},
    		{"testDifferentKeys", args{test.JwtPubKey1, test.JwtPubKey2}, true, false},
    		{"testOldJsonParseFailure", args{"This is not JSON", test.JwtPubKey1}, true, false},
    		{"testNewJsonParseFailure", args{test.JwtPubKey1, "This is not JSON"}, false, true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

            'resolvable'            | "resolvable('custom')"            || false       | true          | false             | false                 | false                 | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/driver_focus.go

    		labelFilter := func(vals []int64, unit string) bool {
    			for _, val := range vals {
    				if numFilter(val, unit) {
    					return true
    				}
    			}
    			return false
    		}
    		numLabelUnit := func(key string) string {
    			return numLabelUnits[key]
    		}
    		if wantKey == "" {
    			return func(s *profile.Sample) bool {
    				for key, vals := range s.NumLabel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/authentication_test.go

    			name:                "empty",
    			options:             nil,
    			expectError:         false,
    			expectAuthenticator: false,
    		},
    		{
    			name:                "default",
    			options:             NewDelegatingAuthenticationOptions(),
    			expectError:         true, // in-cluster client building fails, no kubeconfig provided
    			expectAuthenticator: false,
    		},
    		{
    			name: "optional kubeconfig",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 15:01:56 UTC 2019
    - 6.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

                    }
                }
    """
    
            expect:
            executer.withArgument("--dry-run")
            fails("useCompileConfiguration")
            failure.assertHasDescription("Could not determine the dependencies of task ':useCompileConfiguration'.")
            failure.assertHasCause('broken')
    
            fails("useCompileConfiguration")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestReportIntegrationTest.groovy

            and:
            failingTestClass "SomeTest"
    
            when:
            fails "test"
    
            then:
            executedAndNotSkipped(":test")
            failure.assertHasCause("There were failing tests. See the report at: ")
    
            when:
            buildFile << "\ntest.reports.html.required = false\n"
            fails "test"
    
            then:
            executedAndNotSkipped(":test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/ContinueIntegrationTest.groovy

            when:
            args("-Dorg.gradle.continue=true")
            fails(":failTask", ":successTask")
    
            then:
            output.contains("2 actionable tasks: 2 executed")
        }
    
        def "-Dorg.gradle.continue property FALSE"() {
            given:
            buildScript()
    
            when:
            args("-Dorg.gradle.continue=false")
            fails(":failTask", ":successTask")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainIntegrationTest.groovy

            description                                 | languageVersion | vendor
            "configured with language version"          | true            | false
            "configured not only with language version" | true            | true
            "unconfigured"                              | false           | false
        }
    
        def "identify whether #tool toolchain corresponds to the #current JVM"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 15:18:26 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/SettingsScriptPluginIntegrationSpec.groovy

     """
    
            when:
            fails 'help'
    
            then:
            errorOutput.contains("Plugin [id: 'unknown'] was not found in any of the following sources:")
            outputContains("In `pluginManagement`\nIn `pluginManagement.plugins`")
    
            where:
            settingScriptExtension | unused
            '.gradle.kts'          | false
            '.gradle'              | false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top