Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Remotes (0.21 sec)

  1. doc/go_spec.html

    and <code>complex</code> applied to numeric constants.
    The boolean truth values are represented by the predeclared constants
    <code>true</code> and <code>false</code>. The predeclared identifier
    <a href="#Iota">iota</a> denotes an integer constant.
    </p>
    
    <p>
    In general, complex constants are a form of
    <a href="#Constant_expressions">constant expression</a>
    and are discussed in that section.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                      are forwarded to remote workloads.  If set to "Tunnel" then both
                      request and response traffic is tunneled to the remote node.  If
                      set to "DSR", the request traffic is tunneled but the response traffic
                      is sent directly from the remote node.  In "DSR" mode, the remote
                      node appears to use the IP of the ingress node; this requires a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    // definitely welcome!
    const (
    	// Enable stdin for remote command execution
    	ExecStdinParam = "input"
    	// Enable stdout for remote command execution
    	ExecStdoutParam = "output"
    	// Enable stderr for remote command execution
    	ExecStderrParam = "error"
    	// Enable TTY for remote command execution
    	ExecTTYParam = "tty"
    	// Command to run for remote command execution
    	ExecCommandParam = "command"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    }
    
    const (
    	// Enable stdin for remote command execution
    	ExecStdinParam = "input"
    	// Enable stdout for remote command execution
    	ExecStdoutParam = "output"
    	// Enable stderr for remote command execution
    	ExecStderrParam = "error"
    	// Enable TTY for remote command execution
    	ExecTTYParam = "tty"
    	// Command to run for remote command execution
    	ExecCommandParam = "command"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    					destIP:   "1.2.3.4",
    					destPort: 80,
    					output:   "10.0.1.2:80, 10.0.1.3:80",
    					masq:     false,
    				},
    			},
    		},
    		{
    			name: "terminating endpoints on remote node",
    			line: getLine(),
    			endpointslice: &discovery.EndpointSlice{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      fmt.Sprintf("%s-1", "svc1"),
    					Namespace: "ns1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    //
    // For simplicity, the server code merges "reserved (local)" into
    // "half-closed (remote)". This is one less state transition to track.
    // The only downside is that we send PUSH_PROMISEs slightly less
    // liberally than allowable. More discussion here:
    // https://lists.w3.org/Archives/Public/ietf-http-wg/2016JulSep/0599.html
    //
    // "reserved (remote)" is omitted since the client code does not
    // support server push.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (CSIVolumeSource) SwaggerDoc() map[string]string {
    	return map_CSIVolumeSource
    }
    
    var map_Capabilities = map[string]string{
    	"":     "Adds and removes POSIX capabilities from running containers.",
    	"add":  "Added capabilities",
    	"drop": "Removed capabilities",
    }
    
    func (Capabilities) SwaggerDoc() map[string]string {
    	return map_Capabilities
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - `kube-controller-manager`: The `LegacyServiceAccountTokenCleanUp` feature gate
      is now available as alpha (off by default). When enabled, the `legacy-service-account-token-cleaner`
      controller loop removes service account token secrets that have not been used
      in the time specified by `--legacy-service-account-token-clean-up-period` (defaulting
      to one year), **and are** referenced from the `.secrets` list of a ServiceAccount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // secret object contains more than one secret, all secret references are passed.
      // +optional
      optional LocalObjectReference nodePublishSecretRef = 5;
    }
    
    // Adds and removes POSIX capabilities from running containers.
    message Capabilities {
      // Added capabilities
      // +optional
      // +listType=atomic
      repeated string add = 1;
    
      // Removed capabilities
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.25.md

    - Kubeadm: perform additional dockershim cleanup. Treat all container runtimes as remote by using the flag "--container-runtime=remote", given dockershim was removed in 1.24 and given kubeadm 1.25 supports a kubelet version of 1.24 and 1.25. The flag "--network-plugin" will no longer be used for new clusters. Stop cleaning up the following dockershim related...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top