Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 212 for ControlZ (0.17 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. 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)
  4. src/make.rc

    #
    # GO_GCFLAGS: Additional go tool compile arguments to use when
    # building the packages and commands.
    #
    # GO_LDFLAGS: Additional go tool link arguments to use when
    # building the commands.
    #
    # CGO_ENABLED: Controls cgo usage during the build. Set it to 1
    # to include all cgo related files, .c and .go file with "cgo"
    # build directive, in the build. Set it to 0 to ignore them.
    
    rfork e
    if(! test -f run.rc){
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/make.bash

    # building the commands.
    #
    # CGO_ENABLED: Controls cgo usage during the build. Set it to 1
    # to include all cgo related files, .c and .go file with "cgo"
    # build directive, in the build. Set it to 0 to ignore them.
    #
    # GO_EXTLINK_ENABLED: Set to 1 to invoke the host linker when building
    # packages that use cgo.  Set to 0 to do all linking internally.  This
    # controls the default behavior of the linker's -linkmode option.  The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. internal/http/listener.go

    		RecvBufSize: t.RecvBufSize,
    	}
    }
    
    // newHTTPListener - creates new httpListener object which is interface compatible to net.Listener.
    // httpListener is capable to
    // * listen to multiple addresses
    // * controls incoming connections only doing HTTP protocol
    func newHTTPListener(ctx context.Context, serverAddrs []string, opts TCPOptions) (listener *httpListener, listenErrs []error) {
    	listeners := make([]net.Listener, 0, len(serverAddrs))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    func NewControlPlaneJoinPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-join",
    		Short:   "Join a machine as a control plane instance",
    		Example: controlPlaneJoinExample,
    		Phases: []workflow.Phase{
    			{
    				Name:           "all",
    				Short:          "Join a machine as a control plane instance",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/upgrade/node/controlplane.go

    		data, ok := c.(Data)
    		if !ok {
    			return errors.New("control-plane phase invoked with an invalid data struct")
    		}
    
    		// if this is not a control-plane node, this phase should not be executed
    		if !data.IsControlPlaneNode() {
    			fmt.Println("[upgrade] Skipping phase. Not a control plane node.")
    			return nil
    		}
    
    		// otherwise, retrieve all the info required for control plane upgrade
    		cfg := data.InitCfg()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/leaderelection.go

    	ServiceExportController = "istio-serviceexport-controller-election"
    	// This holds the legacy name to not conflict with older control plane deployments which are just
    	// doing the ingress syncing.
    	IngressController = "istio-leader"
    	// GatewayStatusController controls the status of gateway.networking.k8s.io objects. For the v1alpha1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	# Prepares the machine for serving a control plane
    	kubeadm join phase control-plane-prepare all
    `)
    
    // NewControlPlanePreparePhase creates a kubeadm workflow phase that implements the preparation of the node to serve a control plane
    func NewControlPlanePreparePhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-prepare",
    		Short:   "Prepare the machine for serving a control plane",
    		Example: controlPlanePrepareExample,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top