Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for participant (0.22 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/initialization/LoadBuildStructureBuildOperationIntegrationTest.groovy

            def events = buildOperations.progress(ProjectsIdentifiedProgressDetails)
            events.size() == 1
            events[0].details.buildPath == ":"
        }
    
        def "composite participants expose their project structure"() {
            createDirs("a", "nested", "nested/b")
            settingsFile << """
            include "a"
            includeBuild "nested"
    
            rootProject.name = "root"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

    import org.gradle.internal.component.ResolutionFailureHandler;
    
    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * A dependency that can participate in dependency resolution.
     * Note that various subtypes provide additional details, but these are not required by the core resolution engine.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

            then:
            failure.assertHasCause("Could not resolve org:transitive:1.+: Resolution strategy disallows usage of dynamic versions")
        }
    
        def "passes if a transitive dynamic selector doesn't participate in selection"() {
            buildFile << """
                dependencies {
                    conf 'org:test:1.0'
                    conf 'org:testB:1.0'
                    conf 'org:testC:1.0'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool-rebalance.go

    	z.rebalMu.Unlock()
    
    	z.rebalMu.RLock()
    	participants := make([]bool, len(z.rebalMeta.PoolStats))
    	for i, ps := range z.rebalMeta.PoolStats {
    		// skip pools which have completed rebalancing
    		if ps.Info.Status != rebalStarted {
    			continue
    		}
    
    		participants[i] = ps.Participating
    	}
    	z.rebalMu.RUnlock()
    
    	for poolIdx, doRebalance := range participants {
    		if !doRebalance {
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

     * the proxy. This proxy connection is called a "TLS Tunnel" and is specified by
     * [RFC 2817][1]. The HTTP CONNECT request that creates this tunnel connection is special: it
     * does not participate in any [interceptors][Interceptor] or [event listeners][EventListener]. It
     * doesn't include the motivating request's HTTP headers or even its full URL; only the target
     * server's hostname is sent to the proxy.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    For example, if you add a dependency to your project, it becomes a _transitive dependency_ of your consumers, and therefore may participate in conflict resolution if the consumer needs a different version.
    
    A lot of the problems Gradle handles are about fixing the mismatch between the expectations of a consumer and a producer.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    * Each property getter or the corresponding field must be annotated with a property annotation like `@InputFile` and `@OutputDirectory`.
    Properties that don't participate in up-to-date checks should be annotated with `@Internal`.
    
    Any failed validations will result in a warning message.
    
    For each plugin you are developing, add an entry to the `gradlePlugin {}` script block:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. 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)
  10. README.md

    - For in-depth information about how to use Istio, visit [istio.io](https://istio.io)
    - To ask questions and get assistance from our community, visit [Github Discussions](https://github.com/istio/istio/discussions)
    - To learn how to participate in our overall community, visit [our community page](https://istio.io/about/community)
    
    In this README:
    
    - [Introduction](#introduction)
    - [Repositories](#repositories)
    - [Issue management](#issue-management)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top