Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 169 for Discovered (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolverResults.java

            for (int i = 0; i < size; i++) {
                Registration registration = results.get(i);
                ComponentIdResolveResult discovered = registration.result;
                if (selectorAcceptsCandidate(selector, discovered, registration.selector.isFromLock())) {
                    found = discovered;
                    selector.markResolved();
                    break;
                }
            }
            if (found!=null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K 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. 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)
  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/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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            registry.state("target") == ModelNode.State.GraphClosed
            registry.state("childA") == ModelNode.State.Discovered
            registry.state("childB") == ModelNode.State.Discovered
        }
    
        def "does not discover children of scope when node matching input type is already in discovered"() {
            registry.register(ModelRegistrations.bridgedInstance(ModelReference.of("dep", Bean), new Bean()).descriptor("dep").build())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  10. native-image-tests/src/main/kotlin/okhttp3/RunTests.kt

      val filters = listOf<PostDiscoveryFilter>()
      val discoveryOrchestrator = EngineDiscoveryOrchestrator(listOf(testEngine), filters)
      val discovered = discoveryOrchestrator.discover(request, EngineDiscoveryOrchestrator.Phase.EXECUTION)
    
      return discovered.getEngineTestDescriptor(testEngine).descendants.toList()
    }
    
    /**
     * Builds the awkwardly package private TreePrintingListener listener which we would like to use
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top