Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 949 for discovered (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

        enum State {
            Registered(true), // Initial state. Only path and some projections are known here
            Discovered(true), // All projections are defined
            Created(true), // Private data has been created, initial rules discovered
            DefaultsApplied(true), // Default values have been applied
            Initialized(true),
            Mutated(true),
            Finalized(false),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/PathBinderCreationListener.java

            this.bindAction = bindAction;
        }
    
        @Override
        public boolean canBindInState(ModelNode.State state) {
            return predicate.getReference().isUntyped() || state.isAtLeast(ModelNode.State.Discovered);
        }
    
        @Override
        public void doOnBind(ModelNodeInternal node) {
            if (predicate.matches(node)) {
                boundTo = node;
                bindAction.execute(this);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/configuration/project/ProjectConfigureAction.java

    import org.gradle.api.Action;
    import org.gradle.api.internal.project.ProjectInternal;
    
    /**
     * Can be implemented by plugins to auto-configure each project.
     *
     * <p>Implementations are discovered using the JAR service locator mechanism (see {@link org.gradle.internal.service.ServiceLocator}).
     * Each action is invoked for each project that is to be configured, before the project has been configured. Actions are executed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelGraph.java

                }
            }
        }
    
        private void maybeNotify(ModelNodeInternal node, ModelListener listener) {
            if (!node.isAtLeast(ModelNode.State.Discovered)) {
                return;
            }
            listener.onDiscovered(node);
        }
    
        @Nullable
        public ModelNodeInternal find(ModelPath path) {
            return flattened.get(path);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/OneOfTypeBinderCreationListener.java

            super(descriptor, predicate, writable);
            this.bindAction = bindAction;
        }
    
        @Override
        public boolean canBindInState(ModelNode.State state) {
            return state.isAtLeast(ModelNode.State.Discovered);
        }
    
        @Override
        public void doOnBind(ModelNodeInternal node) {
            boundTo = node;
            bindAction.execute(this);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/PropertyAccess.java

        /**
         * Returns true when this object is known to have the given property.
         *
         * <p>Note that not every property is known. Some properties require an attempt to get or set their value before they are discovered.</p>
         */
        boolean hasProperty(String name);
    
        /**
         * Gets the value of the given property, if present.
         */
        DynamicInvokeResult tryGetProperty(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelActionRole.java

    /**
     * A hard-coded sequence of model actions that can be applied to a model element.
     *
     * <p>This is pretty much a placeholder for something more descriptive.
     */
    public enum ModelActionRole {
        Discover(ModelNode.State.Discovered, false), // Defines all projections for the node
        Create(ModelNode.State.Created, false), // Initializes the node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. docs/security/security.md

    Square recognizes the important contributions the security research community
    can make. We therefore encourage reporting security issues with the code
    contained in this repository.
    
    If you believe you have discovered a security vulnerability, please follow the
    guidelines at https://bugcrowd.com/squareopensource
    
    
    ## Verifying Artifacts
    
    We sign our artifacts using this [key][signing_key]:
    
    ```
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 10:19:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNodes.java

            return new Predicate<MutableModelNode>() {
                @Override
                public boolean apply(MutableModelNode node) {
                    node.ensureAtLeast(ModelNode.State.Discovered);
                    return node.canBeViewedAs(type) && predicate.apply(node);
                }
            };
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/pluginwatcher/README.md

    It discovers plugins by monitoring inotify events under the directory returned by
    kubelet.getPluginsDir(). We will refer to this directory as PluginsDir.
    
    Plugins are expected to implement the gRPC registration service specified in
    pkg/kubelet/apis/pluginregistration/v*/api.proto.
    
    ## Plugin Discovery
    
    The pluginwatcher service will discover plugins in the PluginDir when they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:00:59 UTC 2019
    - 3.6K bytes
    - Viewed (0)
Back to top