Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 454 for wait4 (0.13 sec)

  1. internal/logger/target/kafka/kafka.go

    	h.logChMu.Lock()
    	xioutil.SafeClose(h.logCh)
    	h.logCh = nil
    	h.logChMu.Unlock()
    
    	if h.producer != nil {
    		h.producer.Close()
    		h.client.Close()
    	}
    
    	// Wait for messages to be sent...
    	h.wg.Wait()
    }
    
    // New initializes a new logger target which
    // sends log over http to the specified endpoint
    func New(config Config) *Target {
    	target := &Target{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/trace/goroutines.go

    			return
    		}
    	}
    }
    
    func stat2Color(statName string) string {
    	color := "#636363"
    	if strings.HasPrefix(statName, "Block time") {
    		color = "#d01c8b"
    	}
    	switch statName {
    	case "Sched wait time":
    		color = "#2c7bb6"
    	case "Syscall execution time":
    		color = "#7b3294"
    	case "Execution time":
    		color = "#d7191c"
    	}
    	return color
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. tests/integration/ambient/waypoint_test.go

    				"apply",
    				"--namespace",
    				nsConfig.Name(),
    				"--wait",
    			})
    
    			nameSet := []string{"", "w1", "w2"}
    			for _, name := range nameSet {
    				istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    					"waypoint",
    					"apply",
    					"--namespace",
    					nsConfig.Name(),
    					"--name",
    					name,
    					"--wait",
    				})
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    package feature
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"time"
    
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/version"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/storage"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/ptr"
    )
    
    var (
    	// Define these static versions to use for checking version of etcd, issue on kubernetes #123192
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/discovery.go

    		return nil
    	}
    	// Give a bit of time for queue to clear out, but if not fail fast. Client will connect to another
    	// instance in best case, or retry with backoff.
    	wait, cancel := context.WithTimeout(ctx, time.Second)
    	defer cancel()
    	return s.RequestRateLimit.Wait(wait)
    }
    
    func (s *DiscoveryServer) NextVersion() string {
    	return time.Now().Format(time.RFC3339) + "/" + strconv.FormatUint(s.pushVersion.Inc(), 10)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    			defer wg.Done()
    			mu.Lock()
    			mu.Unlock()
    		}()
    	}
    	wg.Wait()
    }
    
    func blockCond(t *testing.T) {
    	var mu sync.Mutex
    	c := sync.NewCond(&mu)
    	mu.Lock()
    	go func() {
    		awaitBlockedGoroutine(t, "sync.Cond.Wait", "blockCond", 1)
    		mu.Lock()
    		c.Signal()
    		mu.Unlock()
    	}()
    	c.Wait()
    	mu.Unlock()
    }
    
    // See http://golang.org/cl/299991.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. pilot/pkg/xds/delta_test.go

    	addTestClientEndpoints(s.MemRegistry)
    	s.MemRegistry.AddHTTPService(edsIncSvc, edsIncVip, 8080)
    	s.MemRegistry.SetEndpoints(edsIncSvc, "",
    		newEndpointWithAccount("127.0.0.1", "hello-sa", "v1"))
    	// Wait until the above debounce, to ensure we can precisely check XDS responses without spurious pushes
    	s.EnsureSynced(t)
    
    	ads := s.ConnectDeltaADS().WithID("sidecar~127.0.0.1~test.default~default.svc.cluster.local")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. pkg/kube/krt/informer.go

    		collectionName: o.name,
    		id:             nextUID(),
    		eventHandlers:  &handlers[I]{},
    		augmentation:   o.augmentation,
    		synced:         make(chan struct{}),
    	}
    
    	go func() {
    		// First, wait for the informer to populate
    		if !kube.WaitForCacheSync(o.name, o.stop, c.HasSynced) {
    			return
    		}
    		// Now, take all our handlers we have built up and register them...
    		handlers := h.eventHandlers.MarkInitialized()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/qos_container_manager_linux.go

    	// update qos cgroup tiers on startup and in periodic intervals
    	// to ensure desired state is in sync with actual state.
    	go wait.Until(func() {
    		err := m.UpdateCgroups()
    		if err != nil {
    			klog.InfoS("Failed to reserve QoS requests", "err", err)
    		}
    	}, periodicQOSCgroupUpdateInterval, wait.NeverStop)
    
    	return nil
    }
    
    // setHugePagesUnbounded ensures hugetlb is effectively unbounded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. cmd/bitrot-streaming.go

    		b.closeWithErr(err)
    	}
    	return n, err
    }
    
    func (b *streamingBitrotWriter) Close() error {
    	// Close the underlying writer.
    	// This will also flush the ring buffer if used.
    	err := b.iow.Close()
    
    	// Wait for all data to be written before returning else it causes race conditions.
    	// Race condition is because of io.PipeWriter implementation. i.e consider the following
    	// sequent of operations:
    	// 1) pipe.Write()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top