Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 3,235 for Managed (0.1 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindings.java

         */
        @Nullable
        StructSchema<?> getDelegateSchema();
    
        /**
         * Returns the managed properties inferred from the view and delegate schemas declaring this struct.
         *
         * @see ManagedProperty
         */
        Map<String, ManagedProperty<?>> getManagedProperties();
    
        /**
         * Returns the managed property with the given name, or {@code null} if such a property is not found.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/modelRules/configureElementsOfMap/groovy/build.gradle

    @Managed
    interface Person {
        String getFirstName()
        void setFirstName(String n)
    
        String getLastName()
        void setLastName(String n)
    }
    
    class PersonRules extends RuleSource {
        @Model
        void people(ModelMap<Person> people) {
        }
    }
    
    apply plugin: PersonRules
    
    // tag::create-and-configure[]
    model {
        people {
            john(Person) {
                println "creating $it"
                firstName = "John"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 931 bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

         * whether the DependencyCoordinate is used in dependency management, in which case it means the scope is not
         * explicitly managed by this managed dependency, or as a real dependency, in which case, the scope
         * will default to {@link #COMPILE}.
         */
        UNDEFINED("", false),
    
        /**
         * Compile only.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. pkg/apis/resource/namedresources.go

    }
    
    // NamedResourcesInstance represents one individual hardware instance that can be selected based
    // on its attributes.
    type NamedResourcesInstance struct {
    	// Name is unique identifier among all resource instances managed by
    	// the driver on the node. It must be a DNS subdomain.
    	Name string
    
    	// Attributes defines the attributes of this resource instance.
    	// The name of each attribute must be unique.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

        /**
         * Notification that the settings have been loaded for the root build.
         *
         * <p>This shouldn't be on this interface, as this is state for the root build that should be managed internally by the {@link RootBuildState} instance instead. This method is here to allow transition towards that structure.
         */
        void finalizeIncludedBuilds();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/ManagedImplStructSchema.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema;
    
    import org.gradle.model.internal.manage.schema.extract.ModelSchemaAspect;
    import org.gradle.model.internal.method.WeaklyTypeReferencingMethod;
    import org.gradle.model.internal.type.ModelType;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/extender.go

    	extenderv1 "k8s.io/kube-scheduler/extender/v1"
    )
    
    // Extender is an interface for external processes to influence scheduling
    // decisions made by Kubernetes. This is typically needed for resources not directly
    // managed by Kubernetes.
    type Extender interface {
    	// Name returns a unique name that identifies the extender.
    	Name() string
    
    	// Filter based on extender-implemented predicate functions. The filtered list is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/services/internal/BuildServiceProvider.java

    import org.gradle.internal.state.Managed;
    
    import javax.annotation.Nonnull;
    
    import static org.gradle.internal.Cast.uncheckedCast;
    
    /**
     * A provider for build services that are registered or consumed.
     */
    @SuppressWarnings("rawtypes")
    public abstract class BuildServiceProvider<T extends BuildService<P>, P extends BuildServiceParameters> extends AbstractMinimalProvider<T> implements Managed {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NamedThingInterface.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model;
    
    import org.gradle.api.Named;
    
    @Managed
    public interface NamedThingInterface extends Named {
        String getOther();
    
        void setOther(String string);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 796 bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/ManagedPropertyMethodBinding.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.binding;
    
    import com.google.common.base.Preconditions;
    import org.gradle.internal.reflect.PropertyAccessorType;
    import org.gradle.model.internal.method.WeaklyTypeReferencingMethod;
    import org.gradle.model.internal.type.ModelType;
    
    /**
     * Method binding for methods implemented by a managed property.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top