search for: current_address

Displaying 3 results from an estimated 3 matches for "current_address".

2018 Dec 20
2
[OpenMP][AArch64][GlobalISel] AArch64 OMPT tests failing
.../misc/control_tool.c libomp :: ompt/synchronization/master.c libomp :: ompt/synchronization/taskwait.c The failure mode is similar for all of them: openmp/runtime/test/ompt/misc/control_tool.c:26:17: error: CHECK-NEXT: expected string not found in input // CHECK-NEXT: {{^}}[[MASTER_ID]]: current_address={{.*}}[[RETURN_ADDRESS]] ^ <stdin>:9:1: note: scanning from here 281474976710657: current_address=0x402cf4 or 0x402cf0 ^ <stdin>:9:1: note: with variable "MASTER_ID" equal to "281474976710657" 281474976710657: current_address=0x402cf4 or 0x402cf0 ^ &l...
2018 Dec 21
2
[OpenMP][AArch64][GlobalISel] AArch64 OMPT tests failing
...gt; libomp :: ompt/synchronization/taskwait.c >> >> The failure mode is similar for all of them: >> >> openmp/runtime/test/ompt/misc/control_tool.c:26:17: error: CHECK-NEXT: >> expected string not found in input >> // CHECK-NEXT: {{^}}[[MASTER_ID]]: >> current_address={{.*}}[[RETURN_ADDRESS]] >> ^ >> <stdin>:9:1: note: scanning from here >> 281474976710657: current_address=0x402cf4 or 0x402cf0 >> ^ >> <stdin>:9:1: note: with variable "MASTER_ID" equal to "281474976710657" >> 2814...
2006 Jan 11
1
ActiveRecord customer model with multiple previous addresses
...s on the best way to design my data model for keeping track of multiple addresses for one customer. Each customer should have one active address but I want to keep previous addresses as well. For instance, for each customer it would be nice to see the current address using something like Customer.current_address put also be able to get an array of previous addresses (ones that are not marked active) using something like Customer.previous_addresses. Any ideas on the best way to handle this? class Customer < ActiveRecord::Base end class Address < ActiveRecord::Base end Thanks in advance, -Jason G...