Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for connectat (0.59 sec)

  1. src/database/sql/sql.go

    // connection is returned to [DB]'s idle connection pool. The pool size
    // can be controlled with [DB.SetMaxIdleConns].
    type DB struct {
    	// Total time waited for new connections.
    	waitDuration atomic.Int64
    
    	connector driver.Connector
    	// numClosed is an atomic counter which represents a total number of
    	// closed connections. Stmt.openStmt checks it before cleaning closed
    	// connections in Stmt.css.
    	numClosed atomic.Uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    	// The /foo -> /foo/ redirect applies to CONNECT requests
    	// but the path canonicalization does not.
    	{"CONNECT", "google.com", "/dir", 301, "/dir/"},
    	{"CONNECT", "google.com", "/../search", 404, ""},
    	{"CONNECT", "google.com", "/dir/..", 200, "/dir/"},
    	{"CONNECT", "google.com", "/dir/..", 200, "/dir/"},
    	{"CONNECT", "google.com", "/dir/./file", 200, "/dir/"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        // would increase the amount of compute done by the fully connected op.
        if (mul_op.getLhs().getType() != mul_op.getType()) return failure();
    
        // Mul.
        DenseElementsAttr cst;
        Value constant_val = mul_op.getRhs();
        if (!matchPattern(constant_val, m_Constant(&cst))) return failure();
    
        // Fully Connected.
        auto fc_op = dyn_cast_or_null<TFL::FullyConnectedOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	var n *routingNode
    	host := r.URL.Host
    	escapedPath := r.URL.EscapedPath()
    	path := escapedPath
    	// CONNECT requests are not canonicalized.
    	if r.Method == "CONNECT" {
    		// If r.URL.Path is /tree and its handler is not registered,
    		// the /tree -> /tree/ redirect applies to CONNECT requests
    		// but the path canonicalization does not.
    		_, _, u := mux.matchOrRedirect(host, r.Method, path, r.URL)
    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. pkg/apis/admissionregistration/validation/validation_test.go

    					APIVersions: []string{"a"},
    					Resources:   []string{"a"},
    				},
    			}},
    		},
    		}, true),
    		expectedError: `Unsupported value: ""`,
    	}, {
    		name: "operation must be either create/update/delete/connect",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name: "webhook.k8s.io",
    			Rules: []admissionregistration.RuleWithOperations{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    		opts.OS = true
    		// Older mc - cannot deal with more types...
    	}
    	return
    }
    
    // TraceHandler - POST /minio/admin/v3/trace
    // ----------
    // The handler sends http trace to the connected HTTP client.
    func (a adminAPIHandlers) TraceHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	// Validate request signature.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top