Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 121 for dialIP (0.2 sec)

  1. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp

                                            <div class="modal fade" id="confirmToDelete" tabindex="-1"
                                                 role="dialog">
                                                <div class="modal-dialog">
                                                    <div class="modal-content bg-danger">
                                                        <div class="modal-header">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 12K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    		grpc.WithTransportCredentials(insecure.NewCredentials()),
    		grpc.WithBlock(),
    		grpc.WithContextDialer(func(ctx context.Context, addr string) (net.Conn, error) {
    			return (&net.Dialer{}).DialContext(ctx, "unix", addr)
    		}))
    	if err != nil {
    		return err
    	}
    	defer conn.Close()
    	client := pluginapi.NewRegistrationClient(conn)
    	reqt := &pluginapi.RegisterRequest{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp

                                                    <div class="modal fade" id="confirmToDeleteAll"
                                                         tabindex="-1" role="dialog">
                                                        <div class="modal-dialog">
                                                            <div class="modal-content bg-danger">
                                                                <div class="modal-header">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/maintenance/admin_maintenance.jsp

                                    </button>
                                    <div class="modal fade" id="confirmToClearCrawlerIndex"
                                         tabindex="-1" role="dialog">
                                        <div class="modal-dialog">
                                            <div class="modal-content bg-danger">
                                                <div class="modal-header">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/net/udpsock.go

    	}
    	return
    }
    
    func newUDPConn(fd *netFD) *UDPConn { return &UDPConn{conn{fd}} }
    
    // DialUDP acts like Dial for UDP networks.
    //
    // The network must be a UDP network name; see func Dial for details.
    //
    // If laddr is nil, a local address is automatically chosen.
    // If the IP field of raddr is nil or an unspecified IP address, the
    // local system is assumed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    			grpc.WithStreamInterceptor(otelgrpc.StreamClientInterceptor(tracingOpts...)))
    	}
    	if egressDialer != nil {
    		dialer := func(ctx context.Context, addr string) (net.Conn, error) {
    			if strings.Contains(addr, "//") {
    				// etcd client prior to 3.5 passed URLs to dialer, normalize to address
    				u, err := url.Parse(addr)
    				if err != nil {
    					return nil, err
    				}
    				addr = u.Host
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    	tunnelingURL, err := url.Parse(tunnelingServer.URL)
    	require.NoError(t, err)
    	dialer, err := portforward.NewSPDYOverWebsocketDialer(tunnelingURL, &restconfig.Config{Host: tunnelingURL.Host})
    	require.NoError(t, err)
    	spdyClient, protocol, err := dialer.Dial(constants.PortForwardV1Name)
    	require.NoError(t, err)
    	assert.Equal(t, constants.PortForwardV1Name, protocol)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/net/rpc/server_test.go

    	client.Call("Arith.Add", args, reply)
    }
    
    func dialDirect() (*Client, error) {
    	return Dial("tcp", serverAddr)
    }
    
    func dialHTTP() (*Client, error) {
    	return DialHTTP("tcp", httpServerAddr)
    }
    
    func countMallocs(dial func() (*Client, error), t *testing.T) float64 {
    	once.Do(startServer)
    	client, err := dial()
    	if err != nil {
    		t.Fatal("error dialing", err)
    	}
    	defer client.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
  9. src/net/http/clientserver_test.go

    			dialed = true
    		default:
    		}
    
    		if !tt.ok && dialed {
    			t.Errorf("For key %q, value %q, transport dialed. Expected local failure. Response was: (%v, %v)\nServer replied with: %s", tt.key, tt.val, res, err, body)
    		} else if (err == nil) != tt.ok {
    			t.Errorf("For key %q, value %q; got err = %v; want ok=%v", tt.key, tt.val, err, tt.ok)
    		}
    	}
    }
    
    func TestInterruptWithPanic(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  10. src/net/sendfile_test.go

    				return
    			}
    
    			if _, err := io.Copy(conn, f); err != nil {
    				b.Errorf("failed to copy: %v", err)
    				return
    			}
    		}
    	}(ln, fileName)
    
    	conn, err := Dial("tcp", ln.Addr().String())
    	if err != nil {
    		b.Fatalf("failed to dial: %v", err)
    	}
    	defer conn.Close()
    
    	n, err := io.CopyN(io.Discard, conn, int64(dataSize))
    	if err != nil {
    		b.Fatalf("failed to copy: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top