Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for connectat (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // doesn't have static shape, we skip the shape check below.
      if (!input_type.hasStaticShape()) return success();
      // The input should be at least 2D tensor since it will go through fully
      // connected layer.
      if (!input_type.hasRank() || input_type.getRank() < 2)
        return op.emitOpError(
            "the first input operand should have more than 2 dimensions.");
    
      const auto activation_state =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                    // 2. Longer names are more likely to be internal aliases.
                    //
                    // Example set of object names created by Keras for the weight
                    // matrix of a fully connected layer on a trivial FC mnist
                    // model:
                    // - `model.layer-1.kernel` (this is the "best" name)
                    // - `model.keras_api.layers.1.kernel`
                    // - `model.variables.0`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    o/istio\" target=\"_blank\">open platform</a> that provides a uniform way to <a href=\"https://istio.io/docs/concepts/security/\" target=\"_blank\">secure</a>,\n    <a href=\"https://istio.io/docs/concepts/traffic-management/\" target=\"_blank\">connect</a>, and \n    <a href=\"https://istio.io/docs/concepts/observability/\" target=\"_blank\">monitor</a> microservices.\n    <br>\n    Need help? <a href=\"https://istio.io/get-involved/\" target=\"_blank\">Join the Istio community</a>.\n  </div>\n...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top