Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 460 for discovered (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/initialization/buildsrc/BuildSrcProjectConfigurationAction.java

    import org.gradle.api.Action;
    import org.gradle.api.internal.project.ProjectInternal;
    
    /**
     * Can be implemented by plugins to auto-configure the buildSrc root project.
     *
     * <p>Implementations are discovered using the JAR service locator mechanism (see {@link org.gradle.internal.service.ServiceLocator}).
     * Each action is invoked for the buildSrc 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: Tue Jan 24 17:10:43 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/SwiftToolChainDiscoveryIntegrationTest.groovy

                model {
                    toolChains {
                        ${toolChain.buildScriptConfig}
                    }
                }
            """
        }
    
        def "toolchain is not available when the discovered swift executable does not return sensible output"() {
            def scriptDir = testDirectory.createDir("scriptDir")
            def script = scriptDir.createFile("swiftc")
            script << """
                #!/bin/sh
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/image/image.go

    	tagMatcher = regexp.MustCompile(`^(?U:.*)(?::([[:word:]][[:word:].-]*))?(?:@sha256:[a-fA-F\d]{64})?$`)
    )
    
    // TagFromImage extracts a tag from image. An empty string is returned if no tag is discovered.
    func TagFromImage(image string) string {
    	matches := tagMatcher.FindStringSubmatch(image)
    	if len(matches) >= 2 {
    		return matches[1]
    	}
    	return ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 19 21:21:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/MissingPropertyAnnotationHandler.java

    import org.gradle.util.internal.TextUtil;
    
    import static org.gradle.api.problems.Severity.ERROR;
    import static org.gradle.internal.deprecation.Documentation.userManual;
    
    /**
     * A handler for properties discovered without a valid annotation.
     */
    public interface MissingPropertyAnnotationHandler {
        void handleMissingPropertyAnnotation(TypeValidationContext context, PropertyAnnotationMetadata annotationMetadata, String displayName);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top