Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for AntType (0.17 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

        }
    
        @Override
        public void addToAntBuilder(Object builder, String nodeName, AntType type) {
            if (type == AntType.ResourceCollection) {
                addAsResourceCollection(builder, nodeName);
            } else if (type == AntType.FileSet) {
                addAsFileSet(builder, nodeName);
            } else {
                addAsMatchingTask(builder, nodeName);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

    fun <T : Configuration> NamedDomainObjectProvider<T>.addToAntBuilder(builder: Any, nodeName: String, type: FileCollection.AntType): Unit =
        get().addToAntBuilder(builder, nodeName, type)
    
    
    /**
     * See [Configuration.addToAntBuilder].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    There is also link:{javadocPath}/org/gradle/api/file/FileCollection.html#addToAntBuilder-java.lang.Object-java.lang.String-org.gradle.api.file.FileCollection.AntType-[a method on `FileCollection`] that will convert a file collection to a fileset or similar Ant type.
    --
    
    [[migant:properties]]
    == Migrating Ant properties
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

            dataTopLevelFunction(function, preIndex)
    
        private
        fun memberFunction(
            inType: KClass<*>,
            function: KFunction<*>,
            preIndex: DataSchemaBuilder.PreIndex,
            configureLambdas: ConfigureLambdaHandler
        ): SchemaMemberFunction {
            val thisTypeRef = inType.toDataTypeRef()
    
            val returnType = function.returnType
    
            checkInScope(returnType, preIndex)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    	},
    	"asApproximateFloat": {
    		cel.MemberOverload("quantity_get_float", []*cel.Type{apiservercel.QuantityType}, cel.DoubleType, cel.UnaryBinding(quantityGetApproximateFloat)),
    	},
    	"asInteger": {
    		cel.MemberOverload("quantity_get_int", []*cel.Type{apiservercel.QuantityType}, cel.IntType, cel.UnaryBinding(quantityGetValue)),
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/types.go

    	// determined at runtime rather than compile time.
    	DynType = NewSimpleTypeWithMinSize("dyn", cel.DynType, nil, 1)
    
    	// IntType is equivalent to the CEL 'int' type which is a 64-bit signed int.
    	IntType = NewSimpleTypeWithMinSize("int", cel.IntType, types.IntZero, MinNumberSize)
    
    	// NullType is equivalent to the CEL 'null_type'.
    	NullType = NewSimpleTypeWithMinSize("null_type", cel.NullType, types.NullValue, 4)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K 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. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    		field("UID", apiservercel.StringType, true),
    		field("creationTimestamp", apiservercel.TimestampType, true),
    		field("deletionGracePeriodSeconds", apiservercel.IntType, true),
    		field("deletionTimestamp", apiservercel.TimestampType, true),
    		field("generation", apiservercel.IntType, true),
    		field("resourceVersion", apiservercel.StringType, true),
    		field("finalizers", apiservercel.NewListType(apiservercel.StringType, -1), true),
    	))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/value_test.go

    	objType := NewObjectType("TestObject", map[string]*DeclField{})
    	tests := []struct {
    		val interface{}
    		typ ref.Type
    	}{
    		{true, types.BoolType},
    		{float64(1.2), types.DoubleType},
    		{int64(-42), types.IntType},
    		{uint64(63), types.UintType},
    		{time.Duration(300), types.DurationType},
    		{time.Now().UTC(), types.TimestampType},
    		{types.NullValue, types.NullType},
    		{NewListValue(), types.ListType},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  10. src/internal/xcoff/xcoff.go

    	Nscnum  uint16  // Section number of symbol
    	Ntype   uint16  // Basic and derived type specification
    	Nsclass uint8   // Storage class of symbol
    	Nnumaux uint8   // Number of auxiliary entries
    }
    
    type SymEnt64 struct {
    	Nvalue  uint64 // Symbol value
    	Noffset uint32 // Offset of the name in string table or .debug section
    	Nscnum  uint16 // Section number of symbol
    	Ntype   uint16 // Basic and derived type specification
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top