Search is not available for this dataset
repo
stringlengths
2
152
file
stringlengths
15
239
code
stringlengths
0
58.4M
file_length
int64
0
58.4M
avg_line_length
float64
0
1.81M
max_line_length
int64
0
12.7M
extension_type
stringclasses
364 values
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_popen.py
#!/usr/bin/env python """ Test for popen.py and popenpoll.py """ import unittest import pexpect class testPopen( unittest.TestCase ): def pingTest( self, name ): "Verify that there are no dropped packets for each host" p = pexpect.spawn( 'python -m %s' % name ) opts = [ "<(h\d+)>: PING "...
1,322
27.76087
71
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_sshd.py
#!/usr/bin/env python """ Test for sshd.py """ import unittest import pexpect from mininet.clean import sh class testSSHD( unittest.TestCase ): opts = [ '\(yes/no\)\?', 'refused', 'Welcome|\$|#', pexpect.EOF, pexpect.TIMEOUT ] def connected( self, ip ): "Log into ssh server, check banner, then exit...
1,853
29.393443
86
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_multipoll.py
#!/usr/bin/env python """ Test for multipoll.py """ import unittest import pexpect class testMultiPoll( unittest.TestCase ): def testMultiPoll( self ): "Verify that we receive one ping per second per host" p = pexpect.spawn( 'python -m mininet.examples.multipoll' ) opts = [ "\*\*\* (h\d)...
1,105
27.358974
67
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_multiping.py
#!/usr/bin/env python """ Test for multiping.py """ import unittest import pexpect from collections import defaultdict class testMultiPing( unittest.TestCase ): def testMultiPing( self ): """Verify that each target is pinged at least once, and that pings to 'real' targets are successful and u...
1,595
31.571429
86
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_hwintf.py
#!/usr/bin/env python """ Test for hwintf.py """ import unittest import re import pexpect from mininet.log import setLogLevel from mininet.node import Node from mininet.link import Link class testHwintf( unittest.TestCase ): prompt = 'mininet>' def setUp( self ): self.h3 = Node( 't0', ip='10.0.0...
1,870
27.348485
89
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_baresshd.py
#!/usr/bin/env python """ Tests for baresshd.py """ import unittest import pexpect from mininet.clean import cleanup, sh class testBareSSHD( unittest.TestCase ): opts = [ 'Welcome to h1', pexpect.EOF, pexpect.TIMEOUT ] def connected( self ): "Log into ssh server, check banner, then exit" p ...
2,072
30.892308
97
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_multilink.py
#!/usr/bin/env python ''' Test for multiple links between nodes validates mininet interfaces against systems interfaces ''' import unittest import pexpect class testMultiLink( unittest.TestCase ): prompt = 'mininet>' def testMultiLink(self): p = pexpect.spawn( 'python -m mininet.examples.multilink'...
1,571
27.071429
71
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_linearbandwidth.py
#!/usr/bin/env python """ Test for linearbandwidth.py """ import unittest import pexpect import sys class testLinearBandwidth( unittest.TestCase ): @unittest.skipIf( '-quick' in sys.argv, 'long test' ) def testLinearBandwidth( self ): "Verify that bandwidth is monotonically decreasing as # of hops i...
1,659
32.2
82
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_controlnet.py
#!/usr/bin/env python """ Test for controlnet.py """ import unittest import pexpect class testControlNet( unittest.TestCase ): prompt = 'mininet>' def testPingall( self ): "Simple pingall test that verifies 0% packet drop in data network" p = pexpect.spawn( 'python -m mininet.examples.contr...
1,454
29.3125
74
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_nat.py
#!/usr/bin/env python """ Test for nat.py """ import unittest import pexpect from mininet.util import quietRun destIP = '8.8.8.8' # Google DNS class testNAT( unittest.TestCase ): prompt = 'mininet>' @unittest.skipIf( '0 received' in quietRun( 'ping -c 1 %s' % destIP ), 'Destination I...
854
24.909091
74
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_tree1024.py
#!/usr/bin/env python """ Test for tree1024.py """ import unittest import pexpect import sys class testTree1024( unittest.TestCase ): prompt = 'mininet>' @unittest.skipIf( '-quick' in sys.argv, 'long test' ) def testTree1024( self ): "Run the example and do a simple ping test from h1 to h1024" ...
908
27.40625
73
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_vlanhost.py
#!/usr/bin/env python """ Test for vlanhost.py """ import unittest import pexpect import sys from mininet.util import quietRun class testVLANHost( unittest.TestCase ): prompt = 'mininet>' @unittest.skipIf( '-quick' in sys.argv, 'long test' ) def testVLANTopo( self ): "Test connectivity (or lack...
1,539
29.196078
83
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_emptynet.py
#!/usr/bin/env python """ Test for emptynet.py """ import unittest import pexpect class testEmptyNet( unittest.TestCase ): prompt = 'mininet>' def testEmptyNet( self ): "Run simple CLI tests: pingall (verify 0% drop) and iperf (sanity)" p = pexpect.spawn( 'python -m mininet.examples.emptyne...
835
24.333333
75
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_linuxrouter.py
#!/usr/bin/env python """ Test for linuxrouter.py """ import unittest import pexpect from mininet.util import quietRun class testLinuxRouter( unittest.TestCase ): prompt = 'mininet>' def testPingall( self ): "Test connectivity between hosts" p = pexpect.spawn( 'python -m mininet.examples.li...
1,534
27.962264
69
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/runner.py
#!/usr/bin/env python """ Run all mininet.examples tests -v : verbose output -quick : skip tests that take more than ~30 seconds """ import unittest import os import sys from mininet.util import ensureRoot from mininet.clean import cleanup class MininetTestResult( unittest.TextTestResult ): def addFailure( sel...
1,263
29.095238
82
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_multitest.py
#!/usr/bin/env python """ Test for multitest.py """ import unittest import pexpect class testMultiTest( unittest.TestCase ): prompt = 'mininet>' def testMultiTest( self ): "Verify pingall (0% dropped) and hX-eth0 interface for each host (ifconfig)" p = pexpect.spawn( 'python -m mininet.exam...
806
23.454545
84
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_controllers.py
#!/usr/bin/env python """ Tests for controllers.py and controllers2.py """ import unittest import pexpect class testControllers( unittest.TestCase ): prompt = 'mininet>' def connectedTest( self, name, cmap ): "Verify that switches are connected to the controller specified by cmap" p = pexpe...
1,463
28.877551
80
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_cpu.py
#!/usr/bin/env python """ Test for cpu.py results format: sched cpu client MB/s cfs 45.00% 13254.669841 cfs 40.00% 11822.441399 cfs 30.00% 5112.963009 cfs 20.00% 3449.090009 cfs 10.00% 2271.741564 """ import unittest import pexpect import sys class testCPU( unittest.TestCase ): ...
1,426
25.425926
84
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_treeping64.py
#!/usr/bin/env python """ Test for treeping64.py """ import unittest import pexpect import sys class testTreePing64( unittest.TestCase ): prompt = 'mininet>' @unittest.skipIf( '-quick' in sys.argv, 'long test' ) def testTreePing64( self ): "Run the example and verify ping results" p = p...
844
24.606061
70
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_bind.py
#!/usr/bin/env python """ Tests for bind.py """ import unittest import pexpect class testBind( unittest.TestCase ): prompt = 'mininet>' def setUp( self ): self.net = pexpect.spawn( 'python -m mininet.examples.bind' ) self.net.expect( "Private Directories: \[([\w\s,'/]+)\]" ) self.di...
2,270
32.895522
75
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_limit.py
#!/usr/bin/env python """ Test for limit.py """ import unittest import pexpect import sys class testLimit( unittest.TestCase ): @unittest.skipIf( '-quick' in sys.argv, 'long test' ) def testLimit( self ): "Verify that CPU limits are within a 2% tolerance of limit for each scheduler" p = pexp...
1,137
26.756098
86
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_simpleperf.py
#!/usr/bin/env python """ Test for simpleperf.py """ import unittest import pexpect import sys from mininet.log import setLogLevel from mininet.examples.simpleperf import SingleSwitchTopo class testSimplePerf( unittest.TestCase ): @unittest.skipIf( '-quick' in sys.argv, 'long test' ) def testE2E( self ): ...
976
26.914286
77
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_numberedports.py
#!/usr/bin/env python """ Test for numberedports.py """ import unittest import pexpect from collections import defaultdict from mininet.node import OVSSwitch class testNumberedports( unittest.TestCase ): @unittest.skipIf( OVSSwitch.setup() or OVSSwitch.isOldOVS(), "old version of OVS" ) def testConsistency(...
1,744
31.924528
107
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_scratchnet.py
#!/usr/bin/env python """ Test for scratchnet.py """ import unittest import pexpect class testScratchNet( unittest.TestCase ): opts = [ "1 packets transmitted, 1 received, 0% packet loss", pexpect.EOF ] def pingTest( self, name ): "Verify that no ping packets were dropped" p = pexpect.spawn...
647
22.142857
79
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_intfoptions.py
#!/usr/bin/env python """ Test for intfOptions.py """ import unittest import pexpect import sys class testIntfOptions( unittest.TestCase ): def testIntfOptions( self ): "verify that intf.config is correctly limiting traffic" p = pexpect.spawn( 'python -m mininet.examples.intfoptions ' ) ...
1,549
33.444444
83
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_clusterSanity.py
#!/usr/bin/env python ''' A simple sanity check test for cluster edition ''' import unittest import pexpect class clusterSanityCheck( unittest.TestCase ): prompt = 'mininet>' def testClusterPingAll( self ): p = pexpect.spawn( 'python -m mininet.examples.clusterSanity' ) p.expect( self.promp...
624
21.321429
71
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_mobility.py
#!/usr/bin/env python """ Test for mobility.py """ import unittest from subprocess import check_output class testMobility( unittest.TestCase ): def testMobility( self ): "Run the example and verify its 4 ping results" cmd = 'python -m mininet.examples.mobility 2>&1' grep = ' | grep -c " ...
472
21.52381
56
py
cba-pipeline-public
cba-pipeline-public-master/containernet/examples/test/test_natnet.py
#!/usr/bin/env python """ Test for natnet.py """ import unittest import pexpect from mininet.util import quietRun class testNATNet( unittest.TestCase ): prompt = 'mininet>' def setUp( self ): self.net = pexpect.spawn( 'python -m mininet.examples.natnet' ) self.net.expect( self.prompt ) ...
1,827
30.517241
76
py
cba-pipeline-public
cba-pipeline-public-master/containernet/bin/clear_crash.sh
#!/bin/bash sudo docker rm -f $(sudo docker ps --filter 'label=com.containernet' -a -q) sudo ./mn -c
101
24.5
75
sh
cba-pipeline-public
cba-pipeline-public-master/containernet/util/versioncheck.py
#!/usr/bin/python from subprocess import check_output as co from sys import exit # Actually run bin/mn rather than importing via python path version = 'Mininet ' + co( 'PYTHONPATH=. bin/mn --version', shell=True ) version = version.strip() # Find all Mininet path references lines = co( "egrep -or 'Mininet [0-9\.\+]+...
666
25.68
72
py
cba-pipeline-public
cba-pipeline-public-master/containernet/util/install.sh
#!/usr/bin/env bash # Mininet install script for Ubuntu (and Debian Wheezy+) # Brandon Heller (brandonh@stanford.edu) # Fail on error set -e # Fail on unset var usage set -o nounset # Get directory containing mininet folder MININET_DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )/../.." && pwd -P )" # Set up build ...
25,739
30.049457
96
sh
cba-pipeline-public
cba-pipeline-public-master/containernet/util/clustersetup.sh
#!/usr/bin/env bash # Mininet ssh authentication script for cluster edition # This script will create a single key pair, which is then # propagated throughout the entire cluster. # There are two options for setup; temporary setup # persistent setup. If no options are specified, and the script # is only given ip addres...
5,422
28.63388
89
sh
cba-pipeline-public
cba-pipeline-public-master/containernet/util/build-ovs-packages.sh
#!/bin/bash # Attempt to build debian packages for OVS set -e # exit on error set -u # exit on undefined variable kvers=`uname -r` ksrc=/lib/modules/$kvers/build dist=`lsb_release -is | tr [A-Z] [a-z]` release=`lsb_release -rs` arch=`uname -m` buildsuffix=-2 if [ "$arch" = "i686" ]; then arch=i386; fi if [ "$arch"...
2,932
29.873684
83
sh
cba-pipeline-public
cba-pipeline-public-master/containernet/util/doxify.py
#!/usr/bin/python """ Convert simple documentation to epydoc/pydoctor-compatible markup """ from sys import stdin, stdout, argv import os from tempfile import mkstemp from subprocess import call import re spaces = re.compile( r'\s+' ) singleLineExp = re.compile( r'\s+"([^"]+)"' ) commentStartExp = re.compile( r'\s+...
2,004
21.277778
65
py
cba-pipeline-public
cba-pipeline-public-master/containernet/util/sch_htb-ofbuf/sch_htb.c
#define OFBUF (1) /* * net/sched/sch_htb.c Hierarchical token bucket, feed tree version * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your...
43,917
25.697872
93
c
cba-pipeline-public
cba-pipeline-public-master/containernet/util/docker/entrypoint.sh
#! /bin/bash -e service openvswitch-switch start if [ ! -S /var/run/docker.sock ]; then echo 'Error: the Docker socket file "/var/run/docker.sock" was not found. It should be mounted as a volume.' exit 1 fi # this cannot be done from the Dockerfile since we have the socket not mounted during build echo 'Pull...
529
24.238095
112
sh
cba-pipeline-public
cba-pipeline-public-master/containernet/util/vm/install-mininet-vm.sh
#!/bin/bash # This script is intended to install Mininet into # a brand-new Ubuntu virtual machine, # to create a fully usable "tutorial" VM. # # optional argument: Mininet branch to install set -e echo "$(whoami) ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers > /dev/null sudo sed -i -e 's/Default/#Default/' /etc/...
1,630
30.365385
78
sh
cba-pipeline-public
cba-pipeline-public-master/containernet/util/vm/build.py
#!/usr/bin/python """ build.py: build a Mininet VM Basic idea: prepare -> create base install image if it's missing - download iso if it's missing - install from iso onto image build -> create cow disk for new VM, based on base image -> boot it in qemu/kvm with text /serial conso...
36,314
34.188953
100
py
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ISSUE_TEMPLATE.md
========= Issue submission guidelines (you may delete the text below after reading it ) ========= Before creating a new issue around a potential bug please: 1. Check your browser's console for 404s (MPD file or media fragments) 2. Check for Access-Denied errors which indicates an issue with the server's HTTP access co...
960
67.642857
145
md
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/temp.sh
grunt cp dist/dash.all.min.js ~/tud/hiwi/ndn-demo/ndn_player/src/ cd /Users/mac/tud/hiwi/ndn-demo/ndn_player #gulp serve ./node_modules/gulp/bin/gulp.js serve
159
25.666667
59
sh
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/LICENSE.md
# dash.js BSD License Agreement The copyright in this software is being made available under the BSD License, included below. This software may be subject to other third party and contributor rights, including patent rights, and no such rights are granted under this license. **Copyright (c) 2015, Dash Industry Forum....
1,781
126.285714
759
md
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/AUTHORS.md
# Dash.js Authors List #####Please add entries to the bottom of the list in the following format * @GitHub UserName (Required) [Name and/or Organization] (Optional) #Authors * @nweber [Digital Primates] * @jefftapper [Jeff Tapper, Digital Primates] * @KozhinM [Mikail Kozhin, Microsoft Open Technologies] * @kirkshoop ...
1,507
31.782609
73
md
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/README.md
<img src="https://cloud.githubusercontent.com/assets/2762250/7824984/985c3e76-03bc-11e5-807b-1402bde4fe56.png" width="400"> Travis CI Status: [![Travis CI Status](http://img.shields.io/travis/Dash-Industry-Forum/dash.js/development.svg?style=flat-square)](https://travis-ci.org/Dash-Industry-Forum/dash.js) Join the d...
7,802
41.407609
391
md
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/.travis.yml
language: node_js node_js: - "0.11" - "0.10" before_install: npm install -g grunt-cli install: npm install
111
15
40
yml
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/DashJsMediaFile/index.html
<!doctype html> <html> <head> <meta charset="utf-8" /> <title>Dash.js Rocks</title> <style> video { width: 1280px; height: 480px; } </style> </head> <body> <div> <video id="videoPlayer" controls></video> ...
1,152
30.162162
103
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/test/helpers/DashUtil.html
<!-- The copyright in this software is being made available under the BSD License, included below. This software may be subject to other third party and contributor rights, including patent rights, and no such rights are granted under this license. // // Copyright (c) 2013, Microsoft Open Technologies, Inc. // // All r...
8,368
54.059211
758
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/test/helpers/style.css
/* The copyright in this software is being made available under the BSD License, included below. This software may be subject to other third party and contributor rights, including patent rights, and no such rights are granted under this license. // // Copyright (c) 2013, Microsoft Open Technologies, Inc. // // All rig...
4,023
24.794872
758
css
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/docs/migration/Migration-2.0.md
# Dash.js Migration Document 1.x --> 2.0 In this document we will cover the major changes to consider when migrating your player from Dash.js version 1.x to 2.0. Here are some high level points: * We have refactored the entire code base from ECMAScript 5 to ECMAScript 6. * We have changed the namespace. * We have cha...
8,701
49.888889
851
md
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/README.md
NDN-JS: A javascript client library for Named Data Networking -------------------------------------------------------------- NDN-JS is the first native version of the NDN protocol written in JavaScript. It implements the NDN-TLV wire format. The project by the UCLA NDN team - for more information on NDN, see http...
8,400
43.449735
138
md
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/tools/micro-forwarder/make-ndn-micro-forwarder.sh
#!/bin/sh cp ../../build/ndn.js extension cd extension; zip -r ../ndn-micro-forwarder.xpi . ; cd ..
100
24.25
57
sh
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/tools/micro-forwarder/extension/config.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns = "http://www.w3.org/1999/xhtml"> <head> <meta charset="UTF-8"/> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can...
1,677
33.244898
78
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/tools/micro-forwarder/extension/popup/choose_option.css
# html, body { # width: 100px; # height: 100px; # } .options { margin: 3% auto; padding: 4px; text-align: center; font-size: 1.0em; # background-color: #E5F2F2; cursor: pointer; }
193
13.923077
29
css
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/tools/micro-forwarder/extension/popup/choose_option.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="choose_option.css"/> </head> <body style = "overflow:hidden;"> <div class = "options"> <button id="showConfig"> Config </button> </div> <script src="choose_option.js"></script> </body> <...
327
15.4
53
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-throughput-http.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
2,265
34.968254
118
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-interest-matches-name.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
2,009
33.655172
103
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-get-async.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
2,377
32.971429
119
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-websocket.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
2,211
31.057971
78
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-image-parsing.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
5,482
41.176923
381
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-sha256.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
2,435
35.909091
121
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-sign-verify-data-hmac.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2016 Regents of the University of California. * @author: Jeff Thompson <jefft0@remap.ucla.edu> * * This program is free software: you can redistribute it and/or modify * ...
3,914
35.933962
100
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-throughput-ws-pipeline.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
12,462
41.975862
125
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-encode-decode-data.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
13,408
61.078704
102
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-throughput-ws.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
7,246
37.547872
130
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-encode-decode-interest.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
4,796
38.975
136
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-path.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General ...
1,349
33.615385
78
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-encode-decode-benchmark.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * @author: Jeff Thompson <jefft0@remap.ucla.edu> * * This program is free software: you can redistribute it and/or modif...
3,911
42.466667
127
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-echo-consumer.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2015-2016 Regents of the University of California. * @author: Jeff Thompson <jefft0@remap.ucla.edu> * * This program is free software: you can redistribute it and/or modif...
2,854
30.032609
108
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-encode-decode-fib-entry.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * @author: Jeff Thompson <jefft0@remap.ucla.edu> * * This program is free software: you can redistribute it and/or modif...
3,180
37.325301
93
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-publish-async-nfd.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2015-2016 Regents of the University of California. * @author: Jeff Thompson <jefft0@remap.ucla.edu> * * This program is free software: you can redistribute it and/or modif...
13,806
60.09292
103
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/test-name.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2014-2016 Regents of the University of California. * @author: Jeff Thompson <jefft0@remap.ucla.edu> * * This program is free software: you can redistribute it and/or modif...
5,300
38.857143
132
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/repo-ng/basic-insertion.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2015-2016 Regents of the University of California. * @author: Jeff Thompson <jefft0@remap.ucla.edu> * * This program is free software: you can redistribute it and/or modif...
18,989
54.526316
99
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/browser/repo-ng/watched-insertion.html
<?xml version = "1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <!-- * Copyright (C) 2015-2016 Regents of the University of California. * @author: Jeff Thompson <jefft0@remap.ucla.edu> * * This program is free software: you can redistribute it and/or modif...
21,287
50.669903
99
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/examples/ndnping/ndn-ping.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <!-- * Copyright (C) 2013-2016 Regents of the University of California. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as publishe...
1,689
32.137255
148
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/ndn-protocol/make-ndn-protocol.sh
#!/bin/sh cd modules; ./make-ndn-js.jsm.sh; cd .. ; zip -r ../ndn-protocol.xpi .
81
26.333333
70
sh
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/ndn-protocol/modules/make-ndn-js.jsm.sh
#!/bin/sh cat ndn-js-header.txt ../../build/ndn.min.js ../../js/transport/xpcom-transport.js ../../js/encoding/mime-types.js > ndn-js.jsm
138
45.333333
127
sh
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/ndn-js/wsproxy/README.md
wsproxy ======= WebSocket proxy server between NDN javascript stack and ndnd. NOTE - this is legacy; there is a cpp-based wsproxy that has no nodejs dependency. https://github.com/named-data/wsproxy-cpp for new installs, use that instead ! meanwhile, instructions below for node-js version. This proxy runs on t...
1,949
45.428571
354
md
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/index.html
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>Samples players for dash.js</title> </head> <body> <img src="https://cloud.githubusercontent.com/assets/2762250/7824984/985c3e76-03bc-11e5-807b-1402bde4fe56.png" width="300"> <p/> dash.js is a framework which enables the creation of many diff...
6,081
137.227273
754
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/captioning/ttml-ebutt-sample.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Multiple Language EBU Timed Text Sample</title> <meta name="description" content="" /> <link rel="stylesheet" href="../../contrib/akamai/controlbar/controlbar.css"> <script src="../../contrib/akamai/controlbar/ControlBar.js"></s...
3,323
37.206897
127
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/captioning/multi-track-captions.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Multiple Language Timed Text Sample</title> <meta name="description" content="" /> <link rel="stylesheet" href="../../contrib/akamai/controlbar/controlbar.css"> <script src="../../contrib/akamai/controlbar/ControlBar.js"></scrip...
3,076
39.486842
272
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/captioning/caption_vtt.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>WebVTT Dash Demo</title> <meta name="description" content="" /> <link rel="icon" type="image/x-icon" href="http://dashif.org/wp-content/uploads/2014/12/dashif.ico" /> <script src="../../dist/dash.all.debug.js"></script> <!--...
1,226
31.289474
124
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/modules/README.md
# dash.js Module Samples These samples give examples of how the dash.js library can be consumed in different module loaders. Each directory contains a standalone package with a build setup to run with `npm run build`. The result file will be placed in `out/out.js`. ## WebPack with Babel Loader If you are using [WebPa...
620
55.454545
129
md
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/ad-insertion/inline.html
<!DOCTYPE html> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <head> <title>Fraunhofer Fokus - Ad Insertion Sample</title> <script src="../../...
3,144
45.940299
139
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/ad-insertion/scte.html
<!DOCTYPE html> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <head> <title>Fraunhofer Fokus - Ad Insertion Sample</title> <script src="../../...
3,315
51.634921
119
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/ad-insertion/inband.html
<!DOCTYPE html> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <head> <title>Fraunhofer Fokus - Ad Insertion Sample</title> <script src="../../...
3,235
44.577465
139
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/ad-insertion/xlink.html
<!DOCTYPE html> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <html lang="en"> <head> <meta charset="utf-8"/> <title>Dash JavaScript Player</...
7,521
46.910828
119
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/ad-insertion/index.html
<!DOCTYPE html> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <head> <title>Fraunhofer Fokus - Ad Insertion Sample</title> <link href="css/boo...
3,554
46.4
119
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/ad-insertion/style.css
html { margin: 0; padding: 0; background-color : #294f6b; } #pageContent { width : 1280px; height : 720px; position : absolute; top : 0px; left : 0px; background-image: url("images/121122_famium_inforaph_02_fwe.png"); background-image: url("images/background.png"); backgr...
1,940
14.780488
70
css
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/ad-insertion/css/bootstrap.min.css
/*! * Bootstrap v3.3.6 (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adju...
121,260
20,209.166667
121,049
css
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/ad-insertion/css/main.css
body { background-color : #294f6b; color:white; font-size: 14px; } a { color: #59b4d4; } a:hover { color: lightgrey; } .panel { color:black; } .xlink-item { cursor: pointer; color: #337ab7; } .tdcursor { cursor:pointer; color: #337ab7; }
281
9.846154
31
css
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/getting-started-basic-embed/auto-load-single-video.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Auto-player instantiation example, single videoElement</title> <script src="../../dist/dash.all.debug.js"></script> <!--dash.all.min.js should be used in production over dash.all.debug.js Debug files are not compressed or ob...
824
29.555556
119
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/getting-started-basic-embed/listening-to-events.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Events example</title> <script src="../../dist/dash.all.debug.js"></script> <!--dash.all.min.js should be used in production over dash.all.debug.js Debug files are not compressed or obfuscated making the file size much large...
5,350
35.401361
158
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/getting-started-basic-embed/auto-load-single-video-src.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Auto-player instantiation example, single videoElement, using src attribute</title> <script src="../../dist/dash.all.debug.js"></script> <!--dash.all.min.js should be used in production over dash.all.debug.js Debug files are...
775
30.04
130
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/getting-started-basic-embed/auto-load-single-video-with-reference.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Auto-player instantiation example, showing how to obtain a reference to the MediaPlayer</title> <script src="../../dist/dash.all.debug.js"></script> <!--dash.all.min.js should be used in production over dash.all.debug.js Deb...
1,334
28.666667
119
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/getting-started-basic-embed/manual-load-single-video.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Manual-player instantiation example</title> <script src="../../dist/dash.all.debug.js"></script> <!--dash.all.min.js should be used in production over dash.all.debug.js Debug files are not compressed or obfuscated making the...
1,028
26.078947
118
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/getting-started-basic-embed/auto-load-multi-video.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Auto-player instantiation example</title> <script src="../../dist/dash.all.debug.js"></script> <!--dash.all.min.js should be used in production over dash.all.debug.js Debug files are not compressed or obfuscated making the f...
1,832
39.733333
176
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/getting-started-basic-embed/auto-load-single-video-with-context-and-source.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Auto-player instantiation example, single videoElement, supplying context and source</title> <script src="../../dist/dash.all.debug.js"></script> <!--dash.all.min.js should be used in production over dash.all.debug.js Debug ...
2,585
37.597015
123
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/live-streaming/live-delay-comparison-custom-manifest.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Live delay example</title> <script src="../../dist/dash.all.debug.js"></script> <!--dash.all.min.js should be used in production over dash.all.debug.js Debug files are not compressed or obfuscated making the file size much l...
5,422
40.396947
178
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/live-streaming/live-delay-comparison-using-setLiveDelay.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Live delay comparison using setLiveDelay</title> <script src="../../dist/dash.all.debug.js"></script> <!--dash.all.min.js should be used in production over dash.all.debug.js Debug files are not compressed or obfu...
5,917
43.164179
236
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/live-streaming/live-delay-comparison-using-fragmentCount.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Live delay comparison using setLiveDelayFragmentCount</title> <script src="../../dist/dash.all.debug.js"></script> <!--dash.all.min.js should be used in production over dash.all.debug.js Debug files are not compr...
6,171
44.718519
180
html
cba-pipeline-public
cba-pipeline-public-master/containernet/ndn-containers/dash.js/samples/dash-if-reference-player/index.html
<!DOCTYPE html> <html ng-app="DashPlayer" lang="en"> <head> <meta charset="utf-8"/> <title>Dash JavaScript Player</title> <meta name="description" content="" /> <link rel="icon" type="image/x-icon" href="http://dashif.org/wp-content/uploads/2014/12/dashif.ico" /> <meta name="viewport" content="width...
34,328
59.651943
287
html