Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for thinsp (0.1 sec)

  1. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/groovyToolClassesAreNotVisible/src/main/groovy/Thing.groovy

    class Thing {
        def builder = new groovy.ant.AntBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 62 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyResolutionEventsIntegrationTest.groovy

                configurations {
                    things.incoming.afterResolve { incoming ->
                        incoming.files.files
                        println "accessed files"
                    }
                }
                dependencies {
                    things files("thing.txt")
                }
    
                task resolveIt(type: Sync) {
                    from configurations.things
                    into buildDir
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

        }
    
        /**
         * Recursively unpacks all the given things into a flat list.
         *
         * Nulls are not removed, they are left intact.
         *
         * @param things The things to flatten
         * @return A flattened list of the given things
         */
        public static List<?> flattenCollections(Object... things) {
            return flattenCollections(Object.class, things);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/ModelDslRuleInputDetectionIntegrationSpec.groovy

            succeeds "echo"
            output.contains "thing.value: foo"
    
            where:
            syntax << [
                '$("thing.value")',
                '$("thing").value',
                '$("thing").getValue()',
                "(\$('thing')).value",
                '$("thing")."${"value"}"',
                "\$('thing').'value'",
                "\$('thing').value.toUpperCase().toLowerCase()",
                "\$('thing').value[0] + 'oo'",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaStoreTest.groovy

            def cl = new GroovyClassLoader()
            addClass(cl, "@${Managed.name} interface Thing1 {}")
            addClass(cl, "@${Managed.name} interface Thing2 {}")
            addClass(cl, "@${Managed.name} interface Container1 { ${ModelSet.name}<Thing1> getThings() }")
            addClass(cl, "@${Managed.name} interface Container2 { ${ModelSet.name}<Thing2> getThings() }")
    
            then:
            store.cache.size() == 6
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. tests/postgres_test.go

    	}
    
    	DB.Create(&thing)
    
    	thing2 := Thing{
    		SomeID:  "1234",
    		OtherID: "1234",
    		Data:    "something else",
    	}
    
    	result := DB.Clauses(clause.OnConflict{
    		OnConstraint: "some_id_other_id_unique",
    		UpdateAll:    true,
    	}).Create(&thing2)
    	if result.Error != nil {
    		t.Errorf("creating second thing: %v", result.Error)
    	}
    
    	var things []Thing
    	if err := DB.Find(&things).Error; err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Oct 08 09:16:32 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/NonIncrementalProcessorFixture.groovy

            super("Thing")
        }
    
        NonIncrementalProcessorFixture providingNoOriginatingElements() {
            providesNoOriginatingElements = true
            this
        }
    
        String getGeneratorCode() {
            """
    for (Element element : elements) {
        TypeElement typeElement = (TypeElement) element;
        String className = typeElement.getSimpleName().toString() + "Thing";
        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            def dir = testDir.file("thing.dir")
            classesDir(dir)
            def file = testDir.file("thing.jar")
            jar(file)
            def dir2 = testDir.file("thing2.dir")
            classesDir(dir2)
            def file2 = testDir.file("thing2.jar")
            jar(file2)
            def dir3 = testDir.file("thing3.dir")
            classesDir(dir3)
            def file3 = testDir.file("thing3.jar")
            jar(file3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/link.go

    // "can do weird things in GOPATH and we'd prefer they didn't
    // do _that_ weird thing" (per rsc). See also #4257.
    var ReservedImports = map[string]bool{
    	"go":   true,
    	"type": true,
    }
    
    var Ctxt *obj.Link
    
    // TODO(mdempsky): These should probably be obj.Link methods.
    
    // PkgLinksym returns the linker symbol for name within the given
    // package prefix. For user packages, prefix should be the package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

        }
    
        public static <T> List<T> toList(T[] things) {
            if (things == null || things.length == 0) {
                return new ArrayList<T>(0);
            }
    
            List<T> list = new ArrayList<T>(things.length);
            Collections.addAll(list, things);
            return list;
        }
    
        public static <T> Set<T> toSet(Iterable<? extends T> things) {
            if (things == null) {
                return new HashSet<T>(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top