Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,254 for ctan (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		t.Fatal(err)
    	}
    	delegateServer.Handler.NonGoRestfulMux.HandleFunc("/foo", func(w http.ResponseWriter, _ *http.Request) {
    		w.WriteHeader(http.StatusForbidden)
    	})
    
    	delegatePostStartHookChan := make(chan struct{})
    	delegateServer.AddPostStartHookOrDie("delegate-post-start-hook", func(context PostStartHookContext) error {
    		defer close(delegatePostStartHookChan)
    		return nil
    	})
    
    	// this wires up swagger
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/syscall/js/js_test.go

    		t.Errorf("got %#v, want %#v", got, 42)
    	}
    	if !called {
    		t.Error("function not called")
    	}
    }
    
    func TestInterleavedFunctions(t *testing.T) {
    	c1 := make(chan struct{})
    	c2 := make(chan struct{})
    
    	js.Global().Get("setTimeout").Invoke(js.FuncOf(func(this js.Value, args []js.Value) any {
    		c1 <- struct{}{}
    		<-c2
    		return nil
    	}), 0)
    
    	<-c1
    	c2 <- struct{}{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    	default:
    		return nil
    	}
    }
    
    // StmtToInsertVarBefore returns the ast.Stmt before which we can safely insert a new variable.
    // Some examples:
    //
    // Basic Example:
    // z := 1
    // y := z + x
    // If x is undeclared, then this function would return `y := z + x`, so that we
    // can insert `x := ` on the line before `y := z + x`.
    //
    // If stmt example:
    // if z == 1 {
    // } else if z == y {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/cidrallocator.go

    	ipAddressSynced   cache.InformerSynced
    	ipAddressInformer networkingv1alpha1informers.IPAddressInformer
    	queue             workqueue.TypedRateLimitingInterface[string]
    
    	internalStopCh chan struct{}
    
    	muTree sync.Mutex
    	tree   *iptree.Tree[*Allocator]
    
    	ipFamily api.IPFamily
    }
    
    var _ Interface = &MetaAllocator{}
    
    // NewMetaAllocator returns an IP allocator that use the IPAddress
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. src/go/types/builtins.go

    			if !check.hasCallOrRecv {
    				mode = constant_
    				if t.len >= 0 {
    					val = constant.MakeInt64(t.len)
    				} else {
    					val = constant.MakeUnknown()
    				}
    			}
    
    		case *Slice, *Chan:
    			mode = value
    
    		case *Map:
    			if id == _Len {
    				mode = value
    			}
    
    		case *Interface:
    			if !isTypeParam(x.typ) {
    				break
    			}
    			if t.typeSet().underIs(func(t Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. pkg/xds/server.go

    	stop chan struct{}
    
    	// reqChan is used to receive discovery requests for this connection.
    	reqChan chan *discovery.DiscoveryRequest
    
    	// errorChan is used to process error during discovery request processing.
    	errorChan chan error
    }
    
    func NewConnection(peerAddr string, stream DiscoveryStream) Connection {
    	return Connection{
    		pushChannel: make(chan any),
    		initialized: make(chan struct{}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. internal/event/target/elasticsearch.go

    type ElasticsearchTarget struct {
    	initOnce once.Init
    
    	id         event.TargetID
    	args       ElasticsearchArgs
    	client     esClient
    	store      store.Store[event.Event]
    	loggerOnce logger.LogOnce
    	quitCh     chan struct{}
    }
    
    // ID - returns target ID.
    func (target *ElasticsearchTarget) ID() event.TargetID {
    	return target.id
    }
    
    // Name - returns the Name of the target.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/runtime/signal_unix.go

    // the signal handler is currently set to the Go signal handler or not.
    // This is uint32 rather than bool so that we can use atomic instructions.
    var handlingSig [_NSIG]uint32
    
    // channels for synchronizing signal mask updates with the signal mask
    // thread
    var (
    	disableSigChan  chan uint32
    	enableSigChan   chan uint32
    	maskUpdatedChan chan struct{}
    )
    
    func init() {
    	// _NSIG is the number of signals on this operating system.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. src/net/lookup_test.go

    	defer cancel()
    	ctxTimeout, cancel := context.WithTimeout(context.Background(), timeout)
    	defer cancel()
    
    	c := make(chan error, 2*N)
    	for i := 0; i < N; i++ {
    		name := fmt.Sprintf("%d.net-test.golang.org", i)
    		go func() {
    			_, err := DefaultResolver.LookupIPAddr(ctxHalfTimeout, name)
    			c <- err
    		}()
    		go func() {
    			_, err := DefaultResolver.LookupIPAddr(ctxTimeout, name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/discovery.go

    func (s *DiscoveryServer) handleUpdates(stopCh <-chan struct{}) {
    	debounce(s.pushChannel, stopCh, s.DebounceOptions, s.Push, s.CommittedUpdates)
    }
    
    // The debounce helper function is implemented to enable mocking
    func debounce(ch chan *model.PushRequest, stopCh <-chan struct{}, opts DebounceOptions, pushFn func(req *model.PushRequest), updateSent *atomic.Int64) {
    	var timeChan <-chan time.Time
    	var startDebounce time.Time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top