Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,252 for ctan (0.05 sec)

  1. src/reflect/iter_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package reflect_test
    
    import (
    	"iter"
    	"maps"
    	. "reflect"
    	"testing"
    )
    
    func TestValueSeq(t *testing.T) {
    	m := map[string]int{
    		"1": 1,
    		"2": 2,
    		"3": 3,
    		"4": 4,
    	}
    	c := make(chan int, 3)
    	for i := range 3 {
    		c <- i
    	}
    	close(c)
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 14:27:54 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. internal/event/target/mqtt.go

    }
    
    // MQTTTarget - MQTT target.
    type MQTTTarget struct {
    	initOnce once.Init
    
    	id         event.TargetID
    	args       MQTTArgs
    	client     mqtt.Client
    	store      store.Store[event.Event]
    	quitCh     chan struct{}
    	loggerOnce logger.LogOnce
    }
    
    // ID - returns target ID.
    func (target *MQTTTarget) 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
    - 8.2K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprog/coro.go

    	for range 3 {
    		runtime.LockOSThread()
    		ok := yield(5)
    		runtime.UnlockOSThread()
    		if !ok {
    			return
    		}
    	}
    }
    
    func iterYieldNewG(yield func(int) bool) {
    	for range 3 {
    		done := make(chan struct{})
    		var ok bool
    		go func() {
    			ok = yield(5)
    			done <- struct{}{}
    		}()
    		<-done
    		if !ok {
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_bench_test.go

    				},
    				Spec: s.MustNewInstance(),
    			})
    		}
    
    		return false
    	})
    	stores := map[cluster.ID]model.ConfigStore{
    		"fake": store,
    	}
    	ctx := local.NewContext(stores, make(chan struct{}), func(name config.GroupVersionKind) {})
    
    	b.ResetTimer()
    	for _, a := range All() {
    		b.Run(a.Metadata().Name+"-bench", func(b *testing.B) {
    			a.Analyze(ctx)
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/initializer/interfaces.go

    // has already been drained for admission plugins that need it.
    // After receiving that notification, Admit/Validate calls won't be called anymore.
    type WantsDrainedNotification interface {
    	SetDrainedNotification(<-chan struct{})
    	admission.InitializationValidator
    }
    
    // WantsFeatureGate defines a function which passes the featureGates for inspection by an admission plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    		readFrameCh:                 make(chan http2readFrameResult),
    		wantWriteFrameCh:            make(chan http2FrameWriteRequest, 8),
    		serveMsgCh:                  make(chan interface{}, 8),
    		wroteFrameCh:                make(chan http2frameWriteResult, 1), // buffered; one send in writeFrameAsync
    		bodyReadCh:                  make(chan http2bodyReadMsg),         // buffering doesn't matter either way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    		random:                       make([]byte, 32),
    		secureRenegotiationSupported: true,
    		cipherSuites:                 []uint16{TLS_RSA_WITH_RC4_128_SHA},
    	}
    
    	bufChan := make(chan []byte, 1)
    	c, s := localPipe(t)
    
    	go func() {
    		cli := Client(c, testConfig)
    		cli.vers = clientHello.vers
    		if _, err := cli.writeHandshakeRecord(clientHello, nil); err != nil {
    			testFatal(t, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/nettest/conntest.go

    }
    
    // testBasicIO tests that the data sent on c1 is properly received on c2.
    func testBasicIO(t *testing.T, c1, c2 net.Conn) {
    	want := make([]byte, 1<<20)
    	rand.New(rand.NewSource(0)).Read(want)
    
    	dataCh := make(chan []byte)
    	go func() {
    		rd := bytes.NewReader(want)
    		if err := chunkedCopy(c1, rd); err != nil {
    			t.Errorf("unexpected c1.Write error: %v", err)
    		}
    		if err := c1.Close(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/go/types/predicates.go

    		if y, ok := y.(*Map); ok {
    			return c.identical(x.key, y.key, p) && c.identical(x.elem, y.elem, p)
    		}
    
    	case *Chan:
    		// Two channel types are identical if they have identical value types
    		// and the same direction.
    		if y, ok := y.(*Chan); ok {
    			return x.dir == y.dir && c.identical(x.elem, y.elem, p)
    		}
    
    	case *Named:
    		// Two named types are identical if their type names originate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/syscall/exec_unix_test.go

    	}
    
    	defer func() {
    		signal.Ignore(syscall.SIGTTIN, syscall.SIGTTOU)
    		syscall.Tcsetpgrp(ttyFD, fpgrp)
    		signal.Reset()
    	}()
    
    	ch1 := make(chan os.Signal, 1)
    	ch2 := make(chan bool)
    
    	signal.Notify(ch1, syscall.SIGTTIN, syscall.SIGTTOU)
    	defer signal.Stop(ch1)
    
    	cmd := create(t)
    
    	go func() {
    		cmd.proc.SysProcAttr = &syscall.SysProcAttr{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top