Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 222 for propertyNames (0.2 sec)

  1. 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)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CallInterceptingMetaClassTest.groovy

            when:
            withEntryPoint(GET_PROPERTY, propertyName) {
                property = instance.metaClass.getMetaProperty(propertyName)
            }
    
            then:
            property != null
            (property instanceof CallInterceptingMetaClass.InterceptedMetaProperty) == shouldIntercept
    
            where:
            propertyName | shouldIntercept
            "testString" | true
            "metaClass"  | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

                String propertyName = request.getInterceptedCallable().getCallableName();
                String setterName = "set" + TextUtil.capitalize(propertyName);
                scopeExpressions.add(CodeBlock.of("$1T.writesOfPropertiesNamed($2S)", INTERCEPTED_SCOPE_CLASS, propertyName));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/RemovePreviousOutputsStep.java

                work.visitOutputs(context.getWorkspace(), new UnitOfWork.OutputVisitor() {
                    @Override
                    public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
                        File root = value.getValue();
                        switch (type) {
                            case FILE:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/properties/InspectionSchemeFactoryTest.groovy

            metadata.visitValidationFailures(null, validationContext)
    
            then:
            validationContext.problems.isEmpty()
    
            when:
            def properties = metadata.propertiesMetadata.groupBy { it.propertyName }
    
            then:
            metadata.getAnnotationHandlerFor(properties.prop1) == handler1
            metadata.getAnnotationHandlerFor(properties.prop2) == handler2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/BeanDesc.java

        /**
         * {@link PropertyDesc}を持っているかどうかを返します。
         *
         * @param propertyName
         *            プロパティ名。{@literal null}や空文字列であってはいけません
         * @return {@link PropertyDesc}を持っているかどうか
         */
        boolean hasPropertyDesc(String propertyName);
    
        /**
         * {@link PropertyDesc}を返します。
         *
         * @param propertyName
         *            プロパティ名。{@literal null}や空文字列であってはいけません
         * @return {@link PropertyDesc}
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            changedFiles.collectMany { propertyName, files ->
                files.collect { file ->
                    "${type} property '${propertyName}' file ${file.absolutePath} has changed.".toString()
                }
            }
        }
    
        List<String> filesAdded(Map<String, List<File>> addedFiles) {
            addedFiles.collectMany { propertyName, files ->
                files.collect { file ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top