Name | |||||||
---|---|---|---|---|---|---|---|
L1 cache reference | 0.5 | ns | |||||
Branch mispredict | 5 | ns | |||||
L2 cachereference | 7 | ns | 14x L1 cache | ||||
Mutex lock/unlock | 25 | ns | |||||
Main memory reference | 100 | ns | 20x L2 cache, 200x L1 cache | ||||
Compress 1K bytes with Zippy | 3,000 | ns | 3 | us |
This file contains 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
<?php | |
class DummyAuthorizer implements Authorizer { | |
public function authorize($username, $password) { | |
return null; | |
} | |
} |
This file contains 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
<?php | |
class AcceptingAuthorizerStub implements Authorizer { | |
public function authorize($username, $password) { | |
return true; | |
} | |
} |
This file contains 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
<?php | |
class AcceptingAuthorizerSpy implements Authorizer { | |
public $authorizeWasCalled = false; | |
public authorize($username, $password) { | |
$this->authorizeWasCalled = true; | |
return true; | |
} | |
} |
This file contains 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
<?php | |
class AuthorizerFake implements Authorizer { | |
public $allowedUsers = [ | |
'test_user' => '123456', | |
'test_admin' => '123456' | |
]; | |
public authorize($username, $password) { | |
return array_key_exists($this->allowedUsers, $username) | |
&& $this->allowedUsers[$username] === $password; |
This file contains 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
<?php | |
class Bob_Validator_BooleanTest extends PHPUnit_Framework_TestCase | |
{ | |
public function setUp() { | |
$this->authorizerMock = $this->getMock(Authorizer::class); | |
$this->authorizerMock->expects($this->once()) | |
->method('authorize')->willReturn(true); | |
} | |
Good to use with unit/integration tests of Spark Java app.
Spark Java is pretty much dead
This file contains 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
name: Deployment Metrics Reporter | |
on: | |
workflow_call: | |
inputs: | |
service_name: | |
required: true | |
type: string | |
description: 'Name of the service being deployed' | |
environment: |