Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for otherGroup (0.12 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            configuration.getAttributes().attribute(Attribute.of('key', String.class), 'value')
            configuration.resolutionStrategy
    
            def otherConf = conf("other")
            otherConf.dependencies.add(dependency("otherGroup", "name3", "version3"))
            configuration.extendsFrom(otherConf)
            return configuration
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

            buildFile """
                abstract class Thing {
                    String otherProp
    
                    abstract String getProp()
                    abstract void setProp(String value)
                }
    
                def t = objects.newInstance(Thing)
                assert t.prop == null
                assert t.otherProp == null
                t.prop = "value"
                assert t.prop == "value"
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top