Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for IntType (0.24 sec)

  1. 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)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

         *
         * <li>{@link AntType#FileSet}: adds this collection as zero or more Ant FileSets with the given node name.</li>
         *
         * <li>{@link AntType#ResourceCollection}: adds this collection as zero or more Ant ResourceCollections with the
         * given node name.</li>
         *
         * </ul>
         *
         * You should prefer using {@link AntType#ResourceCollection}, if the target Ant task supports it, as this is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    }
    
    // describe returns a string describing the type typ contained within the type
    // set of inType. If non-empty, inName is used as the name of inType (this is
    // necessary so that we can use alias type names that may not be reachable from
    // inType itself).
    func describe(typ, inType types.Type, inName string) string {
    	name := inName
    	if typ != inType {
    		name = typeName(typ)
    	}
    	if name == "" {
    		return ""
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/universe.go

    	"cmd/internal/src"
    )
    
    var (
    	okfor [ir.OEND][]bool
    )
    
    var (
    	okforeq    [types.NTYPE]bool
    	okforadd   [types.NTYPE]bool
    	okforand   [types.NTYPE]bool
    	okfornone  [types.NTYPE]bool
    	okforbool  [types.NTYPE]bool
    	okforcap   [types.NTYPE]bool
    	okforlen   [types.NTYPE]bool
    	okforarith [types.NTYPE]bool
    )
    
    var builtinFuncs = [...]struct {
    	name string
    	op   ir.Op
    }{
    	{"append", ir.OAPPEND},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionTest.groovy

            when:
            collection.addToAntBuilder("node", "name", FileCollection.AntType.ResourceCollection)
    
            then:
            1 * source1.addToAntBuilder("node", "name", FileCollection.AntType.ResourceCollection)
            1 * source2.addToAntBuilder("node", "name", FileCollection.AntType.ResourceCollection)
            0 * _
        }
    
        void "visits children when structure is visited"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

            ant.taskdef(name: 'pmd', classname: 'net.sourceforge.pmd.ant.PMDTask')
            ant.pmd(antPmdArgs) {
                parameters.source.addToAntBuilder(ant, 'fileset', FileCollection.AntType.FileSet)
                ruleSets.each {
                    ruleset(it)
                }
                parameters.ruleSetConfigFiles.each {
                    ruleset(it)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. 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)
Back to top