Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,653 for net (0.03 sec)

  1. pkg/config/analysis/analyzers/testdata/externalcontrolplane-using-ip-addr.yaml

      - v1beta1
      - v1
      clientConfig:
        url: https://1.1.1.1:5100/inject/cluster/your-cluster-name/net/network1
      failurePolicy: Fail
      name: rev.namespace.sidecar-injector.istio.io
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        url: https://test.com/inject/cluster/your-cluster-name/net/network1
      failurePolicy: Fail
      name: rev.object.sidecar-injector.istio.io
    - admissionReviewVersions:
      - v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/externalcontrolplane-valid-urls.yaml

      - v1beta1
      - v1
      clientConfig:
        url: https://test.com/inject/cluster/your-cluster-name/net/network1
      failurePolicy: Fail
      name: rev.namespace.sidecar-injector.istio.io
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        url: https://test.com/inject/cluster/your-cluster-name/net/network1
      failurePolicy: Fail
      name: rev.object.sidecar-injector.istio.io
    - admissionReviewVersions:
      - v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/FakeProxySelector.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3
    
    import java.io.IOException
    import java.net.Proxy
    import java.net.ProxySelector
    import java.net.SocketAddress
    import java.net.URI
    
    class FakeProxySelector : ProxySelector() {
      val proxies: MutableList<Proxy> = mutableListOf()
    
      fun addProxy(proxy: Proxy): FakeProxySelector {
        proxies.add(proxy)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. internal/http/dial_others.go

    type DialContext func(ctx context.Context, network, address string) (net.Conn, error)
    
    // NewInternodeDialContext configures a custom dialer for internode communications
    func NewInternodeDialContext(dialTimeout time.Duration, _ TCPOptions) DialContext {
    	return func(ctx context.Context, network, addr string) (net.Conn, error) {
    		dialer := &net.Dialer{
    			Timeout: dialTimeout,
    		}
    		return dialer.DialContext(ctx, network, addr)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 24 04:08:47 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. pkg/config/host/names_test.go

    			host.Names{"foo.com", "bar.com"},
    		},
    		{
    			host.Names{"foo.com", "*.net"},
    			host.Names{"*.com", "bar.net"},
    			host.Names{"foo.com", "bar.net"},
    		},
    		{
    			host.Names{"foo.com", "*.net"},
    			host.Names{"*.bar.net"},
    			host.Names{"*.bar.net"},
    		},
    		{
    			host.Names{"foo.com", "bar.net"},
    			host.Names{"*"},
    			host.Names{"foo.com", "bar.net"},
    		},
    		{
    			host.Names{"foo.com"},
    			host.Names{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/internal/godebugs/table.go

    	{Name: "gotypesalias", Package: "go/types", Changed: 23, Old: "0"},
    	{Name: "http2client", Package: "net/http"},
    	{Name: "http2debug", Package: "net/http", Opaque: true},
    	{Name: "http2server", Package: "net/http"},
    	{Name: "httplaxcontentlength", Package: "net/http", Changed: 22, Old: "1"},
    	{Name: "httpmuxgo121", Package: "net/http", Changed: 22, Old: "1"},
    	{Name: "installgoroot", Package: "go/build"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. .github/workflows/iam-integrations.yaml

              _MINIO_LDAP_TEST_SERVER: ${{ matrix.ldap }}
              _MINIO_ETCD_TEST_SERVER: ${{ matrix.etcd }}
              _MINIO_OPENID_TEST_SERVER: ${{ matrix.openid }}
            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
              make test-iam
          - name: Test with multiple OpenID providers
            if: matrix.openid == 'http://127.0.0.1:5556/dex'
            env:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/net/sock_posix.go

    		return nil, err
    	}
    	return fd, nil
    }
    
    func (fd *netFD) ctrlNetwork() string {
    	switch fd.net {
    	case "unix", "unixgram", "unixpacket":
    		return fd.net
    	}
    	switch fd.net[len(fd.net)-1] {
    	case '4', '6':
    		return fd.net
    	}
    	if fd.family == syscall.AF_INET {
    		return fd.net + "4"
    	}
    	return fd.net + "6"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/import_test.go

    var importTests = []struct {
    	path string
    	m    module.Version
    	err  string
    }{
    	{
    		path: "golang.org/x/net/context",
    		m: module.Version{
    			Path: "golang.org/x/net",
    		},
    	},
    	{
    		path: "golang.org/x/net",
    		err:  `module golang.org/x/net@.* found \(v[01]\.\d+\.\d+\), but does not contain package golang.org/x/net`,
    	},
    	{
    		path: "golang.org/x/text",
    		m: module.Version{
    			Path: "golang.org/x/text",
    		},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 20 15:29:06 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. src/net/writev_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package net
    
    import (
    	"runtime"
    	"syscall"
    )
    
    func (c *conn) writeBuffers(v *Buffers) (int64, error) {
    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	n, err := c.fd.writeBuffers(v)
    	if err != nil {
    		return n, &OpError{Op: "writev", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    	}
    	return n, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:48:35 UTC 2022
    - 666 bytes
    - Viewed (0)
Back to top