Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 315 for Toto (0.04 sec)

  1. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/invalid12.toml

    [libraries]
    
    [toto]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 28 bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/form-validator/lang/cs.js

    dule.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a,b){"use strict";a.formUtils.registerLoadedModule("lang/cs"),a(b).bind("validatorsLoaded",function(){a.formUtils.LANG={errorTitle:"Podání formuláře selhalo!",requiredField:"Toto pole je povinné",requiredfields:"Nebyly vyplněny všechny požadované pole",badTime:"Neplatný čas",badEmail:"Neplatná e-mailová adresa",badTelephone:"Neplatné telefonní číslo",badSecurityAnswer:"Chybná odpověď na bezpečnostní otázku",badDate:"Nesprávné...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServicesTest.groovy

            def output = Mock(DefaultSourceSetOutput)
            def classes = Stub(ConfigurableFileCollection) {
                getFiles() >> [
                    Stub(File) {
                        getName() >> 'toto'
                    }
                ]
            }
    
            when:
            services.configureClassesDirectoryVariant(apiElements, sourceSet)
    
            then:
            1 * apiElements.getOutgoing() >> outgoing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

            builder.library("guava", "com.google.guava:guava:17.0")
            builder.bundle("toto", ["foo"])
    
            when:
            builder.build()
    
            then:
            InvalidUserDataException ex = thrown()
            verify(ex.message, undefinedAliasRef {
                inCatalog('libs')
                aliasRef('foo')
                bundle('toto')
            })
        }
    
        def "normalizes alias separators to dot"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

                }
            }
        }
    
    
        artifacts {
            buildDir.mkdirs()
            file("\$buildDir/test.jar").text = "toto"
            runtimeOnly file("\$buildDir/test.jar")
        }
    }
    
    dependencies {
        api project(':child')
    
        artifactTypes.getByName("jar") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            'invalid10' | "Expected a boolean but value of 'rejectAll' is a string."
            'invalid11' | "Expected an array but value of 'reject' is a table."
            'invalid12' | "In version catalog libs, unknown top level elements [toto, tata]"
            'invalid13' | "Expected an array but value of 'groovy' is a string."
            'invalid14' | "In version catalog libs, version reference 'nope' doesn't exist"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. api/go1.21.txt

    pkg unicode, var Kawi *RangeTable #55079
    pkg unicode, var Nag_Mundari *RangeTable #55079
    pkg unicode, var Old_Uyghur *RangeTable #55079
    pkg unicode, var Tangsa *RangeTable #55079
    pkg unicode, var Toto *RangeTable #55079
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. src/unicode/tables.go

    	Tirhuta                = _Tirhuta                // Tirhuta is the set of Unicode characters in script Tirhuta.
    	Toto                   = _Toto                   // Toto is the set of Unicode characters in script Toto.
    	Ugaritic               = _Ugaritic               // Ugaritic is the set of Unicode characters in script Ugaritic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  9. test/goto.go

    		goto L
    	}
    }
    
    // goto into inner block not okay
    func _() {
    	goto L // ERROR "goto L jumps into block starting at LINE+1|goto jumps into block"
    	{      // GCCGO_ERROR "block starts here"
    	L:
    	}
    }
    
    // goto backward into inner block still not okay
    func _() {
    	{ // GCCGO_ERROR "block starts here"
    	L:
    	}
    	goto L // ERROR "goto L jumps into block starting at LINE-3|goto jumps into block"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 02:27:58 UTC 2017
    - 8.4K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/gotos.go

    L:
    }
    
    // goto into outer block okay
    func _() {
    	{
    		goto L
    	}
    L:
    }
    
    func _() {
    	{
    		goto L
    		goto L1
    	}
    L: L1:
    }
    
    // goto backward into outer block okay
    func _() {
    L:
    	{
    		goto L
    	}
    }
    
    func _() {
    L: L1:
    	{
    		goto L
    		goto L1
    	}
    }
    
    // goto into inner block not okay
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
Back to top