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
[ERROR] Failed to execute goal io.github.ascopes:protobuf-maven-plugin:2.11.0:generate-test (protobuf-generate-test) on project ContentSearchTesting: Execution protobuf-generate-test of goal io.github.ascopes:protobuf-maven-plugin:2.11.0:generate-test failed: Can't overwrite cause with org.eclipse.aether.transfer.ArtifactNotFoundException: org.ow2.asm:asm-util:jar:6.2.1 was not found in https://nexus.hubteam.com/nexus-maven/repository/hubspot-development during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of HubSpot-Nexus has elapsed or updates are forced: Failed to resolve artifacts for dependencies -> [Help 1] | |
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.github.ascopes:protobuf-maven-plugin:2.11.0:generate-test (protobuf-generate-test) on project ContentSearchTesting: Execution protobuf-generate-test of goal io.github.ascopes:protobuf-maven-plugin:2.11.0:generate-test failed: Can't overwri |
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
# | |
# Quartz seems to work best with the driver mm.mysql-2.0.7-bin.jar | |
# | |
# PLEASE consider using mysql with innodb tables to avoid locking issues | |
# | |
# In your Quartz properties file, you'll need to set | |
# org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate | |
# | |
DROP TABLE IF EXISTS QRTZ_FIRED_TRIGGERS; |
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
0 |
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
[email protected] /Users/jaredstehler/dev/src/intellifyApp | |
├── [email protected] | |
├─┬ [email protected] | |
│ ├─┬ [email protected] | |
│ │ └── [email protected] | |
│ ├── [email protected] | |
│ ├─┬ [email protected] | |
│ │ └─┬ [email protected] | |
│ │ ├── [email protected] | |
│ │ └── [email protected] |
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
for i in `find . -mindepth 1 -maxdepth 1 -type d -exec test -e "{}/.git/index" ';' -print`; do echo $i; cd $i; git pull; cd ..; done; |
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
public class ExistingServiceGateFilter implements ContainerRequestFilter, ResourceFilter { | |
private final GateService gateService; | |
@Inject | |
public ExistingServiceGateFilter(GateService gateService) { | |
this.gateService = gateService; | |
} | |
public ContainerRequest filter(ContainerRequest request) { | |
if(gateService.isGated("use_new_service", request)) { |
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
location ^~ /hs_existing_service_proxy { | |
internal; | |
resolver 8.8.8.8; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header Host $http_host; | |
proxy_buffering off; | |
proxy_max_temp_file_size 0; | |
set $download_url $upstream_http_x_downstream_url; | |
proxy_pass $download_url; | |
} |
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
#!/bin/sh | |
lsof -n -i4TCP:$1 | grep LISTEN |
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
import static org.fest.assertions.api.Assertions.assertThat; | |
import java.util.Date; | |
import org.joda.time.DateTime; | |
import org.joda.time.Interval; | |
import org.junit.After; | |
import org.junit.Before; | |
import org.junit.Test; | |
import org.quartz.Trigger; |
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
{ | |
"bitwise": false, | |
"camelcase": false, | |
"curly": false, | |
"eqeqeq": true, | |
"forin": true, | |
"immed": true, | |
"indent": false, | |
"latedef": true, | |
"newcap": false, |
NewerOlder