Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 86 for chains (0.11 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        client =
          client.newBuilder()
            .addNetworkInterceptor(
              Interceptor { chain: Interceptor.Chain? ->
                val request =
                  chain!!.request().newBuilder()
                    .header("Host", "privateobject.com")
                    .build()
                chain.proceed(request)
              },
            )
            .build()
        server.enqueue(MockResponse())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                ServerMessageBlock2Request<?> cur = cr;
    
                if ( first != null ) {
                    cr.chain(first);
                    cur = first;
    
                    for ( ServerMessageBlock2Request<?> req : others ) {
                        cur.chain(req);
                        cur = req;
                    }
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. okhttp/api/okhttp.api

    	public abstract fun withConnectTimeout (ILjava/util/concurrent/TimeUnit;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withReadTimeout (ILjava/util/concurrent/TimeUnit;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withWriteTimeout (ILjava/util/concurrent/TimeUnit;)Lokhttp3/Interceptor$Chain;
    	public abstract fun writeTimeoutMillis ()I
    }
    
    public final class okhttp3/Interceptor$Companion {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

     * article on <a href="https://github.com/google/guava/wiki/ListenableFutureExplained">{@code
     * ListenableFuture}</a>.
     *
     * <p>The main purpose of {@code ListenableFuture} is to help you chain together a graph of
     * asynchronous operations. You can chain them together manually with calls to methods like {@link
     * Futures#transform(ListenableFuture, Function, Executor) Futures.transform}, but you will often
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                transformerName == "MakeGreen"
                subjectName == "producer.jar (project :producer)"
            }
    
            checkExecuteTransformWorkOperations(executePlannedStepOps[0], 1)
        }
    
        def "chained transform operations are captured"() {
            createDirs("producer", "consumer")
            settingsFile << """
                include 'producer', 'consumer'
            """
    
            setupBuildWithChainedColorTransform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		stopCh := make(chan struct{})
    		controller, controllerCompletedCh := startAPFController(t, stopCh, apfConfiguration, serverConcurrency, plName, plConcurrency)
    
    		headerMatcher := headerMatcher{}
    		rquestTimesOutPath := "/request/time-out-as-designed"
    		reqHandlerCompletedCh, callerRoundTripDoneCh := make(chan struct{}), make(chan struct{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Futures.java

     * article on <a href="https://github.com/google/guava/wiki/ListenableFutureExplained">{@code
     * ListenableFuture}</a>.
     *
     * <p>The main purpose of {@code ListenableFuture} is to help you chain together a graph of
     * asynchronous operations. You can chain them together manually with calls to methods like {@link
     * Futures#transform(ListenableFuture, Function, Executor) Futures.transform}, but you will often
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    		}
    		for i := 0; i < nsym; i++ {
    			s.AddUint64(ctxt.Arch, uint64(chain[i]))
    		}
    	} else {
    		s.AddUint32(ctxt.Arch, uint32(nbucket))
    		s.AddUint32(ctxt.Arch, uint32(nsym))
    		for i := 0; i < nbucket; i++ {
    			s.AddUint32(ctxt.Arch, buckets[i])
    		}
    		for i := 0; i < nsym; i++ {
    			s.AddUint32(ctxt.Arch, chain[i])
    		}
    	}
    
    	dynstr := ldr.CreateSymForUpdate(".dynstr", 0)
    
    	// version symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property.attachProducer(owner(task))
    
            assertHasProducer(mapped, task)
            mapped.calculateExecutionTimeValue().isMissing()
        }
    
        def "chain of mapped value has value producer when producer task attached to original property"() {
            def task = Mock(Task)
            def property = propertyWithNoValue()
            property.set(someValue())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// the whole page.
    	chanSize := 2 * workersNumber
    	if chanSize < 256 {
    		chanSize = 256
    	}
    	toProcess := make(chan runtime.Object, chanSize)
    	errs := make(chan error, workersNumber+1)
    	workersExited := make(chan struct{})
    
    	wg.Add(workersNumber)
    	for i := 0; i < workersNumber; i++ {
    		go func() {
    			// panics don't cross goroutine boundaries
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top