Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 268 for propertyNames (0.6 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ManagedModelInitializerTest.groovy

                "It must be one of:",
                "    - A managed collection.",
                "    - A scalar collection.",
                "    - An unmanaged property (i.e. annotated with @Unmanaged)"
            )
    
            where:
            type                      | failingProperty | propertyName
            NonStringProperty         | Object          | 'name'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

        }
    
        @Override
        public Object property(String propertyName) throws MissingPropertyException {
            assertDynamicObject();
            return extensibleDynamicObject.getProperty(propertyName);
        }
    
        @Override
        public boolean hasProperty(String propertyName) {
            assertDynamicObject();
            return extensibleDynamicObject.hasProperty(propertyName);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultDependenciesAccessors.java

                visitOutputDir(visitor, workspace, OUT_CLASSES);
            }
    
            private void visitOutputDir(OutputVisitor visitor, File workspace, String propertyName) {
                File dir = new File(workspace, propertyName);
                visitor.visitOutputProperty(propertyName, TreeType.DIRECTORY, OutputFileValueSupplier.fromStatic(dir, fileCollectionFactory.fixed(dir)));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

                for (final Map.Entry<String, Object> entry : httpClientPropertyMap.entrySet()) {
                    final String propertyName = entry.getKey();
                    if (beanDesc.hasPropertyDesc(propertyName)) {
                        final PropertyDesc propertyDesc = beanDesc.getPropertyDesc(propertyName);
                        propertyDesc.setValue(closeableHttpClient, entry.getValue());
                    } else {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/plugins/AddSoftwareTypesAsExtensionsPluginTarget.java

            public ExtensionAddingVisitor(ProjectInternal target) {
                this.target = target;
            }
    
            @Override
            public void visitSoftwareTypeProperty(String propertyName, PropertyValue value, SoftwareType softwareType) {
                ExtensionContainer extensions = ((ExtensionAware) target).getExtensions();
                Class<?> returnType = softwareType.modelPublicType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            override val ignoredFileSystemCheckInputs: String?
                get() = startParameter.ignoredFileSystemCheckInputs
    
            override fun gradleProperty(propertyName: String): String? =
                gradleProperties.find(propertyName)?.uncheckedCast()
    
            override fun hashCodeOf(file: File) =
                hashCodeAndTypeOf(file).first
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                .containsElementsIn(generatedClass)
        }
    
        private static String getDefaultDeprecation(String className, String propertyName) {
            return "DeprecationLogger.deprecateProperty(" + className + ".class, \"" + propertyName + "\")\n" +
                ".withContext(\"Property was automatically upgraded to the lazy version.\")\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

     * A property can be _read_ if there is a method named `get<PropertyName>` with zero arguments that returns the same type as the property.
     * A property can be _modified_ if there is a method named `set<PropertyName>` with one argument that has the same type as the property and a return type of `void`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

                            }
                        });
                    }
                }
            }
    
            private void maybeSetSourceDir(SourceDirectorySet sourceSet, Task task, String propertyName) {
                Object value = task.property(propertyName);
                if (value != null) {
                    sourceSet.srcDir(value);
                }
            }
    
            @BinaryTasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformRegistrationFactory.java

            private LineEndingSensitivity lineEndingSensitivity = LineEndingSensitivity.DEFAULT;
    
            @Override
            public void visitInputFileProperty(
                String propertyName,
                boolean optional,
                InputBehavior behavior,
                DirectorySensitivity directorySensitivity,
                LineEndingSensitivity lineEndingSensitivity,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top