Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,365 for ControlZ (0.15 sec)

  1. pkg/ctrlz/ctrlz.go

    }
    
    func (s *Server) listen() {
    	log.Infof("ControlZ available at %s", s.httpServer.Addr)
    	if listeningTestProbe != nil {
    		go listeningTestProbe()
    	}
    	err := s.httpServer.Serve(s.listener)
    	log.Infof("ControlZ terminated: %v", err)
    	s.shutdown.Done()
    }
    
    // Close terminates ControlZ.
    //
    // Close is not normally used by programs that expose ControlZ, it is primarily intended to be
    // used by tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pkg/ctrlz/options.go

    // the necessary set of flags to expose a CLI to let the user control all
    // introspection options.
    func (o *Options) AttachCobraFlags(cmd *cobra.Command) {
    	cmd.PersistentFlags().Uint16Var(&o.Port, "ctrlz_port", o.Port,
    		"The IP port to use for the ControlZ introspection facility")
    	cmd.PersistentFlags().StringVar(&o.Address, "ctrlz_address", o.Address,
    		"The IP Address to listen on for the ControlZ introspection facility. Use '*' to indicate all addresses.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 21:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. istioctl/pkg/dashboard/dashboard.go

      # Open ControlZ web UI for the istiod-56dd66799-jfdvs pod in a custom namespace
      istioctl dashboard controlz istiod-123-456 -n custom-ns
    
      # Open ControlZ web UI for any Istiod pod
      istioctl dashboard controlz deployment/istiod.istio-system
    
      # with short syntax
      istioctl dash controlz pilot-123-456.istio-system
      istioctl d controlz pilot-123-456.istio-system
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. pkg/ctrlz/topics/signals.go

    package topics
    
    import (
    	"net/http"
    	"os"
    	"syscall"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type signalsTopic struct{}
    
    // SignalsTopic returns a ControlZ topic that sends command signals to the process
    func SignalsTopic() fw.Topic {
    	return signalsTopic{}
    }
    
    func (signalsTopic) Title() string {
    	return "Signals"
    }
    
    func (signalsTopic) Prefix() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:12:24 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. istioctl/pkg/admin/istiodconfig.go

    			if err != nil {
    				return fmt.Errorf("could not build port forwarder for ControlZ %s: %v", podName, err)
    			}
    			defer portForwarder.Close()
    			err = portForwarder.Start()
    			if err != nil {
    				return fmt.Errorf("could not start port forwarder for ControlZ %s: %v", podName, err)
    			}
    
    			ctrlzClient := &ControlzClient{
    				baseURL: &url.URL{
    					Scheme: "http",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    			log.Errorf("Failed to configure log %v", err)
    		}
    		return nil
    	},
    	RunE: func(c *cobra.Command, args []string) (err error) {
    		ctx := c.Context()
    
    		// Start controlz server
    		_, _ = ctrlz.Run(ctrlzOptions, nil)
    
    		var cfg *config.Config
    		if cfg, err = constructConfig(); err != nil {
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pkg/collateral/control.go

    	"istio.io/istio/pkg/env"
    )
    
    // Control determines the behavior of the EmitCollateral function
    type Control struct {
    	// OutputDir specifies the directory to output the collateral files
    	OutputDir string
    
    	// EmitManPages controls whether to produce man pages.
    	EmitManPages bool
    
    	// EmitYAML controls whether to produce YAML files.
    	EmitYAML bool
    
    	// EmitBashCompletion controls whether to produce bash completion files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. src/os/signal/signal_cgo_test.go

    	cmd.ExtraFiles = []*os.File{procTTY, controlW}
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		Setsid:  true,
    		Setctty: true,
    		Ctty:    ptyFD,
    	}
    
    	if err := cmd.Start(); err != nil {
    		t.Fatal(err)
    	}
    
    	if err := procTTY.Close(); err != nil {
    		t.Errorf("closing procTTY: %v", err)
    	}
    
    	if err := controlW.Close(); err != nil {
    		t.Errorf("closing controlW: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/block.go

    	v.Uses++
    }
    
    // ResetControls sets the number of controls for the block to 0.
    func (b *Block) ResetControls() {
    	if b.Controls[0] != nil {
    		b.Controls[0].Uses--
    	}
    	if b.Controls[1] != nil {
    		b.Controls[1].Uses--
    	}
    	b.Controls = [2]*Value{} // reset both controls to nil
    }
    
    // AddControl appends a control value to the existing list of control values.
    func (b *Block) AddControl(v *Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

    $(document).ready(function () {
    
        // Attach controls for column groups in tables
        var controls = $("div#controls");
        var groups = [];
        var slices = [];
        $("tr.control-groups").closest("table").find("tr").each(function() {
            var row = $(this);
            if (row.hasClass('control-groups')) {
                var currentCol = 0;
                slices = [];
                row.find("th").each(function(){
                    var e = $(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top