Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for chanOf (0.37 sec)

  1. src/net/http/serve_test.go

    	}
    
    	readErrCh := make(chan error, 1)
    	errCh := make(chan error, 2)
    
    	server := newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		go func(body io.Reader) {
    			_, err := body.Read(make([]byte, 100))
    			readErrCh <- err
    		}(req.Body)
    		time.Sleep(500 * time.Millisecond)
    	})).ts
    
    	closeConn := make(chan bool)
    	defer close(closeConn)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	mrfMU      sync.Mutex
    	resyncer   *replicationResyncer
    
    	// workers:
    	workers    []chan ReplicationWorkerOperation
    	lrgworkers []chan ReplicationWorkerOperation
    
    	// mrf:
    	mrfWorkerKillCh chan struct{}
    	mrfReplicaCh    chan ReplicationWorkerOperation
    	mrfSaveCh       chan MRFReplicateEntry
    	mrfStopCh       chan struct{}
    	mrfWorkerSize   int
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    //     containers have failed health checks
    func (kl *Kubelet) syncLoopIteration(ctx context.Context, configCh <-chan kubetypes.PodUpdate, handler SyncHandler,
    	syncCh <-chan time.Time, housekeepingCh <-chan time.Time, plegCh <-chan *pleg.PodLifecycleEvent) bool {
    	select {
    	case u, open := <-configCh:
    		// Update from a config source; dispatch it to the right handler
    		// callback.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    func (c *minioBucketCollector) Describe(ch chan<- *prometheus.Desc) {
    	ch <- c.desc
    }
    
    // Collect is called by the Prometheus registry when collecting metrics.
    func (c *minioBucketCollector) Collect(out chan<- prometheus.Metric) {
    	var wg sync.WaitGroup
    	publish := func(in <-chan MetricV2) {
    		defer wg.Done()
    		for metric := range in {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    	kubelet.resyncInterval = time.Second * 30
    
    	ch := make(chan kubetypes.PodUpdate)
    	close(ch)
    
    	// sanity check (also prevent this test from hanging in the next step)
    	ok := kubelet.syncLoopIteration(ctx, ch, kubelet, make(chan time.Time), make(chan time.Time), make(chan *pleg.PodLifecycleEvent, 1))
    	require.False(t, ok, "Expected syncLoopIteration to return !ok since update chan was closed")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // set, operand types are set as result types if associated body result types
      // match the operand type (does not change per loop iteration). If operand and
      // body result types are not the same, only handle types are propagated to
      // result types. This is necessary to not incorrectly change result shapes
      // when the While op will have a different result shape. Otherwise operand
      // shapes are propagated to result shapes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

        # change during a cluster upgrade.)
        local templates
        templates=$(get-template "${PROJECT}")
    
        # Deliberately allow globbing, do not change unless a bug is found
        # shellcheck disable=SC2206
        local all_instance_groups=(${INSTANCE_GROUPS[@]:-} ${WINDOWS_INSTANCE_GROUPS[@]:-})
        # Deliberately do not quote, do not change unless a bug is found
        # shellcheck disable=SC2068
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    				}
    
    				break
    			}
    
    			// On AIX, a second relocation must be done by the loader,
    			// as section addresses can change once loaded.
    			// The "default" symbol address is still needed by the loader so
    			// the current relocation can't be skipped.
    			if target.IsAIX() && rst != sym.SDYNIMPORT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("Transformed") == 0
        }
    
        def "transform is supplied with a different output directory when parameters change"() {
            given:
            // Use another script to define the value, so that transform implementation does not change when the value is changed
            def otherScript = file("other.gradle")
            otherScript.text = "ext.value = 123"
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  10. src/net/http/server.go

    		ctx, cancelCtx = context.WithTimeout(r.Context(), h.dt)
    		defer cancelCtx()
    	}
    	r = r.WithContext(ctx)
    	done := make(chan struct{})
    	tw := &timeoutWriter{
    		w:   w,
    		h:   make(Header),
    		req: r,
    	}
    	panicChan := make(chan any, 1)
    	go func() {
    		defer func() {
    			if p := recover(); p != nil {
    				panicChan <- p
    			}
    		}()
    		h.handler.ServeHTTP(tw, r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top