Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for Boolean (0.31 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyJavaInterOpIntegrationTest.groovy

                    private final Property<Boolean> flag;
                    private final Property<String> message;
                    private final Property<Double> number;
                    private final ListProperty<Integer> list;
                    private final SetProperty<Integer> set;
                    private final MapProperty<Integer, Boolean> map;
    
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/UnboundRulesProcessorTest.groovy

                            .immutableInput(UnboundRuleInput.type(Boolean).path("reference.third"))
            )
        }
    
        def "creates unbound rules with suggestions"() {
            given:
            binder {
                descriptor("ruleWithSuggestions")
                subjectReference("subject", Number)
                inputReference(String)
                inputReference("input.second", Boolean)
                inputReference("input.third", Long)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

                @Override
                boolean isApplicableToBuild(List<BuildWithSystemPropertyDefined> definitions) {
                    return true
                }
    
                @Override
                TestFile getAccessLocation(List<BuildWithSystemPropertyDefined> definitions, AbstractIntegrationSpec test) {
                    return null
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            0 * _
        }
    
        @Managed
        interface HasIsTypeGetter {
            boolean isRedundant()
    
            void setRedundant(boolean redundant)
        }
    
        @Managed
        interface HasGetTypeGetter {
            boolean getRedundant()
    
            void setRedundant(boolean redundant)
        }
    
        def "supports a boolean property with a get style getter"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

            interface Props {
                Thing getTheThing()
                void setTheThing(Thing t)
    
                boolean isBool1()
                void setBool1(boolean b)
    
                boolean isBool2()
                void setBool2(boolean b)
    
                Boolean getTheBoolean()
                void setTheBoolean(Boolean b)
    
                byte getThebyte()
                void setThebyte(byte b)
    
                char getThechar()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

            then:
            outputContains("this.value = ${output}")
    
            where:
            type      | value     | output
            String    | "'value'" | "value"
            Boolean   | "true"    | "true"
            boolean   | "true"    | "true"
            Character | "'a'"     | "a"
            char      | "'a'"     | "a"
            Byte      | "12"      | "12"
    //        byte| "12"      | "12" // TODO: currently not working
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                import org.gradle.api.provider.*
    
                abstract class IsSystemPropertySet implements ValueSource<Boolean, Parameters> {
                    interface Parameters extends ValueSourceParameters {
                        Property<String> getPropertyName()
                    }
                    @Override Boolean obtain() {
                        System.getProperties().get(parameters.getPropertyName().get()) != null
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AbstractClassGeneratorSpec.groovy

            ManyConstructors(int p0, int p1) {}
            ManyConstructors(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {}
            ManyConstructors(int p0, int p1, int p2, int p3, int p4, int p5) {}
            ManyConstructors(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {}
            ManyConstructors(int p0, int p1, boolean p2) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheCleanupIntegrationTest.groovy

            File cacheFile = cacheDir.file(key)
            Files.copy(value.toPath(), cacheFile.toPath())
            writeLastFileAccessTimeToJournal(cacheFile, timestamp)
        }
    
        @Override
        boolean existsBuildCacheEntry(String key) {
            cacheDir.file(key).exists()
        }
    
        @Override
        AbstractIntegrationSpec withEnabledBuildCache() {
            withBuildCache()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/ProvidersTest.groovy

        }
    
        @Override
        Integer someOtherValue2() {
            return 1234
        }
    
        @Override
        Integer someOtherValue3() {
            return 12345
        }
    
        @Override
        boolean isNoValueProviderImmutable() {
            return true
        }
    
        @Override
        ManagedFactory managedFactory() {
            return new ManagedFactories.ProviderManagedFactory()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top