Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 265 for ctan (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    type immediateCloseWatcher struct {
    	result chan watch.Event
    }
    
    func newImmediateCloseWatcher() *immediateCloseWatcher {
    	watcher := &immediateCloseWatcher{result: make(chan watch.Event)}
    	close(watcher.result)
    	return watcher
    }
    
    // Implements watch.Interface.
    func (c *immediateCloseWatcher) ResultChan() <-chan watch.Event {
    	return c.result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	switch dir {
    	default:
    		panic("reflect.ChanOf: invalid dir")
    	case SendDir:
    		s = "chan<- " + stringFor(typ)
    	case RecvDir:
    		s = "<-chan " + stringFor(typ)
    	case BothDir:
    		typeStr := stringFor(typ)
    		if typeStr[0] == '<' {
    			// typ is recv chan, need parentheses as "<-" associates with leftmost
    			// chan possible, see:
    			// * https://golang.org/ref/spec#Channel_types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    type ChanArgs struct {
    	T *Type // reference to a chan type whose elements need a width check
    }
    
    // // FuncArgs contains Type fields specific to TFUNCARGS types.
    type FuncArgs struct {
    	T *Type // reference to a func type whose elements need a width check
    }
    
    // Chan contains Type fields specific to channel types.
    type Chan struct {
    	Elem *Type   // element type
    	Dir  ChanDir // channel direction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// NOTE: This function has to be thread-safe - it can be called for
    	// different pods at the same time.
    	podSyncer podSyncer
    
    	// workerChannelFn is exposed for testing to allow unit tests to impose delays
    	// in channel communication. The function is invoked once each time a new worker
    	// goroutine starts.
    	workerChannelFn func(uid types.UID, in chan struct{}) (out <-chan struct{})
    
    	// The EventRecorder to use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    		//
    		//   <-(chan E)   =>  (<-chan E)
    		//   <-(chan<-E)  =>  (<-chan (<-E))
    
    		if _, ok := x.(*ChanType); ok {
    			// x is a channel type => re-associate <-
    			dir := SendOnly
    			t := x
    			for dir == SendOnly {
    				c, ok := t.(*ChanType)
    				if !ok {
    					break
    				}
    				dir = c.Dir
    				if dir == RecvOnly {
    					// t is type <-chan E but <-<-chan E is not permitted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    			return true
    		}
    		// A boolean type can only convert to another boolean type.
    		if allBoolean(x.typ) != allBoolean(y.typ) {
    			return false
    		}
    		// A string type can only convert to another string type.
    		if allString(x.typ) != allString(y.typ) {
    			return false
    		}
    		// Untyped nil can only convert to a type that has a nil.
    		if x.isNil() {
    			return hasNil(y.typ)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. plugin/pkg/admission/resourcequota/admission_test.go

    	return createHandlerWithConfig(kubeClient, informerFactory, nil, stopCh)
    }
    
    func createHandlerWithConfig(kubeClient kubernetes.Interface, informerFactory informers.SharedInformerFactory, config *resourcequotaapi.Configuration, stopCh chan struct{}) (*resourcequota.QuotaAdmission, error) {
    	if config == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    	// we can go ahead and publish the heap profile.
    	//
    	// First, wait for sweeping to finish. (We know there are no
    	// more spans on the sweep queue, but we may be concurrently
    	// sweeping spans, so we have to wait.)
    	for work.cycles.Load() == n+1 && !isSweepDone() {
    		Gosched()
    	}
    
    	// Now we're really done with sweeping, so we can publish the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. src/testing/testing.go

    	// function - which runs in a separate stack - is marked as a helper, we can
    	// continue walking the stack into the parent test.
    	var pc [maxStackLen]uintptr
    	n := runtime.Callers(2, pc[:])
    	t = &T{
    		common: common{
    			barrier: make(chan bool),
    			signal:  make(chan bool, 1),
    			name:    testName,
    			parent:  &t.common,
    			level:   t.level + 1,
    			creator: pc[:n],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/crypto/tls/tls_test.go

    	}
    	return nil
    }
    
    func TestTLSUniqueMatches(t *testing.T) {
    	ln := newLocalListener(t)
    	defer ln.Close()
    
    	serverTLSUniques := make(chan []byte)
    	parentDone := make(chan struct{})
    	childDone := make(chan struct{})
    	defer close(parentDone)
    	go func() {
    		defer close(childDone)
    		for i := 0; i < 2; i++ {
    			sconn, err := ln.Accept()
    			if err != nil {
    				t.Error(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top