Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 268 for propertyNames (0.59 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/impl/DefaultOutputSnapshotterTest.groovy

            }
            1 * fileCollectionSnapshotter.snapshot(contents) >> { throw failure }
            0 * _
    
            then:
            def ex = thrown OutputSnapshotter.OutputFileSnapshottingException
            ex.propertyName == "output"
            ex.cause == failure
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/TaskPropertyTestUtils.groovy

            GetInputPropertiesVisitor visitor = new GetInputPropertiesVisitor()
            TaskPropertyUtils.visitProperties(propertyWalker, task, visitor)
            return visitor.getProperties().collectEntries { [it.propertyName, it.value.call()] }
        }
    
        static FileCollection getInputFiles(DefaultTask task) {
            def fileCollectionFactory = task.getServices().get(FileCollectionFactory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:57 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public Object property(String propertyName) throws MissingPropertyException {
            return dynamicLookupRoutine.property(extensibleDynamicObject, propertyName);
        }
    
        @Override
        public Object findProperty(String propertyName) {
            return dynamicLookupRoutine.findProperty(extensibleDynamicObject, propertyName);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

                final VaErrorHook hook) {
            if (values.length == 0) {
                return;
            }
            for (final String value : values) {
                if (value.indexOf(',') >= 0) {
                    action.throwValidationError(messages -> {
                        messages.addErrorsInvalidStrIsIncluded(propertyName, value, ",");
                    }, hook);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

        pluginsExtension.name,
        accessorDescriptorFor(pluginsExtension.receiverType.internalName, pluginsExtension.returnType.internalName)
    )
    
    
    internal
    fun jvmGetterSignatureFor(propertyName: String, desc: String): JvmMethodSignature =
        // Accessors honor the kotlin property jvm interop convention.
        // The only difference with JavaBean 1.01 is to prefer `get` over `is` for boolean properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestBuildScopeServices.java

        }
    
        private static class EmptyGradleProperties implements GradleProperties {
            @Nullable
            @Override
            public Object find(String propertyName) {
                return null;
            }
    
            @Override
            public Map<String, Object> mergeProperties(Map<String, Object> properties) {
                return properties;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ScriptBlockBuilder.java

    import javax.annotation.Nullable;
    
    public interface ScriptBlockBuilder {
        /**
         * Adds a property assignment statement to this block
         */
        void propertyAssignment(@Nullable String comment, String propertyName, Object propertyValue, boolean assignOperator);
    
        /**
         * Adds a method invocation statement to this block
         */
        void methodInvocation(@Nullable String comment, String methodName, Object... methodArgs);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 03:37:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/FilePropertyVisitState.java

            for (Map.Entry<String, CurrentFileCollectionFingerprint> entry : inputFileProperties.entrySet()) {
                CurrentFileCollectionFingerprint fingerprint = entry.getValue();
    
                state.propertyName = entry.getKey();
                state.propertyHash = fingerprint.getHash();
                state.fingerprints = fingerprint.getFingerprints();
    
                visitor.preProperty(state);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerializationTest.groovy

            given:
            def problem = problemReporter.create {
                it.id("id", "label", GradleCoreProblemGroup.validation())
                    .additionalData(TypeValidationDataSpec.class) {
                        it.propertyName("property")
                        it.typeName("type")
                        it.parentPropertyName("parent")
                        it.pluginId("id")
                    }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

                work.visitOutputs(workspace, new UnitOfWork.OutputVisitor() {
                    @Override
                    public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
                        visitor.visitOutputTree(propertyName, type, value.getValue());
                    }
                });
            }
    
            // TODO Make this much more explicit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top