Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 460 for discovered (0.15 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/SECURITY.md

    # Security Policy
    
    ## Supported Versions
    
    Security updates are applied only to the latest release.
    
    ## Reporting a Vulnerability
    
    If you have discovered a security vulnerability in this project, please report it privately. **Do not disclose it as a public issue.** This gives us time to work with you to fix the issue before public exposure, reducing the chance that the exploit will be used before a patch is released.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 686 bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/BuildIdentifiedProgressDetails.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.initialization;
    
    /**
     * Fired once a build in the tree is discovered and before any other build operations reference that build are executed.
     *
     * @since 8.0
     */
    public interface BuildIdentifiedProgressDetails {
        String getBuildPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 878 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelListener.java

    abstract class ModelListener extends ModelPredicate {
        /**
         * Invoked once for each node when the node reaches the {@link org.gradle.model.internal.core.ModelNode.State#Discovered} state
         * if the node matches the criteria specified by this listener.
         */
        public abstract void onDiscovered(ModelNodeInternal node);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/MethodAccess.java

         *
         * <p>Note that not every method is known. Some methods may require an attempt invoke it in order for them to be discovered.</p>
         */
        boolean hasMethod(String name, @Nullable Object... arguments);
    
        /**
         * Invokes the method with the given name and arguments.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. test/switch6.go

    // Check the compiler's switch handling that happens
    // at typechecking time.
    // This must be separate from other checks,
    // because errors during typechecking
    // prevent other errors from being discovered.
    
    package main
    
    // Verify that type switch statements with impossible cases are detected by the compiler.
    func f0(e error) {
    	switch e.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 24 17:04:15 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelGraphTest.groovy

            then:
            1 * listener.onDiscovered(graph.root)
            1 * listener.onDiscovered(a)
            1 * listener.onDiscovered(b)
            0 * listener.onDiscovered(_)
    
            when:
            graph.add(c)
            graph.add(d)
    
            then:
            1 * listener.onDiscovered(c)
            1 * listener.onDiscovered(d)
            0 * listener.onDiscovered(_)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top