Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 116 for chain (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/html/template/exec_test.go

    func dddArg(a int, b ...string) string {
    	return fmt.Sprintln(a, b)
    }
    
    // count returns a channel that will deliver n sequential 1-letter strings starting at "a"
    func count(n int) chan string {
    	if n == 0 {
    		return nil
    	}
    	c := make(chan string)
    	go func() {
    		for i := 0; i < n; i++ {
    			c <- "abcdefghijklmnop"[i : i+1]
    		}
    		close(c)
    	}()
    	return c
    }
    
    // vfunc takes a *V and a V
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    func dddArg(a int, b ...string) string {
    	return fmt.Sprintln(a, b)
    }
    
    // count returns a channel that will deliver n sequential 1-letter strings starting at "a"
    func count(n int) chan string {
    	if n == 0 {
    		return nil
    	}
    	c := make(chan string)
    	go func() {
    		for i := 0; i < n; i++ {
    			c <- "abcdefghijklmnop"[i : i+1]
    		}
    		close(c)
    	}()
    	return c
    }
    
    // vfunc takes a *V and a V
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. src/encoding/xml/marshal_test.go

    	Name map[string]string `xml:"name,attr"`
    }
    
    var marshalErrorTests = []struct {
    	Value any
    	Err   string
    	Kind  reflect.Kind
    }{
    	{
    		Value: make(chan bool),
    		Err:   "xml: unsupported type: chan bool",
    		Kind:  reflect.Chan,
    	},
    	{
    		Value: map[string]string{
    			"question": "What do you get when you multiply six by nine?",
    			"answer":   "42",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top