search for: vcap

Displaying 5 results from an estimated 5 matches for "vcap".

Did you mean: cap
2020 Sep 24
1
How to use `[` without evaluating the arguments.
...Subset, rowIDs=longTable at .intern$rowIDs, assays=assayData, metadata=metadata(longTable))) } setMethod('subset', 'LongTable', subset.long.table) Everything behaves as I expect when calling the subset function. For example subset(longTable, cellLine1 == 'VCAP) Successfully returns while also working with character, integer or boolean based indexing. The issue arises when I try to implement the '[' method. I have tried a number of different approaches, but none of them has been successful. My current approach is as follows: `[.long.table` &lt...
2018 Jun 13
0
two samba servers just stopped working :-(
...Dossett DevOps Ninja AWS-DevOps-Pro <https://aws.amazon.com/certification/certified-devops-engineer-professional /> , <https://aws.amazon.com/certification/certified-solutions-architect-associat e/> AWS-SA-A <http://mylearn.vmware.com/mgrReg/plan.cfm?plan=30483&ui=www_cert> VCAP-DCA, <http://mylearn.vmware.com/mgrReg/plan.cfm?plan=30484&ui=www_cert> VCAP-DCD, MCSA Win Server
2023 May 09
1
[Bridge] [RFC PATCH net-next 3/5] flow_offload: Reject matching on layer 2 miss
...if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_META)) { + struct flow_match_meta match; + + flow_rule_match_meta(rule, &match); + if (match.mask->l2_miss) { + NL_SET_ERR_MSG_MOD(extack, "Can't match on \"l2_miss\""); + return -EOPNOTSUPP; + } + } + /* For VCAP ES0 (egress rewriter) we can match on the ingress port */ if (!ingress) { ret = ocelot_flower_parse_indev(ocelot, port, f, filter); -- 2.40.1
2023 May 09
5
[Bridge] [RFC PATCH net-next 0/5] Add layer 2 miss indication and filtering
tl;dr ===== This patchset adds a single bit to the skb to indicate that a packet encountered a layer 2 miss in the bridge and extends flower to match on this metadata. This is required for non-DF (Designated Forwarder) filtering in EVPN multi-homing which prevents decapsulated BUM packets from being forwarded multiple times to the same multi-homed host. Background ========== In a typical EVPN
2023 May 18
5
[Bridge] [PATCH net-next 0/5] Add layer 2 miss indication and filtering
tl;dr ===== This patchset adds a single bit to the skb to indicate that a packet encountered a layer 2 miss in the bridge and extends flower to match on this metadata. This is required for non-DF (Designated Forwarder) filtering in EVPN multi-homing which prevents decapsulated BUM packets from being forwarded multiple times to the same multi-homed host. Background ========== In a typical EVPN