Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for connectat (0.18 sec)

  1. prow/config/calico.yaml

                      whether Felix installs the connect-time load balancer. The connect-time
                      load balancer is required for the host to be able to reach Kubernetes
                      services and it improves the performance of pod-to-service connections.When
                      set to TCP, connect time load balancing is available only for services
                      with TCP ports. [Default: TCP]'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	URISchemeHTTPS URIScheme = "HTTPS"
    )
    
    // TCPSocketAction describes an action based on opening a socket
    type TCPSocketAction struct {
    	// Required: Port to connect to.
    	// +optional
    	Port intstr.IntOrString
    	// Optional: Host name to connect to, defaults to the pod IP.
    	// +optional
    	Host string
    }
    
    // ExecAction describes a "run in container" action.
    type ExecAction struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    		}
    		if err != nil {
    			t.vlogf("RoundTrip failure: %v", err)
    			return nil, err
    		}
    		return res, nil
    	}
    }
    
    // CloseIdleConnections closes any connections which were previously
    // connected from previous requests but are now sitting idle.
    // It does not interrupt any connections currently in use.
    func (t *http2Transport) CloseIdleConnections() {
    	if cp, ok := t.connPool().(http2clientConnPoolIdleCloser); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"secretRef": "secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack.",
    }
    
    func (CinderPersistentVolumeSource) SwaggerDoc() map[string]string {
    	return map_CinderPersistentVolumeSource
    }
    
    var map_CinderVolumeSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
    	// secretRef is optional: points to a secret object containing parameters used to connect
    	// to OpenStack.
    	// +optional
    	SecretRef *LocalObjectReference `json:"secretRef,omitempty" protobuf:"bytes,4,opt,name=secretRef"`
    }
    
    // Represents a cinder volume resource in Openstack.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier_test.go

    			sourceIP: testNodeIP,
    			destIP:   svcLBIP2,
    			destPort: svcPort,
    			output:   fmt.Sprintf("%s:%d", epIP, svcPort),
    			masq:     true,
    		},
    
    		// The LB rules assume that when you connect from a node to a LB IP, that
    		// something external to kube-proxy will cause the connection to be
    		// SNATted to the LB IP, so if the LoadBalancerSourceRanges include the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Kubeadm: used `ttlSecondsAfterFinished` to automatically clean up the `upgrade-health-check`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    - Ginkgo: when e2e tests are invoked through ginkgo-e2e.sh, the default now is to use color escape sequences only when connected to a terminal. `GINKGO_NO_COLOR=y/n` can be used to override that default. ([#111633](https://github.com/kubernetes/kubernetes/pull/111633), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  9. doc/go_spec.html

    <pre class="grammar">
    "var" IdentifierList "=" ExpressionList .
    </pre>
    
    <pre>
    i, j := 0, 10
    f := func() int { return 7 }
    ch := make(chan int)
    r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
    _, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  10. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	NodeSelector *structpb.Struct `protobuf:"bytes,12,opt,name=nodeSelector,proto3" json:"nodeSelector,omitempty"`
    	// Maximum duration that a sidecar can be connected to a pilot.
    	//
    	// This setting balances out load across pilot instances, but adds some resource overhead.
    	//
    	// Examples: 300s, 30m, 1h
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top