Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for connectat (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	return storage.fakeWatch
    }
    
    // Implement Connecter
    type ConnecterRESTStorage struct {
    	connectHandler http.Handler
    	handlerFunc    func() http.Handler
    
    	emptyConnectOptions    runtime.Object
    	receivedConnectOptions runtime.Object
    	receivedID             string
    	receivedResponder      rest.Responder
    	takesPath              string
    }
    
    // Implement Connecter
    var _ = rest.Connecter(&ConnecterRESTStorage{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer db.Close()
    
    	c, ok := db.connector.(*fakeConnector)
    	if !ok {
    		t.Fatal("not using *fakeConnector")
    	}
    
    	if err := db.Close(); err != nil {
    		t.Fatal(err)
    	}
    
    	if !c.closed {
    		t.Fatal("connector is not closed")
    	}
    }
    
    type ctxOnlyDriver struct {
    	fakeDriver
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. istioctl/pkg/authz/testdata/configdump.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  4. tests/integration/pilot/common/routing.go

    		for _, tt := range svcCases {
    			tt, client := tt, client
    			aInCluster := match.Cluster(client.Config().Cluster).GetMatches(t.Apps.A)
    			if len(aInCluster) == 0 {
    				// The cluster doesn't contain A, but connects to a cluster containing A
    				aInCluster = match.Cluster(client.Config().Cluster.Config()).GetMatches(t.Apps.A)
    			}
    			address := aInCluster[0].Config().ClusterLocalFQDN() + "?"
    			if tt.protocol != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. src/cmd/trace/testdata/go122.test

    String id=35
    	data="main.main"
    String id=36
    	data="/usr/local/google/home/mknyszek/work/go-1/src/cmd/trace/v2/testdata/testprog/main.go"
    String id=37
    	data="syscall.connect"
    String id=38
    	data="syscall.Connect"
    String id=39
    	data="net.(*netFD).connect"
    String id=40
    	data="/usr/local/google/home/mknyszek/work/go-1/src/net/fd_unix.go"
    String id=41
    	data="net.(*netFD).dial"
    String id=42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

     B(o)&&D(o)&&o.match(/^-?\d/)?r+wi(o):si(!0===o?n.parentNode:xt(o,n)).bottom}var xr={mixins:[un],args:"connect",props:{connect:String,toggle:String,active:Number,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",active:0,swiping:!0,cls:"uk-active",clsContainer:"uk-switcher",attrItem:"uk-switcher-item",queued:!0},computed:{connects:{get:function(t,e){return yt(t.connect,e)},watch:function(t){var e=this;t.forEach(function(t){return e.updateAria(t.children)}),this.swiping&&...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        AffineOpCoefficient<0, 1>,
        TFL_SparseOp,
        DeclareOpInterfaceMethods<TFL_ArithmeticCount>,
        QuantizableResult,
        DynamicRangeQuantizedOpInterface]> {
      let summary = "Fully connected op";
    
      let arguments = (ins
        TFL_TensorOf<[F32, QI8, QUI8, QI16, QUI16]>:$input,
        TFL_TensorOf<[F32, QI4, QI8, QUI8, QI16]>:$filter,
        TFL_TensorOfOrNone<[F32, QI32, QUI32]>:$bias,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Prunes unreachable ops in a tf_executor.graph";
    
      let description = [{
        This pass removes ops from a `tf_executor.graph` that are not transitively, via
        data or control dependencies, connected to the associated `tf_executor.fetch`
        op. The order of ops will be preserved. Functions named `main` with no
        `tf.entry_function` attribute will not be pruned, as such graphs/functions may
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    		if err != nil {
    			t.Errorf("Accept: %v", err)
    			return
    		}
    		defer c.Close()
    		// Read the CONNECT request
    		br := bufio.NewReader(c)
    		cr, err := ReadRequest(br)
    		if err != nil {
    			t.Errorf("proxy server failed to read CONNECT request")
    			return
    		}
    		if cr.Method != "CONNECT" {
    			t.Errorf("unexpected method %q", cr.Method)
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/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: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top