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
commit ef164679af86749aa5edc660f9fb13235bd6c234 | |
Author: Victor Morales <[email protected]> | |
Date: Thu May 30 14:43:55 2019 -0700 | |
Remove local registry | |
diff --git a/vagrant/installer.sh b/vagrant/installer.sh | |
index 58a0a5c..252c8b2 100755 | |
--- a/vagrant/installer.sh | |
+++ b/vagrant/installer.sh |
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
--- | |
# SPDX-license-identifier: Apache-2.0 | |
############################################################################## | |
# Copyright (c) 2019 Intel Corporation | |
# All rights reserved. This program and the accompanying materials | |
# are made available under the terms of the Apache License, Version 2.0 | |
# which accompanies this distribution, and is available at | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
############################################################################## | |
qat_driver_pkgs: |
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/bash | |
# SPDX-license-identifier: Apache-2.0 | |
############################################################################## | |
# Copyright (c) 2018 | |
# All rights reserved. This program and the accompanying materials | |
# are made available under the terms of the Apache License, Version 2.0 | |
# which accompanies this distribution, and is available at | |
# http://www.apache.org/licenses/LICENSE-2.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
# OPNFV | |
export XCI_BUILD_CLEAN_VM_OS=false | |
function ssh_xci { | |
ssh -o StrictHostKeyChecking=no -i ~/releng-xci/xci/scripts/vm/id_rsa_for_dib -l devuser ${1:-ubuntu}_xci_vm | |
} | |
function tail_xci { | |
ssh -o StrictHostKeyChecking=no -i ~/releng-xci/xci/scripts/vm/id_rsa_for_dib -l devuser ${1:-ubuntu}_xci_vm tail -f /home/devuser/releng-xci/xci/${2:-xci-deploy.log} | |
} | |
function pull_xci { |
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 java.io.File; | |
import java.io.FileNotFoundException; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.io.LineNumberReader; | |
public class LineCounter extends Thread { | |
private static final String FOLDER_PATH = "C:\\temp"; |
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 java.io.BufferedReader; | |
import java.io.FileNotFoundException; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class ParticipantSelector { |
NewerOlder