Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isConfigurable (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskMutator.java

        }
    
        public void mutate(String method, Runnable action) {
            if (!task.getState().isConfigurable()) {
                throw new IllegalStateException(format(method));
            }
            action.run();
        }
    
        public <T> T mutate(String method, Callable<T> action) {
            if (!task.getState().isConfigurable()) {
                throw new IllegalStateException(format(method));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/bean/DefaultPropertyWalker.java

                if (isConfigurable()) {
                    Object value = cachedInvoker.get();
                    ((HasConfigurableValueInternal) value).implicitFinalizeValue();
                }
            }
    
            private boolean isProvider() {
                return Provider.class.isAssignableFrom(declaredType);
            }
    
            private boolean isConfigurable() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    		}
    		*ptr = v
    	default:
    		panic(fmt.Sprintf("unsupported config field type %v", f.field.Type))
    	}
    	return nil
    }
    
    // isConfigurable returns true if name is either the name of a config field, or
    // a valid value for a multi-choice config field.
    func isConfigurable(name string) bool {
    	_, ok := configFieldMap[name]
    	return ok
    }
    
    // isBoolConfig returns true if name is either name of a boolean config field,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top