Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for participant (0.27 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

                    module('org:a:1.0')
                    module('org:b:1.0')
                }
            }
        }
    
        @Issue("gradle/gradle#12011")
        def "can detect capability conflict even when participants belong to a virtual platform (#first, #second)"() {
            given:
            repository {
                'aligned:foo:1.0'()
                'indirect:bar:1.0' {
                    dependsOn 'other:baz:1.0'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                }
            }
        }
    
        void "transitive dependencies of an dependency constraint do not participate in conflict resolution if it is not included elsewhere"() {
            given:
            mavenRepo.module("org", "foo", '1.0').dependsOn('org', 'bar', '1.1').publish()
            mavenRepo.module("org", "bar", '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

            return results.getResolved(componentFactory);
        }
    
        /**
         * Resolve the 'require' constraint of the selector.
         * A version will be registered for this selector, and it will participate in conflict resolution.
         */
        private void resolveRequireConstraint(SelectorStateResolverResults results, ResolvableSelectorState selector, VersionSelector allRejects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                        if (details.source.allExecutionComplete()) {
                            iterator.remove();
                        }
                        // Else, leave the plan in the set of plans so that it can participate in health monitoring. It will be garbage collected once complete
                    } else if (state == WorkSource.State.MaybeWorkReadyToStart) {
                        return WorkSource.State.MaybeWorkReadyToStart;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                        }
                    }
                }
            }
        }
    
        void "transitive dependencies of a dependency constraint do not participate in conflict resolution if it is not included elsewhere"() {
            given:
            def available = featureAvailable()
            repository {
                'org:foo:1.0' {
                    dependsOn 'org:bar:1.1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    // on the user provided policy. If an operation can be clustered (one of the
    // user provided policies accepts it under given constraints), it will become
    // a "member" that will participate in the union-find cluster construction.
    //
    // A block argument can also become a member (or even a root member), however
    // only operations will become a part of the outline `tf_device.cluster`, block
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/ConsoleConfigurationReportRenderer.java

                output.withStyle(StyledTextOutput.Style.Identifier).text("Configuration#getOutgoing(): ConfigurationPublications");
                output.println(" API which also participate in selection, in addition to the configuration itself.");
            }
        }
    
        private void writeConfiguration(ReportConfiguration config) {
            writeConfigurationNameHeader(config, spec.getReportedTypeAlias());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 16:17:12 UTC 2022
    - 18.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

            // TODO: support optional parameters?
            // TODO: support at least minimal overload resolution?
            val args = functionCall.args
    
            // TODO: lambdas are handled in a special way and don't participate in signature matching now
            val signatureSizeMatches = preFilterSignatures(matchingMembers, args)
    
            return chooseMatchingOverloads(receiver, signatureSizeMatches, args, argResolution)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

        /**
         * Execute the given action if the configuration has no defined dependencies when it first participates in
         * dependency resolution. A {@code Configuration} will participate in dependency resolution
         * when:
         * <ul>
         *     <li>The {@link Configuration} itself is resolved</li>
         *     <li>Another {@link Configuration} that extends this one is resolved</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

        //     we find them, regardless of what the address policies need.
        //
        //  2. EVICTABLE: Connections not required by any address policy. This matches connections that
        //     don't participate in any policy, plus connections whose policies won't be violated if the
        //     connection is closed. We only close these if the idle connection limit is exceeded.
        //
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top