Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for connectat (0.26 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
        void connect0() throws SmbException {
            try {
                connect();
            } catch( UnknownHostException uhe ) {
                throw new SmbException( "Failed to connect to server", uhe );
            } catch( SmbException se ) {
                throw se;
            } catch( IOException ioe ) {
                throw new SmbException( "Failed to connect to server", ioe );
            }
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. 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)
  3. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          )
        assertContent("A", response)
        val connect1 = server.takeRequest()
        assertThat(connect1.requestLine).isEqualTo("CONNECT android.com:443 HTTP/1.1")
        assertThat(connect1.headers["Proxy-Authorization"]).isNull()
        val connect2 = server.takeRequest()
        assertThat(connect2.requestLine).isEqualTo("CONNECT android.com:443 HTTP/1.1")
        assertThat(connect2.headers["Proxy-Authorization"])
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // control/data edges between them will only be reflected in host graph.
      // From XLA's perspective, two originally dependent clusters are no longer
      // connected, which makes them look like they can be scheduled for execution
      // in arbitrary order even though in fact they must be executed in order
      // according to their host-side graph dependency. This can cause deadlock.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: Minimum consecutive failures for the probe to be considered failed after having succeeded. format: int32 type: integer httpGet: description: '`httpGet` is performed to a given endpoint and the status/able to connect determines health.' properties: host: description: Host name to connect to, defaults to the pod IP. type: string httpHeaders: description: Headers the proxy will pass on to make the request. items: properties: name: type: string value: type: string type: object type: array path: description:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top