Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getConfigurer (0.24 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

        }
    
        private Configurer getConfigurer() {
            return getConfigurer(false);
        }
    
        private Configurer getConfigurer(boolean ignoreAbsent) {
            return new Configurer(ignoreAbsent);
        }
    
        protected void withActualValue(Action<Configurer> action) {
            setToConventionIfUnset();
            action.execute(getConfigurer(true));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

        public void add(final T element) {
            getConfigurer(false).add(element);
        }
    
        @Override
        public void add(final Provider<? extends T> providerOfElement) {
            getConfigurer(false).add(providerOfElement);
        }
    
        @Override
        @SafeVarargs
        @SuppressWarnings("varargs")
        public final void addAll(T... elements) {
            getConfigurer(false).addAll(elements);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

            this.valueState.setConvention(convention);
            this.value = initialValue;
        }
    
        protected void withActualValue(Action<Configurer> action) {
            setToConventionIfUnset();
            action.execute(getConfigurer());
        }
    
        @Override
        public boolean isImmutable() {
            return false;
        }
    
        @Override
        public Class<?> publicType() {
            return ConfigurableFileCollection.class;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top