Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for fals (0.16 sec)

  1. docs/de/docs/tutorial/query-params-str-validations.md

        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="7"
        {!> ../../../docs_src/query_params_str_validations/tutorial003_py310.py!}
        ```
    
    === "Python 3.8+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="10"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:59 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationRepositoriesBuildOperationIntegrationTest.groovy

            }
    
            where:
            definition               | success | artifactPattern
            "url = 'http://foo.com'" | true    | false
            "artifactPattern 'foo'"  | true    | true
            ''                       | false   | false
        }
    
        def "flat-dir repository attributes are stored"() {
            setup:
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginExternalDTDOptionIntegrationTest.groovy

                }
            """
    
            when:
            fails 'checkstyleMain'
    
            then:
            assertFailedWithCheckstyleVerificationErrors()
        }
    
        def "can use enable_external_dtd_load feature on task to override extension value for a task"() {
            given:
            buildFile """
                checkstyle {
                    enableExternalDtdLoad = false
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

            executer.expectDeprecationWarning("Publication ignores 'transitive = false' at configuration level. This behavior is deprecated. Consider using 'transitive = false' at the dependency level if you need this to be published.")
            succeeds 'publish'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/15009")
        def "fails publishing if a variant contains a dependency on an enforced platform"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/DefaultTypeConverterTest.groovy

            converter.convert(12 as Byte, Long.class, false) == 12L
            converter.convert(123 as Short, Long.class, false) == 123L
            converter.convert(123 as Integer, Long.class, false) == 123L
            converter.convert(123 as Long, Long.class, false) == 123L
            converter.convert(123 as Double, Long.class, false) == 123L
            converter.convert(123 as BigInteger, Long.class, false) == 123L
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 13.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

            when: 'task fails'
            buildFile '''
                tasks.register('fail') {
                    doLast { assert false }
                }
            '''
            configurationCacheFails 'fail'
    
            then: 'flow action reacts to build failure'
            outputContains '(red)'
            configCache.assertStateStored()
    
            when: 'task from cache fails'
            configurationCacheFails 'fail'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/AbstractHttpsRepoResolveIntegrationTest.groovy

            keyStore.configureIncorrectServerCert(executer)
            fails "libs"
    
            then:
            failure.assertHasCause("Could not GET '${server.uri}/repo1/my-group/my-module/1.0/")
            failure.assertThatCause(containsText("java.security.cert.CertPathValidatorException"))
        }
    
        def "build fails when server can't authenticate client"() {
            keyStore = TestKeyStore.init(resources.dir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.2K bytes
    - Viewed (1)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DirectorySensitivityErrorHandlingIntegrationSpec.groovy

                this.additionalAnnotations = additionalAnnotations
            }
        }
    
        enum Output {
            OUTPUTFILE(OutputFile, 'File', 'file("${buildDir}/foo")', false),
            OUTPUTFILES(OutputFiles, 'FileCollection', 'files("${buildDir}/foo")', false),
            OUTPUTDIRECTORY(OutputDirectory, 'File', 'file("${buildDir}/foo")', true),
            OUTPUTDIRECTORIES(OutputDirectories, 'FileCollection', 'files("${buildDir}/foo")', true)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedConfigurationUsageIntegrationTest.groovy

            'resolve()'                  | 'dependencyScope' | 'resolve()'                                                                                                                          || "Resolving dependency configuration 'custom' is not allowed as it is defined as 'canBeResolved=false'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 02:32:37 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

            '1+'             | ['1.4', '1.5']               | 3        | false
            '1.+'            | ['1.4', '1.5']               | 3        | false
            '[1.0,)'         | ['1.4', '1.5']               | 3        | false
            'latest.release' | ['1.4', '1.5']               | 3        | true
    
            '1+'             | ['[1.2,)', '1.5']            | 1        | false
            '1.+'            | ['[1.2,)', '1.5']            | 1        | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top