This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.log("Hi from console-log.js"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.squarespace.hamster.rabbitmq.v6; | |
| import com.squarespace.hamster.runtime.client.Context; | |
| import com.squarespace.hamster.runtime.client.Job; | |
| import com.squarespace.hamster.runtime.client.serialization.Serde; | |
| import com.squarespace.v6.model.trashcan.queue.TrashcanDeletionMessage; | |
| public class TestRabbitConsumerJob implements Job<TrashcanDeletionMessage, TrashcanDeletionMessage> { | |
| private V6MessageSerde<TrashcanDeletionMessage, TrashcanDeletionMessage> serde; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CategoryID,CategoryName,IABCategory | |
| 1,Arts & Entertainment,IAB1 | |
| 2,Books & Literature,IAB1-1 | |
| 3,Celebrity Fan/Gossip,IAB1-2 | |
| 4,Fine Art,IAB1-3 | |
| 5,Humor,IAB1-4 | |
| 6,Movies,IAB1-5 | |
| 7,Music,IAB1-6 | |
| 8,Television,IAB1-7 | |
| 9,Automotive,IAB2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| String json = "{\"name\":\"abc\", \"active\":false}"; | |
| StartFunction start = new StartFunction(); | |
| ConstantFunction constFun1 = new ConstantFunction(JsonNodeFactory.instance.textNode("const1")); | |
| ConstantFunction constFun2 = new ConstantFunction(JsonNodeFactory.instance.textNode("const1")); | |
| ReadPropertyFunction read = new ReadPropertyFunction("name"); | |
| ReadPropertyFunction readActive = new ReadPropertyFunction("active"); | |
| EqualsFunction eql = new EqualsFunction("true"); | |
| ArrayComposeFunction arrayCompose = new ArrayComposeFunction(); | |
| PrintFunction print = new PrintFunction(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| origin/Adapter-dfp | |
| origin/Add_Pending | |
| origin/Ads-controller-core | |
| origin/CON-338_1 | |
| origin/CW-1017 | |
| origin/CW-1034 | |
| origin/CW-1036 | |
| origin/CW-1159 | |
| origin/CW-1170 | |
| origin/CW-1451 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.collective.buzz.buzz_it; | |
| import static com.collective.ittests.helpers.IntegrationTestHelper.dateTimeAsString; | |
| import com.collective.pint.adapter.buzz.api.BuzzPartnerServiceLookup; | |
| import com.collective.pint.core.dto.PlatformBasicAuthInfo; | |
| import com.collective.pint.core.dto.PlatformInfo; | |
| import com.collective.pint.core.models.Advertiser; | |
| import com.collective.pint.core.services.AdvertiserPartnerService; | |
| import org.junit.Test; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 987889384,981859166,981143928,911117141,824321468,727364962,665075115,641641246,566563944,493274942,454376900,437588725,437579638,408264345,406376063,972013240,960637533,900517816,741684888,972358336,978810802,969154564,920869470,900411275,896514116,892277940,698082806,627396565,414667075,496033448,955957721,385511356,963689934,903751102,662083128,954011418,404721929,836071680,967976403,933623806,881342787,979874157,975475272,515303474,976511945,964746895,967422975,967055808,950274807,316793974,969435065,970892126,375099832,852801667,872579324,962018978,909480609,584878141,606413051,409644287,637030094,594494009,672828590,937620952,714109929,542203931,958979148,434847893,469397482,469396327,469738478,512317806,525811534,545642993,566359326,600019252,600023563,505509351,505244949,505978863,505554182,506060763,467460140,488539168,488237027,333188676,345874448,487296004,404244684,904391631,552637004,530157928,600072714,408263139,367893195,815248536,408263295,814555930,408265227,505507641,924636125,673376074,3936 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Result": [ | |
| { | |
| "CategoryId": 54, | |
| "ParentCategoryId": null, | |
| "Name": "Arts & Entertainment", | |
| "Path": "Arts & Entertainment", | |
| "Children": [ | |
| { | |
| "CategoryId": 55, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pathPrefix("advertisers") { | |
| pathEnd { | |
| get { | |
| onSuccess(advertisersService.list) { advs ⇒ | |
| complete(advs) | |
| } | |
| } ~ | |
| post { | |
| entity(as[JObject]) { jObject ⇒ | |
| val advertiser = jObject.extract[Advertiser] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.test | |
| import scala.slick.driver.PostgresDriver | |
| object UserComponentRegistry extends UserRepositoryComponent { | |
| val userRepository = new UserRepository(PostgresDriver) | |
| } |
NewerOlder