Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for AntType (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    	}),
    	"indexOf": {
    		cel.MemberOverload("list_a_index_of_int", []*cel.Type{cel.ListType(paramA), paramA}, cel.IntType,
    			cel.BinaryBinding(indexOf)),
    	},
    	"lastIndexOf": {
    		cel.MemberOverload("list_a_last_index_of_int", []*cel.Type{cel.ListType(paramA), paramA}, cel.IntType,
    			cel.BinaryBinding(lastIndexOf)),
    	},
    }
    
    func (*lists) CompileOptions() []cel.EnvOption {
    	options := []cel.EnvOption{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    		// Get the return type of the wrapper function
    		// compiled by gcc.
    		gccResult := ""
    		if fntype.Results == nil || len(fntype.Results.List) == 0 {
    			gccResult = "void"
    		} else if len(fntype.Results.List) == 1 && len(fntype.Results.List[0].Names) <= 1 {
    			gccResult = p.cgoType(fntype.Results.List[0].Type).C.String()
    		} else {
    			fmt.Fprintf(fgcch, "\n/* Return type for %s */\n", exp.ExpName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/handlesTagsAndTaglets/src/taglet/java/CustomTaglet.java

            return false;
        }
    
        public boolean inOverview() {
            return false;
        }
    
        public boolean inPackage() {
            return false;
        }
    
        public boolean inType() {
            return true;
        }
    
        public boolean isInlineTag() {
            return false;
        }
    
        public String getName() {
            return "customtaglet";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 998 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    	case cel.BytesType:
    		return apiservercel.BytesType
    	case cel.DoubleType:
    		return apiservercel.DoubleType
    	case cel.DurationType:
    		return apiservercel.DurationType
    	case cel.IntType:
    		return apiservercel.IntType
    	case cel.NullType:
    		return apiservercel.NullType
    	case cel.StringType:
    		return apiservercel.StringType
    	case cel.TimestampType:
    		return apiservercel.TimestampType
    	case cel.UintType:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirBuiltInTypes.kt

        builtinTypes: BuiltinTypes,
        private val builder: KaSymbolByFirBuilder,
        override val token: KaLifetimeToken
    ) : KaBuiltinTypes() {
    
        override val int: KaType by cachedBuiltin(builtinTypes.intType)
        override val long: KaType by cachedBuiltin(builtinTypes.longType)
        override val short: KaType by cachedBuiltin(builtinTypes.shortType)
        override val byte: KaType by cachedBuiltin(builtinTypes.byteType)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/canCombineLocalOptionWithOtherOptions/src/taglet/java/LocaleAwareTaglet.java

            return false;
        }
    
        public boolean inOverview() {
            return true;
        }
    
        public boolean inPackage() {
            return false;
        }
    
        public boolean inType() {
            return true;
        }
    
        public boolean isInlineTag() {
            return false;
        }
    
        public String getName() {
            return "LOCALE_AWARE";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/testing/fuzz.go

    	fn := reflect.ValueOf(ff)
    	fnType := fn.Type()
    	if fnType.Kind() != reflect.Func {
    		panic("testing: F.Fuzz must receive a function")
    	}
    	if fnType.NumIn() < 2 || fnType.In(0) != reflect.TypeOf((*T)(nil)) {
    		panic("testing: fuzz target must receive at least two arguments, where the first argument is a *T")
    	}
    	if fnType.NumOut() != 0 {
    		panic("testing: fuzz target must not return a value")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. tests/integration/security/normalization_test.go

    			}
    		}
    		percentEncodedCases = append(percentEncodedCases, expect{in: input, out: output})
    	}
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			cases := []struct {
    				name         string
    				ntype        meshconfig.MeshConfig_ProxyPathNormalization_NormalizationType
    				expectations []expect
    			}{
    				{
    					"None",
    					meshconfig.MeshConfig_ProxyPathNormalization_NONE,
    					[]expect{
    						{"/", "/"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. logger/sql_test.go

    func format(v []byte, escaper string) string {
    	return escaper + strings.ReplaceAll(string(v), escaper, escaper+escaper) + escaper
    }
    
    func TestExplainSQL(t *testing.T) {
    	type role string
    	type password []byte
    	type intType int
    	type floatType float64
    	var (
    		tt                 = now.MustParse("2020-02-23 11:10:10")
    		myrole             = role("admin")
    		pwd                = password("pass")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. src/go/ast/walk_test.go

    	// boolean returned by the yield function resulted in the iterator calling
    	// yield for sibling nodes even after yield had returned false. With that
    	// bug, this test failed with a runtime panic.
    	src := "package p\ntype T struct {\n\tF int `json:\"f\"` // a field\n}\n"
    
    	fset := token.NewFileSet()
    	f, err := parser.ParseFile(fset, "", src, 0)
    	if err != nil {
    		panic(err)
    	}
    
    	for n := range ast.Preorder(f) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 916 bytes
    - Viewed (0)
Back to top