Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for wired (0.06 sec)

  1. CONTRIBUTING.md

    The Gradle build uses [Java Toolchain](https://docs.gradle.org/current/userguide/toolchains.html) support to compile and execute tests across multiple versions of Java.
    
    Available JDKs on your machine are automatically detected and wired for the various compile and test tasks.
    Some tests require multiple JDKs to be installed on your computer, be aware of this if you make changes related to anything toolchains related.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pkg/controlplane/instance_test.go

    		IP:   net.IPv4(127, 0, 0, 1),
    		Port: 443,
    	}
    }
    
    // TestLegacyRestStorageStrategies ensures that all Storage objects which are using the generic registry Store have
    // their various strategies properly wired up. This surfaced as a bug where strategies defined Export functions, but
    // they were never used outside of unit tests because the export strategies were not assigned inside the Store.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// Register all client-go features with kube's feature gate instance and make all client-go
    	// feature checks use kube's instance. The effect is that for kube binaries, client-go
    	// features are wired to the existing --feature-gates flag just as all other features
    	// are. Further, client-go features automatically support the existing mechanisms for
    	// feature enablement metrics and test overrides.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	// h2transport (via onceSetNextProtoDefaults)
    	nextProtoOnce      sync.Once
    	h2transport        h2Transport // non-nil if http2 wired up
    	tlsNextProtoWasNil bool        // whether TLSNextProto was nil when the Once fired
    
    	// ForceAttemptHTTP2 controls whether HTTP/2 is enabled when a non-zero
    	// Dial, DialTLS, or DialContext func or TLSClientConfig is provided.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // in the header instead.
    //
    // Likewise, if the handler didn't set a Content-Type, we sniff that
    // from the initial chunk of output.
    //
    // The Writers are wired together like:
    //
    //  1. *response (the ResponseWriter) ->
    //  2. (*response).w, a [*bufio.Writer] of bufferBeforeChunkingSize bytes ->
    //  3. chunkWriter.Writer (whose writeHeader finalizes Content-Length/Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	sh := b.Shell(a)
    	p := a.Package
    	p.Internal.Cover.Cfg = a.Objdir + "coveragecfg"
    	pcfg := covcmd.CoverPkgConfig{
    		PkgPath: p.ImportPath,
    		PkgName: p.Name,
    		// Note: coverage granularity is currently hard-wired to
    		// 'perblock'; there isn't a way using "go build -cover" or "go
    		// test -cover" to select it. This may change in the future
    		// depending on user demand.
    		Granularity: "perblock",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/StatefulListener.java

     *
     * <p>The listener infrastructure will ensure that a listener of this type will either receive all events, or no events.
     * Currently, this is done by disallowing the registration of a listener of this type once any events have been fired.
     *
     * @see Scope
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface StatefulListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheWorkerApiIntegrationTest.groovy

    import javax.inject.Inject
    
    class ConfigurationCacheWorkerApiIntegrationTest extends AbstractConfigurationCacheIntegrationTest implements TasksWithInputsAndOutputs {
        def "task can wire input #type with fixed value to worker action parameter property"() {
            buildFile << """
                import ${Inject.name}
    
                abstract class UsesWorker extends DefaultTask {
                    @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/build.gradle.kts

        implementation(libs.jetty)
        implementation(libs.jettyServlet)
        implementation(libs.littleproxy)
        implementation(libs.mavenResolverSupplier) {
            because("For ApiMavenResolver. Wires together implementation for maven-resolver-api")
        }
        implementation(libs.maven3ResolverProvider) {
            because("For ApiMavenResolver. Provides MavenRepositorySystemUtils")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	forget := func(drainWatcher bool) {
    		w.setDrainInputBufferLocked(drainWatcher)
    		w.stopLocked()
    		done <- struct{}{}
    	}
    
    	maxRetriesToProduceTheRaceCondition := 1000
    	// Simulating the timer is fired and stopped concurrently by set time
    	// timeout to zero and run the Stop goroutine concurrently.
    	// May sure that the watch will not be blocked on Stop.
    	for i := 0; i < maxRetriesToProduceTheRaceCondition; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top