Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 161 for propertyNames (0.16 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/PreCreateOutputParentsStep.java

            work.visitOutputs(context.getWorkspace(), new UnitOfWork.OutputVisitor() {
                @Override
                public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
                    ensureOutput(propertyName, value.getValue(), type);
                }
    
                @Override
                public void visitLocalState(File localStateRoot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/DefaultFeatureFlagsTest.groovy

        }
    
        def "querying flag status notifies listener"() {
            def flag = Stub(FeatureFlag)
            flag.systemPropertyName >> propertyName
    
            when:
            flags.isEnabled(flag)
    
            then:
            1 * featureFlagListener.flagRead(flag)
    
            where:
            propertyName << ["prop", null]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/CustomLambdasTest.kt

            return outer
        }
    }
    
    
    class Outer {
        @get:Restricted
        val inner: Inner = Inner()
    
        @Configuring(propertyName = "inner")
        fun configureInner(fn: Functional) {
            fn.configure(inner)
        }
    
        @Configuring(propertyName = "inner")
        fun configureInnerWithGeneric(fn: GenericFunctional<Inner>) {
            fn.configure(inner)
        }
    }
    
    
    interface Functional {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/api/plugins/internal/DefaultBasePluginExtension.java

            getArchivesName().set(archivesBaseName);
        }
    
        private static void logPropertyDeprecation(String propertyName, String replacementPropertyName) {
            DeprecationLogger.deprecateProperty(BasePluginExtension.class, propertyName)
                .replaceWith(replacementPropertyName)
                .willBeRemovedInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 12:50:26 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeAnnotationHandler.java

            return true;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
            propertyMetadata.getAnnotation(SoftwareType.class).ifPresent(softwareType ->
                visitor.visitSoftwareTypeProperty(propertyName, value, softwareType)
            );
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 19:19:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/ServiceReferencePropertyAnnotationHandler.java

        }
    
        @Override
        public boolean isPropertyRelevant() {
            return true;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
            propertyMetadata.getAnnotation(ServiceReference.class).ifPresent(annotation -> {
                String serviceName = annotation.value();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskInputFilePropertyRegistration.java

        @Override
        public InputFilePropertyType getFilePropertyType() {
            return filePropertyType;
        }
    
        @Override
        public TaskInputFilePropertyBuilderInternal withPropertyName(String propertyName) {
            setPropertyName(propertyName);
            return this;
        }
    
        @Override
        public boolean isSkipWhenEmpty() {
            return skipWhenEmpty;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 21:43:46 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

            property(name) { jsonString(value) }
        }
    
        private
        inline fun property(name: String, value: () -> Unit) {
            propertyName(name)
            value()
        }
    
        private
        fun propertyName(name: String) {
            simpleString(name)
            write(':')
        }
    
        private
        fun simpleString(name: String) {
            write('"')
            write(name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/DefaultOverlappingOutputDetectorTest.groovy

                "output", staleFileAddedBetweenExecutions
            )
    
            when:
            def overlaps = detector.detect(previousOutputFiles, outputFilesBeforeExecution)
    
            then:
            overlaps.propertyName == "output"
            overlaps.overlappedFilePath == "/absolute/path"
        }
    
        def "detects overlap when there is a stale #type in an output directory"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxy.java

            for (Method method : methods) {
                if (isGetter(method)) {
                    String propertyName = getPropertyName(method.getName());
                    try {
                        Object propertyValue = method.invoke(parameter);
                        properties.put(propertyName, propertyValue);
                    } catch (IllegalAccessException | InvocationTargetException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:27:26 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top