Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getApplier (0.23 sec)

  1. pkg/volume/util/fsquota/quota_linux.go

    }
    
    func setQuotaOnDir(path string, id common.QuotaID, bytes int64) error {
    	return getApplier(path).SetQuotaOnDir(path, id, bytes)
    }
    
    func GetQuotaOnDir(m mount.Interface, path string) (common.QuotaID, error) {
    	_, _, err := getFSInfo(m, path)
    	if err != nil {
    		return common.BadQuotaID, err
    	}
    	return getApplier(path).GetQuotaOnDir(path)
    }
    
    func clearQuotaOnDir(m mount.Interface, path string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. pkg/volume/util/fsquota/project.go

    func findAvailableQuota(path string, idMap map[common.QuotaID]bool) (common.QuotaID, error) {
    	unusedQuotasSearched := 0
    	for id := common.FirstQuota; true; id++ {
    		if _, ok := idMap[id]; !ok {
    			isInUse, err := getApplier(path).QuotaIDIsInUse(id)
    			if err != nil {
    				return common.BadQuotaID, err
    			} else if !isInUse {
    				return id, nil
    			}
    			unusedQuotasSearched++
    			if unusedQuotasSearched > maxUnusedQuotasToSearch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

            try (EvaluationContext.ScopeContext context = openScope()) {
                beforeRead(context, consumer); // may throw its own exception, which should not be wrapped.
                try {
                    return getSupplier(context).calculatePresence(consumer);
                } catch (Exception e) {
                    if (displayName != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

            //  Without the safety net of the EvaluationContext, it can cause hard-to-debug exceptions.
            try (EvaluationContext.ScopeContext context = openScope()) {
                return getSupplier(context);
            }
        }
    
        public DefaultProperty<T> provider(Provider<? extends T> provider) {
            set(provider);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

                try (EvaluationContext.ScopeContext context = DefaultMapProperty.this.openScope()) {
                    beforeRead(context, consumer);
                    return getSupplier(context).calculateKeys(consumer);
                }
            }
        }
    
        private class NoValueSupplier implements MapSupplier<K, V> {
            private final Value<? extends Map<K, V>> value;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K 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