Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for participant (0.26 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/gradle/GradleBuild.java

         *
         * <p>This is not always the same the builds returned by {@link #getIncludedBuilds()}. For the root build, the set of importable builds contains all builds that participate in the composite build,
         * including those directly included by the root build plus all builds included transitively. For Gradle 7.2 and later, this set also includes any `buildSrc` builds that may be present.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.h

      //                 otherwise has no lifetime requirements.
      //  captures - The captured TensorHandles associated with this
      //             FlatTensorFunction. FlatTensorFunction will participate in
      //             ownership of the handles (it explicitly increments the refcount
      //             of each handle, and will decrement them on destruction).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 21:03:41 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven;
    
    import org.apache.maven.execution.MavenSession;
    
    /**
     * Allows core extensions to participate in Maven build session lifecycle.
     *
     * All callback methods (will) follow beforeXXX/afterXXX naming pattern to
     * indicate at what lifecycle point it is being called.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/interface.go

    }
    
    // ResourceLockConfig common data that exists across different
    // resource locks
    type ResourceLockConfig struct {
    	// Identity is the unique string identifying a lease holder across
    	// all participants in an election.
    	Identity string
    	// Key is a user-defined value used to indicate how high priority this lock
    	// have. Other locks may steal the lock from us if they believe their key
    	// has a higher priority.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 6K bytes
    - Viewed (0)
  7. CODE_OF_CONDUCT.md

    *   Gracefully accepting constructive criticism.
    *   Focusing on what is best for the community.
    *   Showing empathy towards other community members.
    
    Examples of unacceptable behavior by participants include:
    
    *   The use of sexualized language or imagery and unwelcome sexual attention or
        advances.
    *   Trolling, insulting/derogatory comments, and personal or political attacks.
    *   Public or private harassment.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 05 18:43:16 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top