Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for fals (0.07 sec)

  1. cmd/kubeadm/app/util/runtime/runtime_test.go

    		shouldError bool
    	}{
    		{
    			name:        "valid",
    			shouldError: false,
    		},
    		{
    			name: "invalid: new runtime service fails",
    			prepare: func(mock *fakeImpl) {
    				mock.NewRemoteRuntimeServiceReturns(nil, errTest)
    			},
    			shouldError: true,
    		},
    		{
    			name: "invalid: new image service fails",
    			prepare: func(mock *fakeImpl) {
    				mock.NewRemoteImageServiceReturns(nil, errTest)
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanConfigIntegrationTest.groovy

            then:
            scanPlugin.assertEnabled(output, false)
            scanPlugin.assertDisabled(output, false)
        }
    
        def "not disabled with -Dscan=false"() {
            when:
            succeeds "t", "-Dscan=false"
    
            then:
            scanPlugin.assertEnabled(output, false)
            scanPlugin.assertDisabled(output, false)
        }
    
        def "warns if scan requested but no scan plugin applied"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractValidatingLockingIntegrationTest.groovy

            when:
            fails 'checkDeps'
    
            then:
            failure.assertHasCause("Could not resolve all files for configuration ':lockedConf'.")
            failure.assertHasCause("Resolved 'org:bar:1.0' which is not part of the dependency lock state")
    
            where:
            unique << [true, false]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/InvalidConfigurationResolutionIntegrationTest.groovy

                        implementation
                        compile.canBeDeclared = false
                        compile.canBeConsumed = false
                        compile.canBeResolved = false
                        compileOnly.canBeResolved = false
                        apiElements {
                            assert canBeConsumed
                            canBeResolved = false
                            extendsFrom compile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. src/internal/stringslite/strings.go

    		i := 0
    		t := len(s) - n + 1
    		fails := 0
    		for i < t {
    			if s[i] != c0 {
    				// IndexByte is faster than bytealg.IndexString, so use it as long as
    				// we're not getting lots of false positives.
    				o := IndexByte(s[i+1:t], c0)
    				if o < 0 {
    					return -1
    				}
    				i += o + 1
    			}
    			if s[i+1] == c1 && s[i:i+n] == substr {
    				return i
    			}
    			fails++
    			i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromSingleCustomPluginRepositorySpec.groovy

                  id "org.example.plugin"
              }
            """
    
            when:
            fails("pluginTask")
    
            then:
            failure.assertHasNoCause(repoType)
    
            where:
            repoType << [IVY, MAVEN]
        }
    
        @Requires(UnitTestPreconditions.Online)
        def "Fails gracefully if a plugin is not found in #repoType repo"() {
            given:
            publishTestPlugin(repoType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            true                  | true                        | false       | 'both files are valid'
            false                 | null                        | true        | 'gpg is invalid and ascii is absent'
            false                 | false                       | true        | 'gpg is invalid and ascii armored has invalid content'
            false                 | true                        | true        | 'gpg is invalid and ascii exists'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

                    "id('noop').version('bar')\nid('java')",
                    "id 'noop' apply false",
                    "id('noop').apply(false)",
                    "id('noop').apply(false);id('java')",
                    "id 'noop' version 'bar' apply false",
                    "id('noop').version('bar').apply(false)",
            ]
        }
    
        def "illegal value in plugins block - #code"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

            "configurations.compileClasspath.incoming.artifactView {}.files.files"                                       | true        | true        | false
            "configurations.compileClasspath.incoming.artifactView { componentFilter { it.module=='foo' } }.files.files" | true        | false       | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRolesIntegrationTest.groovy

            'consume or publish only' | 'canBeResolved = false'
            'dependency scope'        | 'canBeResolved = false; canBeConsumed = false'
    
        }
    
        def "cannot resolve a configuration with role #role at configuration time"() {
            given:
            buildFile << """
    
            configurations {
                internal {
                    $code
                }
            }
            dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top