Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for typed (0.09 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                plugins {
                    id("base")
                }
    
                task wrongZip(type: Zip) {
                    archiveBaseName = "wrong"
                }
                task firstZip(type: Zip) {
                    archiveBaseName = "first"
                }
                task secondZip(type: Zip) {
                    archiveBaseName = "second"
                }
    
                configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. src/html/template/escape_test.go

    			"<script> \n</script><style> \n</style><a onclick='/**///' style='/**///'>",
    		},
    		{
    			"typed HTML in text",
    			`{{.W}}`,
    			`&iexcl;<b class="foo">Hello</b>, <textarea>O'World</textarea>!`,
    		},
    		{
    			"typed HTML in attribute",
    			`<div title="{{.W}}">`,
    			`<div title="&iexcl;Hello, O&#39;World!">`,
    		},
    		{
    			"typed HTML in script",
    			`<button onclick="alert({{.W}})">`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    and assigns it it's final type, that type must be an integer type, and a
    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    on the way down in updateExprType, or at the end of the type checker run,
    the type (and constant value, if any) is recorded via Info.Types, if present.
    */
    
    type opPredicates map[syntax.Operator]func(Type) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    and assigns it it's final type, that type must be an integer type, and a
    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    on the way down in updateExprType, or at the end of the type checker run,
    the type (and constant value, if any) is recorded via Info.Types, if present.
    */
    
    type opPredicates map[token.Token]func(Type) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

         * Gradle makes the necessary work to coerce those into "real" typed attributes during matching. This test
         * is here to prove that coercion works properly whenever attributes are sourced from a component metadata
         * supplier.
         */
        def "user provided attributes are properly coerced to typed attributes"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	NumCompiles map[types.NamespacedName]int
    }
    
    func (f *fakeCompiler) getNumCompiles(p *validating.Policy) int {
    	f.lock.Lock()
    	defer f.lock.Unlock()
    	return f.NumCompiles[types.NamespacedName{
    		Name:      p.Name,
    		Namespace: p.Namespace,
    	}]
    }
    
    func (f *fakeCompiler) RegisterDefinition(definition *validating.Policy, vf validateFunc) {
    	if f.ValidateFuncs == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    				// and they must be at the end of the parameter list, otherwise
    				// the types would have been filled in by the right-to-left sweep
    				// above and we wouldn't have an error. Since we are in a type
    				// parameter list, the missing types are constraints.
    				if named == typed {
    					errPos = end // position error at closing ]
    					msg = "missing type constraint"
    				} else {
    					msg = "missing type parameter name"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

    import org.lastaflute.web.validation.RequiredValidator;
    import org.lastaflute.web.validation.theme.typed.DoubleTypeValidator;
    import org.lastaflute.web.validation.theme.typed.FloatTypeValidator;
    import org.lastaflute.web.validation.theme.typed.IntegerTypeValidator;
    import org.lastaflute.web.validation.theme.typed.LongTypeValidator;
    import org.opensearch.search.sort.SortBuilder;
    import org.opensearch.search.sort.SortBuilders;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    				// If named == typed we must have parameters that have no types,
    				// and they must be at the end of the parameter list, otherwise
    				// the types would have been filled in by the right-to-left sweep
    				// above and we wouldn't have an error. Since we are in a type
    				// parameter list, the missing types are constraints.
    				if named == typed {
    					errPos = p.pos // position error at closing ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. src/html/template/exec_test.go

    	{"lt true true", "", false},             // Unordered types.
    	{"lt 1+0i 1+0i", "", false},             // Unordered types.
    	{"eq .Ptr 1", "", false},                // Incompatible types.
    	{"eq .Ptr .NegOne", "", false},          // Incompatible types.
    	{"eq .Map .V1", "", false},              // Uncomparable types.
    	{"eq .NonNilMap .NonNilMap", "", false}, // Uncomparable types.
    }
    
    func TestComparison(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top