Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	if store == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CertVerifyCertificateChainPolicy(policyOID uintptr, chain *CertChainContext, para *CertChainPolicyPara, status *CertChainPolicyStatus) (err error) {
    	r1, _, e1 := Syscall6(procCertVerifyCertificateChainPolicy.Addr(), 4, uintptr(policyOID), uintptr(unsafe.Pointer(chain)), uintptr(unsafe.Pointer(para)), uintptr(unsafe.Pointer(status)), 0, 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

       *
       * <p>Invalid: - Collected: key/value was partially collected, but not yet cleaned up
       */
      interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> {
        /** Gets the next entry in the chain. */
        E getNext();
    
        /** Gets the entry's hash. */
        int getHash();
    
        /** Gets the key for this entry. */
        K getKey();
    
        /** Gets the value for the entry. */
        V getValue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    		//
    		// The interrupter goroutine waits for the input context to be done and
    		// closes the connection if this happens before the function returns.
    		done := make(chan struct{})
    		interruptRes := make(chan error, 1)
    		defer func() {
    			close(done)
    			if ctxErr := <-interruptRes; ctxErr != nil {
    				// Return context error to user.
    				ret = ctxErr
    			}
    		}()
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top