Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,454 for dialed (0.21 sec)

  1. internal/http/dial_linux.go

    		}
    		return dialer.DialContext(ctx, network, addr)
    	}
    }
    
    // NewCustomDialContext setups a custom dialer for any external communication and proxies.
    func NewCustomDialContext(dialTimeout time.Duration, opts TCPOptions) DialContext {
    	return func(ctx context.Context, network, addr string) (net.Conn, error) {
    		dialer := &net.Dialer{
    			Timeout: dialTimeout,
    			Control: setTCPParametersFn(opts),
    		}
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Wed Jun 07 16:53:05 GMT 2023
    - 4.4K bytes
    - Viewed (2)
  2. internal/http/dial_others.go

    	return func(ctx context.Context, network, addr string) (net.Conn, error) {
    		dialer := &net.Dialer{
    			Timeout: dialTimeout,
    		}
    		return dialer.DialContext(ctx, network, addr)
    	}
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Wed May 03 21:12:25 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  3. internal/http/dial_dnscache.go

    // function. LookupHost may implement an internal DNS caching implementation, lookupHost
    // input if nil then net.DefaultResolver.LookupHost is used.
    //
    // It dials one by one and returns first connected `net.Conn`.
    // If it fails to dial all IPs from cache it returns first error. If no baseDialFunc
    // is given, it sets default dial function.
    //
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Mon Jul 03 19:30:51 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

    # Simulate the case where the default installation failed, and the user has to reinstall the components.
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      labels:
        app: sidecar-injector
      name: w-istio-sidecar-injector-istio-system
    
    webhooks:
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod
          namespace: istio-system
          path: /inject
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  5. internal/grid/debug.go

    	if err != nil {
    		return nil, err
    	}
    	dialer := &net.Dialer{
    		Timeout: 5 * time.Second,
    	}
    	var res TestGrid
    	res.Hosts = hosts
    	ready := make(chan struct{})
    	ctx, cancel := context.WithCancel(context.Background())
    	res.cancel = cancel
    	for i, host := range hosts {
    		manager, err := NewManager(ctx, ManagerOptions{
    			Dialer: dialer.DialContext,
    			Local:  host,
    			Hosts:  hosts,
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Thu Feb 08 18:15:27 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_ru.properties

    errors.failed_to_download_kuromoji_file=Failed to download the Kuromoji file.
    errors.failed_to_upload_kuromoji_file=Failed to upload the Kuromoji file.
    errors.failed_to_download_elevate_file=Failed to download the Elevate file.
    errors.failed_to_upload_elevate_file=Failed to upload the Elevate file.
    errors.failed_to_download_badword_file=Failed to download the Badword file.
    Properties
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  7. cmd/erasure-healing_test.go

    	if err != nil {
    		t.Fatalf("Failed to heal object - %v", err)
    	}
    
    	part1Replaced, err := firstDisk.ReadAll(context.Background(), bucket, pathJoin(object, fi.DataDir, "part.1"))
    	if err != nil {
    		t.Fatalf("Failed to read a file - %v", err)
    	}
    
    	if !reflect.DeepEqual(part1Disk1Origin, part1Replaced) {
    		t.Fatalf("part.1 not healed correctly")
    	}
    
    	// Test 2, Corrupt part.1
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Wed Mar 27 15:10:40 GMT 2024
    - 47.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportImpl.java

                    r.received();
    
                    if ( r.getDialectRevision() == Smb2Constants.SMB2_DIALECT_ANY ) {
                        return negotiate2(r);
                    }
                    else if ( r.getDialectRevision() != Smb2Constants.SMB2_DIALECT_0202 ) {
                        throw new CIFSException("Server returned invalid dialect verison in multi protocol negotiation");
                    }
    
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  9. cni/pkg/pluginlistener/listener_test.go

    	conn, err := connect(f)
    	if err != nil {
    		t.Fatalf("failed to connect %v", err)
    	}
    	conn.Close()
    }
    
    func connect(socket string) (*grpc.ClientConn, error) {
    	var opts []grpc.DialOption
    
    	opts = append(opts, grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithContextDialer(func(ctx context.Context, addr string) (net.Conn, error) {
    		var d net.Dialer
    		return d.DialContext(ctx, "unix", socket)
    	}))
    
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Thu Feb 08 21:58:32 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/main/resources/fess_message.properties

    errors.failed_to_upload_protwords_file=Failed to upload the Protwords file.
    errors.failed_to_download_stopwords_file=Failed to download the Stopwords file.
    errors.failed_to_upload_stopwords_file=Failed to upload the Stopwords file.
    errors.failed_to_download_elevate_file=Failed to download the Elevate file.
    errors.failed_to_upload_elevate_file=Failed to upload the Elevate file.
    errors.failed_to_download_badword_file=Failed to download the Badword file.
    Properties
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
Back to top