Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,196 for ControlZ (0.44 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(tf-functional-control-flow-to-regions{allow-passthrough-args})' -split-input-file -verify-diagnostics | FileCheck %s
    
    // Simple If
    // CHECK: func private @testIf1Then{{.+}}
    // CHECK: func private @testIf1Else{{.+}}
    func.func private @testIf1Then(tensor<*xf32>) -> tensor<*xf32>
    func.func private @testIf1Else(tensor<*xf32>) -> tensor<*xf32>
    
    // CHECK-LABEL: func @testIf1Result(%arg0: tensor<i1>, %arg1: tensor<*xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Ascii.java

       * controls in data communication networks.
       *
       * @since 8.0
       */
      public static final byte DLE = 16;
    
      /**
       * Device Control 1. Characters for the control of ancillary devices associated with data
       * processing or telecommunication systems, more especially switching devices "on" or "off." (If a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/check.go

    			}
    		case BlockRetJmp:
    			if len(b.Succs) != 0 {
    				f.Fatalf("retjmp block %s len(Succs)==%d, want 0", b, len(b.Succs))
    			}
    			if b.NumControls() != 1 {
    				f.Fatalf("retjmp block %s has nil control", b)
    			}
    			if !b.Controls[0].Type.IsMemory() {
    				f.Fatalf("retjmp block %s has non-memory control value %s", b, b.Controls[0].LongString())
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-cfg.mlir

    // RUN: tf-opt %s -tf-functional-control-flow-to-cfg -split-input-file | FileCheck %s
    
    func.func private @testIf1Then(tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
    func.func private @testIf1Else(tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
    
    // CHECK-LABEL: func @testIf1Result(%arg0: tensor<i1>, %arg1: tensor<*xf32>, %arg2: tensor<*xf32>)
    func.func @testIf1Result(tensor<i1>, tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top