Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for Ticket (0.24 sec)

  1. okhttp/src/test/java/okhttp3/CallTest.kt

        callback.await(server.url("/a")).assertFailure("Canceled", "Socket closed", "Socket is closed")
      }
    
      @Test
      fun cancelAll() {
        val call = client.newCall(Request(server.url("/")))
        call.enqueue(callback)
        client.dispatcher.cancelAll()
        callback.await(server.url("/")).assertFailure("Canceled", "Socket closed", "Socket is closed")
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    func ValidateUnixAddress(addr string) error {
    	if len(addr) == 0 {
    		return errors.New("unix address must not be empty")
    	}
    
    	// Allow unix abstract domain sockets whose names start with @
    	if strings.HasPrefix(addr, "@") {
    		return nil
    	}
    
    	// Note that we use path, not path/filepath even though a domain socket path is a file path.  We don't want the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    			valid: false,
    		},
    
    		{
    			name: "unix socket", in: &networking.ServiceEntry{
    				Hosts: []string{"uds.cluster.local"},
    				Ports: []*networking.ServicePort{
    					{Number: 6553, Protocol: "grpc", Name: "grpc-service1"},
    				},
    				Resolution: networking.ServiceEntry_STATIC,
    				Endpoints: []*networking.WorkloadEntry{
    					{Address: "unix:///path/to/socket"},
    				},
    			},
    			valid: true,
    		},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. src/net/http/server.go

    //   - "example.com/" matches any request to the host "example.com".
    //   - "example.com/{$}" matches requests with host "example.com" and path "/".
    //   - "/b/{bucket}/o/{objectname...}" matches paths whose first segment is "b"
    //     and whose third segment is "o". The name "bucket" denotes the second
    //     segment and "objectname" denotes the remainder of the path.
    //
    // In general, a pattern looks like
    //
    //	[METHOD ][HOST]/[PATH]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    			g.Expect(len(clusters)).ShouldNot(Equal(0))
    
    			for _, cluster := range clusters {
    				socket := cluster.GetLoadAssignment().GetEndpoints()[0].LbEndpoints[0].GetEndpoint().GetAddress().GetSocketAddress()
    				g.Expect(socket.GetAddress()).To(Equal(c.expectedAddr))
    				g.Expect(socket.GetPortValue()).To(Equal(c.expectedPort))
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

    function prepare-etcd-manifest {
      local host_name=${ETCD_HOSTNAME:-$(hostname -s)}
    
      local resolve_host_script_py='
    import socket
    import time
    import sys
    
    timeout_sec=300
    
    def resolve(host):
      for attempt in range(timeout_sec):
        try:
          print(socket.gethostbyname(host))
          break
        except Exception as e:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. go.sum

    github.com/mdlayher/netlink v1.7.2/go.mod h1:xraEF7uJbxLhc5fpHL4cPe221LI2bdttWlU+ZGLfQSw=
    github.com/mdlayher/socket v0.1.1/go.mod h1:mYV5YIZAfHh4dzDVzI8x8tWLWCliuX8Mon5Awbj+qDs=
    github.com/mdlayher/socket v0.5.0 h1:ilICZmJcQz70vrWVes1MFera4jGiWNocSkykwwoy3XI=
    github.com/mdlayher/socket v0.5.0/go.mod h1:WkcBFfvyG8QENs5+hfQPl1X6Jpd2yeLIYgrGFmJiJxI=
    github.com/miekg/dns v1.1.59 h1:C9EXc/UToRwKLhK5wKU/I4QVsBUc8kE6MkHBkeypWZs=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    		targetConn, err := net.Dial("tcp", targetHost)
    		if err != nil {
    			t.Errorf("net.Dial failed")
    			return
    		}
    		go io.Copy(targetConn, s)
    		io.Copy(s, targetConn) // Wait for the client to close the socket.
    		targetConn.Close()
    	}
    
    	pu, err := url.Parse("socks5://" + l.Addr().String())
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	sentinelHeader := "X-Sentinel"
    	sentinelValue := "12345"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

          this.maxWeight = maxWeight;
          this.weigher = weigher;
          this.concurrencyLevel = concurrencyLevel;
          this.removalListener = removalListener;
          this.ticker = (ticker == Ticker.systemTicker() || ticker == NULL_TICKER) ? null : ticker;
          this.loader = loader;
        }
    
        CacheBuilder<K, V> recreateCacheBuilder() {
          CacheBuilder<K, V> builder =
              CacheBuilder.newBuilder()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    			destPort: 80,
    
    			// The short-circuit rule is supposed to make this behave the same
    			// way it would if the packet actually went out to the LB and then
    			// came back into the cluster. So it gets routed to all endpoints,
    			// not just local ones. In reality, if the packet actually left
    			// the cluster, it would have to get masqueraded, but since we can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top