Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for setSupplier (0.28 sec)

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

            }
        }
    
        @Override
        public void set(@Nullable T value) {
            if (value == null) {
                discardValue();
            } else {
                setSupplier(Providers.fixedValue(getValidationDisplayName(), value, type, sanitizer));
            }
        }
    
        @Override
        public Property<T> value(@Nullable T value) {
            set(value);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            if (value.isMissing()) {
                setSupplier(noValueSupplier());
            } else if (value.hasFixedValue()) {
                setSupplier(new FixedSupplier<>(value.getFixedValue(), Cast.uncheckedCast(value.getSideEffect())));
            } else {
                CollectingProvider<T, C> asCollectingProvider = Cast.uncheckedNonnullCast(value.getChangingValue());
    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/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            if (value.isMissing()) {
                setSupplier(noValueSupplier());
            } else if (value.hasFixedValue()) {
                setSupplier(new FixedSupplier<>(uncheckedNonnullCast(value.getFixedValue()), uncheckedCast(value.getSideEffect())));
            } else {
                CollectingProvider<K, V> asCollectingProvider = uncheckedNonnullCast(value.getChangingValue());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

        public void disallowUnsafeRead() {
            state.disallowUnsafeRead();
        }
    
        protected abstract S finalValue(EvaluationContext.ScopeContext context, S value, ValueConsumer consumer);
    
        protected void setSupplier(S supplier) {
            assertCanMutate();
            this.value = state.explicitValue(supplier);
        }
    
        protected void setConvention(S convention) {
            assertCanMutate();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. pkg/volume/util/fsquota/quota_linux.go

    	clearBackingDev(path)
    }
    
    func getApplier(path string) common.LinuxVolumeQuotaApplier {
    	dirApplierLock.Lock()
    	defer dirApplierLock.Unlock()
    	return dirApplierMap[path]
    }
    
    func setApplier(path string, applier common.LinuxVolumeQuotaApplier) {
    	dirApplierLock.Lock()
    	defer dirApplierLock.Unlock()
    	dirApplierMap[path] = applier
    }
    
    func clearApplier(path string) {
    	dirApplierLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

         *
         * Note: some other thread may currently be calculating the value
         */
        public S getSupplier() throws IllegalStateException {
            CalculationState<T, S> calculationState = this.calculationState;
            if (calculationState == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    ent$CouldNotGenerateValu; public java.util.List potentialsForNextUna() throws Throwable; private java.util.List generateAssignmentsF(org.junit.experimental.theories.ParameterSignature); private org.junit.experimental.theories.ParameterSupplier getSupplier(org.junit.experimental.theories.ParameterSignature) throws Exception; private org.junit.experimental.theories.ParameterSupplier buildParameterSuppli(Class) throws Exception; public Object[] getConstructorArgume() throws org.junit.experimental.t...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top