Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,362 for ControlZ (0.3 sec)

  1. cmd/kubeadm/app/cmd/join.go

    		can potentially impersonate the Kubernetes Control Plane.
    
    		The TLS bootstrap mechanism is also driven via a shared token. This is
    		used to temporarily authenticate with the Kubernetes Control Plane to submit a
    		certificate signing request (CSR) for a locally created key pair. By
    		default, kubeadm will set up the Kubernetes Control Plane to automatically
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/testdata/workloadsummary.txt

    kube-system        coredns-5dd5756b68-mgjn9                             10.244.0.2  ambient-control-plane None                                TCP
    kube-system        coredns-5dd5756b68-nzlpw                             10.244.0.3  ambient-control-plane None                                TCP
    local-path-storage local-path-provisioner-6f8956fb48-vvnpn              10.244.0.4  ambient-control-plane None                                TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 21:30:30 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. istioctl/pkg/internaldebug/internal-debug.go

      # (Select a specific control plane in an in-cluster canary Istio configuration.)
      istioctl x internal-debug syncz --xds-label istio.io/rev=default
    `,
    		RunE: func(c *cobra.Command, args []string) error {
    			kubeClient, err := ctx.CLIClientWithRevision(opts.Revision)
    			if err != nil {
    				return err
    			}
    			if len(args) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. src/syscall/sockcmsg_unix.go

    	return unsafe.Pointer(uintptr(unsafe.Pointer(h)) + uintptr(cmsgAlignOf(SizeofCmsghdr)) + offset)
    }
    
    // SocketControlMessage represents a socket control message.
    type SocketControlMessage struct {
    	Header Cmsghdr
    	Data   []byte
    }
    
    // ParseSocketControlMessage parses b as an array of socket control
    // messages.
    func ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error) {
    	var msgs []SocketControlMessage
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/make.bat

    L16::: GO_GCFLAGS: Additional go tool compile arguments to use when
    L17::: building the packages and commands.
    L18:::
    L19::: GO_LDFLAGS: Additional go tool link arguments to use when
    L20::: building the commands.
    L21:::
    L22::: CGO_ENABLED: Controls cgo usage during the build. Set it to 1
    L23::: to include all cgo related files, .c and .go file with "cgo"
    L24::: build directive, in the build. Set it to 0 to ignore them.
    L25:::
    L26::: CC: Command line to run to compile C code for GOHOSTARCH.
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. istioctl/pkg/proxystatus/proxystatus.go

      # (Certificates must be obtained before this step.  The --cert-dir flag lets istioctl bypass the Kubernetes API server.)
      istioctl ps --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs
    
      # Retrieve proxy status information via XDS from specific control plane in multi-control plane in-cluster configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. manifests/charts/install-OpenShift.md

    ```
    
    3) `istio-control/istio-discovery` chart installs a revision of istiod.
    
    ```console
     helm install -n istio-system istiod manifests/charts/istio-control/istio-discovery --set profile=openshift
    ```
    
    4) `gateways` charts install a load balancer with `ingress` and `egress`.
    
    Ingress secrets and access should be separated from the control plane.
    
    ```console
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:01:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/join_test.go

    				// validate that control plane attributes are set in join data
    				if data.cfg.ControlPlane == nil ||
    					data.cfg.ControlPlane.LocalAPIEndpoint.AdvertiseAddress != "1.2.3.4" ||
    					data.cfg.ControlPlane.LocalAPIEndpoint.BindPort != 1234 {
    					t.Error("Invalid ControlPlane")
    				}
    			},
    		},
    		{
    			name: "control plane setting are cleaned up if --control-plane flag is not set",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_CR5                  = 47  // Control register 5
    	PT_CR6                  = 48  // Control register 6
    	PT_CR7                  = 49  // Control register 7
    	PT_CR8                  = 50  // Control register 8
    	PT_CR9                  = 51  // Control register 9
    	PT_CR10                 = 52  // Control register 10
    	PT_CR11                 = 53  // Control register 11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

      SetControlInputs(op, preds_in_reverse_program_order,
                       num_control_inputs_added);
    }
    
    // This function updates all control dependencies in `func`, represented as
    // control inputs for island and fetch ops of the graph body in `func`.
    // We rely on side effect analysis and propagate the queried dependencies to
    // the island and fetch ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top