PageRenderTime 604ms queryTime 310ms sortTime 28ms getByIdsTime 57ms findMatchingLines 54ms

100+ results results for 'bitbucket repo:jeffreycwitt/rdfbuilder' (604 ms)

Not the results you expected?
routes.rb https://gitlab.com/simepy/gitlab-ce | Ruby | 538 lines
                    
83
                    
84    resource :bitbucket, only: [:create, :new], controller: :bitbucket do
                    
85      get :status
                    
                
bitbucket.py https://gitlab.com/ztane/python-bitbucket | Python | 327 lines
                    
8- BitbucketSpecialAction: an enum of special actions to be handled by children
                    
9- BitbucketBase: parent class for Bitbucket resources
                    
10- Bitbucket: root resource for the whole Bitbucket instance
                    
20
                    
21from pybitbucket.auth import Anonymous
                    
22from pybitbucket.entrypoints import entrypoints_json
                    
103@python_2_unicode_compatible
                    
104class BitbucketBase(object):
                    
105    id_attribute = 'id'
                    
127        for name, body in links.items():
                    
128            # Ignore quirky Bitbucket clone link
                    
129            if isinstance(body, dict):
                    
276
                    
277class Bitbucket(BitbucketBase):
                    
278    def __init__(self, client=Client()):
                    
                
bootstrap-social.css https://gitlab.com/Mirros/cdnjs | CSS | 73 lines
                    
25.btn-adn .badge{color:#d87a68;background-color:#fff}
                    
26.btn-bitbucket{color:#fff;background-color:#205081;border-color:rgba(0,0,0,0.2)}.btn-bitbucket:hover,.btn-bitbucket:focus,.btn-bitbucket:active,.btn-bitbucket.active,.open .dropdown-toggle.btn-bitbucket{color:#fff;background-color:#183c60;border-color:rgba(0,0,0,0.2)}
                    
27.btn-bitbucket:active,.btn-bitbucket.active,.open .dropdown-toggle.btn-bitbucket{background-image:none}
                    
27.btn-bitbucket:active,.btn-bitbucket.active,.open .dropdown-toggle.btn-bitbucket{background-image:none}
                    
28.btn-bitbucket.disabled,.btn-bitbucket[disabled],fieldset[disabled] .btn-bitbucket,.btn-bitbucket.disabled:hover,.btn-bitbucket[disabled]:hover,fieldset[disabled] .btn-bitbucket:hover,.btn-bitbucket.disabled:focus,.btn-bitbucket[disabled]:focus,fieldset[disabled] .btn-bitbucket:focus,.btn-bitbucket.disabled:active,.btn-bitbucket[disabled]:active,fieldset[disabled] .btn-bitbucket:active,.btn-bitbucket.disabled.active,.btn-bitbucket[disabled].active,fieldset[disabled] .btn-bitbucket.active{background-color:#205081;border-color:rgba(0,0,0,0.2)}
                    
29.btn-bitbucket .badge{color:#205081;background-color:#fff}
                    
                
2016-07-09-how-can-i-write-a-post-on-the-blog.md https://gitlab.com/4geit/blog | Markdown | 144 lines
                    
14
                    
15Here we go. Git is a distributed version control system means your project is actually stored in a repository of files and anytime you commit new modifications, the Git repository records a print of the update so that anybody that contribute to the project can actually go backward in the repository history and see all the updates that applied from the whole contributors and those from the very beginning of the project. Although the Git repository can be duplicated and make the materials data decentralized, we still require a Git hosting server to expose the repository online, so people can fetch it and contribute. Several services exist such as Github, Bitbucket, Gitlab, Gogs or just setting up an adhoc Git server. At Forge'it we made the choice to use Gitlab, first because compared with most of its competitors it's entirely Open Sourced. At anytime you can install your own instance of Gitlab on your own server and transfer the whole content. And second, because it offers very powerful features such as Merge Requests Approving flow. I am going to detail this later. Therefore there is a *group* on Gitlab called [**4ge.it**](https://gitlab.com/groups/4geit) that stores all the Git repository based projects including the current blog of Forge'it.
                    
16
                    
22
                    
23If you already have a Google, Twitter, Github or Bitbucket account, you can actually connect to Gitlab without having to create a new account.
                    
24
                    
                
shims.yml https://gitlab.com/mlassabe/LASSABE | YAML | 289 lines
                    
25  prefix: far
                    
26bitbucket-square:
                    
27  name: bitbucket
                    
                
instructions.tex https://bitbucket.org/aterrel/2012summerssc395.git | LaTeX | 157 lines
                    
19Open a terminal and execute {\tt git clone
                    
20  git@bitbucket.org:aterrel/2012summerssc395.git}.
                    
21
                    
                
create.rb https://gitlab.com/zillemarco/gitlab | Ruby | 105 lines
                    
10              s_('InProductMarketing|Create a project in GitLab in 5 minutes'),
                    
11              s_('InProductMarketing|Import your project and code from GitHub, Bitbucket and others'),
                    
12              s_('InProductMarketing|Understand repository mirroring')
                    
42              s_("InProductMarketing|To understand and get the most out of GitLab, start at the beginning and %{project_link}. In GitLab, repositories are part of a project, so after you've created your project you can go ahead and %{repo_link}.") % { project_link: project_link, repo_link: repo_link },
                    
43              s_("InProductMarketing|Making the switch? It's easier than you think to import your projects into GitLab. Move %{github_link}, or import something %{bitbucket_link}.") % { github_link: github_link, bitbucket_link: bitbucket_link },
                    
44              s_("InProductMarketing|Sometimes you're not ready to make a full transition to a new tool. If you're not ready to fully commit, %{mirroring_link} gives you a safe way to try out GitLab in parallel with your current tool.") % { mirroring_link: mirroring_link }
                    
82          def bitbucket_link
                    
83            link(s_('InProductMarketing|from Bitbucket'), help_page_url('user/project/import/bitbucket_server'))
                    
84          end
                    
                
bitbucket_controller_spec.rb https://gitlab.com/artofhuman/gitlab-ce | Ruby | 311 lines
                    
89    before do
                    
90      allow_any_instance_of(Bitbucket::Client).to receive(:repo).and_return(bitbucket_repo)
                    
91      allow_any_instance_of(Bitbucket::Client).to receive(:user).and_return(bitbucket_user)
                    
130          expect(Gitlab::BitbucketImport::ProjectCreator)
                    
131            .to receive(:new).with(bitbucket_repo, bitbucket_repo.name, user.namespace, user, access_params)
                    
132            .and_return(double(execute: project))
                    
166            expect(Gitlab::BitbucketImport::ProjectCreator)
                    
167              .to receive(:new).with(bitbucket_repo, bitbucket_repo.name, existing_namespace, user, access_params)
                    
168              .and_return(double(execute: project))
                    
194            expect(Gitlab::BitbucketImport::ProjectCreator)
                    
195              .to receive(:new).with(bitbucket_repo, bitbucket_repo.name, an_instance_of(Group), user, access_params)
                    
196              .and_return(double(execute: project))
                    
215            expect(Gitlab::BitbucketImport::ProjectCreator)
                    
216              .to receive(:new).with(bitbucket_repo, bitbucket_repo.name, user.namespace, user, access_params)
                    
217              .and_return(double(execute: project))
                    
                
ClassBroadcasterimplTest.java https://bitbucket.org/bradleysmithllc/etl-unit.git | Java | 321 lines
                    
1package org.bitbucket.bradleysmithllc.etlunit.test;
                    
2
                    
22
                    
23import org.bitbucket.bradleysmithllc.etlunit.*;
                    
24import org.bitbucket.bradleysmithllc.etlunit.listener.ClassBroadcaster;
                    
24import org.bitbucket.bradleysmithllc.etlunit.listener.ClassBroadcaster;
                    
25import org.bitbucket.bradleysmithllc.etlunit.listener.ClassBroadcasterImpl;
                    
26import org.bitbucket.bradleysmithllc.etlunit.listener.ClassListener;
                    
26import org.bitbucket.bradleysmithllc.etlunit.listener.ClassListener;
                    
27import org.bitbucket.bradleysmithllc.etlunit.context.VariableContext;
                    
28import org.bitbucket.bradleysmithllc.etlunit.parser.*;
                    
28import org.bitbucket.bradleysmithllc.etlunit.parser.*;
                    
29import org.bitbucket.bradleysmithllc.etlunit.util.IOUtils;
                    
30import org.bitbucket.bradleysmithllc.etlunit.util.EtlUnitStringUtils;
                    
                
ETLTestValueObjectBuilderTest.java https://bitbucket.org/bradleysmithllc/etl-unit.git | Java | 358 lines
                    
1package org.bitbucket.bradleysmithllc.etlunit.parser.test;
                    
2
                    
22
                    
23import org.bitbucket.bradleysmithllc.etlunit.parser.*;
                    
24import org.junit.Assert;
                    
                
org.projectmaxs.transport.xmpp.yml https://gitlab.com/erics/fdroiddata | YAML | 371 lines
                    
48    versionCode: 5
                    
49    disable: build tools failure as per [https://bitbucket.org/projectmaxs/maxs/commits/7750c9add95016294c5be9afd84a8de4834f7f20]
                    
50    commit: 0.0.1.4
                    
                
field_icon.php https://gitlab.com/furrutia1991/imosa_web | PHP | 460 lines
                    
29		'icon-bell',
                    
30		'icon-bitbucket',
                    
31		'icon-bitcoin',
                    
                
application_setting.rb https://gitlab.com/svansteenis/gitlab-ee | Ruby | 181 lines
                    
133      restricted_signup_domains: Settings.gitlab['restricted_signup_domains'],
                    
134      import_sources: ['github','bitbucket','gitlab','gitorious','google_code','fogbugz','git'],
                    
135      shared_runners_enabled: Settings.gitlab_ci['shared_runners_enabled'],
                    
                
org.projectmaxs.main.yml https://gitlab.com/relan/fdroiddata | YAML | 387 lines
                    
48    versionCode: 5
                    
49    disable: build tools failure as per <a href="https://bitbucket.org/projectmaxs/maxs/commits/7750c9add95016294c5be9afd84a8de4834f7f20">https://bitbucket.org/projectmaxs/maxs/commits/7750c9add95016294c5be9afd84a8de4834f7f20</a>
                    
50    commit: 0.0.1.4
                    
                
RepositoryManagerTestBase.java https://bitbucket.org/sdorra/scm-manager/ | Java | 592 lines
                    
27 *
                    
28 * http://bitbucket.org/sdorra/scm-manager
                    
29 *
                    
                
Hungarian.php https://github.com/cybernet/CyBerFuN-CoDeX.git | PHP | 121 lines
                    
44'avaurl1' => 'Max. 150 pixel (külömben át lesz méretezve)',
                    
45'avaurl2' => 'Akár ide is feltöltheted <a href=bitbucket.php>BitBucket</a>.',
                    
46'vava' => 'Avatár mutatása',
                    
                
index.html https://bitbucket.org/lalinsky/oxygene.sk.git | HTML | 145 lines
                    
36			<ul>
                    
37				<li><a href="https://bitbucket.org/lalinsky">Me @ Bitbucket</a></li>
                    
38				<li><a href="https://github.com/lalinsky">Me @ GitHub</a></li>
                    
                
message-queue.js https://bitbucket.org/EthanLevine/senior-design.git | JavaScript | 115 lines
                    
9// For documentation on using this library, see the project's wiki at:
                    
10//   https://bitbucket.org/EthanLevine/senior-design/wiki/message-queue.js
                    
11var messageQueue = (function () {
                    
                
main.cpp https://bitbucket.org/devonit/qconnman.git | C++ | 132 lines
                    
2 * Copyright (C) 2012 Matt Broadstone
                    
3 * Contact: http://bitbucket.org/devonit/qconnman
                    
4 *
                    
                
exampleYang.groovy https://bitbucket.org/novakmi/yangbuilder.git | Groovy | 116 lines
                    
3//This is free software licensed under MIT License, see LICENSE file
                    
4//(https://bitbucket.org/novakmi/yangbuilder/src/LICENSE)
                    
5
                    
9//adoc-begin - documentation purpose comment
                    
10@Grab(group = 'org.bitbucket.novakmi', module = 'nodebuilder', version = '1.1.1')
                    
11@Grab(group = 'org.bitbucket.novakmi', module = 'yangbuilder', version = '1.3.0')
                    
13// This script template represents example of usage without any plugin
                    
14def builder = new org.bitbucket.novakmi.yangbuilder.YangBuilder(4) // create new builder, indent 4 (default is 2)
                    
15builder.declareAlias('import_', 'import') //optional alias declaration                                             //<1>
                    
44                        indent: true)
                    
45                yngbuild('   see http://bitbucket.org/novakmi/yangbuilder */', indent: true)                    //<5>
                    
46                yngbuild('') // new line
                    
47
                    
48                namespace "http://bitbucket.org/novakmi/yangbuilder"
                    
49                prefix "example"
                    
                
index.html https://gitlab.com/sebadima/sebadima.bitbucket.org | HTML | 121 lines
                    
49                <li>
                    
50                <a href="http://sebadima.bitbucket.org/www.sebadima.com/main.html">#</a></li>  
                    
51                <li>
                    
                
JDBCClient.java https://bitbucket.org/bradleysmithllc/etl-unit.git | Java | 82 lines
                    
1package org.bitbucket.bradleysmithllc.etlunit.feature.database;
                    
2
                    
22
                    
23import org.bitbucket.bradleysmithllc.etlunit.TestExecutionError;
                    
24
                    
                
ResourceFeatureOperation.java https://bitbucket.org/bradleysmithllc/etl-unit.git | Java | 152 lines
                    
1package org.bitbucket.bradleysmithllc.etlunit.feature;
                    
2
                    
27import com.github.fge.jsonschema.report.ProcessingReport;
                    
28import org.bitbucket.bradleysmithllc.etlunit.ExecutionContext;
                    
29import org.bitbucket.bradleysmithllc.etlunit.TestAssertionFailure;
                    
29import org.bitbucket.bradleysmithllc.etlunit.TestAssertionFailure;
                    
30import org.bitbucket.bradleysmithllc.etlunit.TestExecutionError;
                    
31import org.bitbucket.bradleysmithllc.etlunit.TestWarning;
                    
31import org.bitbucket.bradleysmithllc.etlunit.TestWarning;
                    
32import org.bitbucket.bradleysmithllc.etlunit.context.VariableContext;
                    
33import org.bitbucket.bradleysmithllc.etlunit.parser.ETLTestMethod;
                    
33import org.bitbucket.bradleysmithllc.etlunit.parser.ETLTestMethod;
                    
34import org.bitbucket.bradleysmithllc.etlunit.parser.ETLTestOperation;
                    
35import org.bitbucket.bradleysmithllc.etlunit.parser.ETLTestValueObject;
                    
                
Option.java https://bitbucket.org/tpataky/pd4j.git | Java | 237 lines
                    
1package org.bitbucket.pd4j.util;
                    
2
                    
                
acro0.def https://bitbucket.org/preining/tex-live.git | Module-Definition | 169 lines
                    
7% Clemens Niederberger
                    
8% Web:    https://bitbucket.org/cgnieder/acro/
                    
9% E-Mail: contact@mychemistry.eu
                    
                
test_branchrestriction.py https://gitlab.com/ztane/python-bitbucket | Python | 172 lines
                    
1# -*- coding: utf-8 -*-
                    
2from test_bitbucketbase import BitbucketFixture
                    
3
                    
5from uritemplate import expand
                    
6from pybitbucket.bitbucket import Bitbucket
                    
7from pybitbucket.branchrestriction import (
                    
12
                    
13class BranchRestrictionFixture(BitbucketFixture):
                    
14    # GIVEN: An example repository owner and name
                    
46    def resources_url(cls):
                    
47        bitbucket = Bitbucket(cls.test_client)
                    
48        t = bitbucket.data['_links']['repositoryBranchRestrictions']['href']
                    
                
application_controller.rb https://gitlab.com/SaiAshirwadInformatia/gitlab-ce | Ruby | 338 lines
                    
30  helper_method :can?, :current_application_settings
                    
31  helper_method :import_sources_enabled?, :github_import_enabled?, :gitea_import_enabled?, :github_import_configured?, :gitlab_import_enabled?, :gitlab_import_configured?, :bitbucket_import_enabled?, :bitbucket_import_configured?, :google_code_import_enabled?, :fogbugz_import_enabled?, :git_import_enabled?, :gitlab_project_import_enabled?
                    
32
                    
293
                    
294  def bitbucket_import_enabled?
                    
295    current_application_settings.import_sources.include?('bitbucket')
                    
297
                    
298  def bitbucket_import_configured?
                    
299    Gitlab::OAuth::Provider.enabled?(:bitbucket)
                    
                
ez_setup.py https://gitlab.com/Rockyspade/astropy | Python | 382 lines
                    
114    # Remove previously-imported pkg_resources if present (see
                    
115    # https://bitbucket.org/pypa/setuptools/pull-request/7/ for details).
                    
116    if 'pkg_resources' in sys.modules:
                    
                
application_controller.rb https://gitlab.com/solidnerd/gitlab-ce | Ruby | 476 lines
                    
40    :gitlab_import_enabled?, :gitlab_import_configured?,
                    
41    :bitbucket_import_enabled?, :bitbucket_import_configured?,
                    
42    :bitbucket_server_import_enabled?,
                    
355
                    
356  def bitbucket_server_import_enabled?
                    
357    Gitlab::CurrentSettings.import_sources.include?('bitbucket_server')
                    
379
                    
380  def bitbucket_import_enabled?
                    
381    Gitlab::CurrentSettings.import_sources.include?('bitbucket')
                    
383
                    
384  def bitbucket_import_configured?
                    
385    Gitlab::Auth::OAuth::Provider.enabled?(:bitbucket)
                    
                
line-icons.css https://bitbucket.org/kudakiid/kudaki-landing.git | CSS | 947 lines
                    
128}
                    
129.lni-bitbucket:before {
                    
130  content: "\e920";
                    
                
application_setting.rb https://gitlab.com/abdiasshaw/gitlab-ee | Ruby | 181 lines
                    
133      restricted_signup_domains: Settings.gitlab['restricted_signup_domains'],
                    
134      import_sources: %w[github bitbucket gitlab gitorious google_code fogbugz git gitlab_project],
                    
135      shared_runners_enabled: Settings.gitlab_ci['shared_runners_enabled'],
                    
                
vline.el https://github.com/manniche/dot-files.git | Emacs Lisp | 389 lines
                    
10;; URL: http://www.emacswiki.org/cgi-bin/wiki/vline.el
                    
11;; URL: http://bitbucket.org/buzztaiki/elisp/src/tip/vline.el
                    
12
                    
                
index.html https://bitbucket.org/edmcman/edmcman.bitbucket.org.git | HTML | 330 lines
                    
21  
                    
22  <link rel="canonical" href="http://edmcman.bitbucket.org/blog/2012/09/07/undocumented-features-of-vsa">
                    
23  <link href="/favicon.png" rel="icon">
                    
52  <fieldset role="search">
                    
53    <input type="hidden" name="q" value="site:edmcman.bitbucket.org" />
                    
54    <input class="search" type="text" name="q" results="0" placeholder="Search"/>
                    
171  
                    
172  <a href="http://twitter.com/share" class="twitter-share-button" data-url="http://edmcman.bitbucket.org/blog/2012/09/07/undocumented-features-of-vsa/" data-via="edmcman" data-counturl="http://edmcman.bitbucket.org/blog/2012/09/07/undocumented-features-of-vsa/" >Tweet</a>
                    
173  
                    
280        // var disqus_developer = 1;
                    
281        var disqus_identifier = 'http://edmcman.bitbucket.org/blog/2012/09/07/undocumented-features-of-vsa/';
                    
282        var disqus_url = 'http://edmcman.bitbucket.org/blog/2012/09/07/undocumented-features-of-vsa/';
                    
                
Buttons.jsx https://gitlab.com/minh_pro4892/adminAnGiGioWeb | JSX | 201 lines
                    
113              <Button bsStyle="link" className="btn-social btn-bitbucket" block>
                    
114                <i className="fa fa-bitbucket"></i> Sign in with Bitbucket
                    
115              </Button>
                    
152              <div className="text-center">
                    
153                <Button bsStyle="link" className="btn-social-icon btn-bitbucket">
                    
154                  <i className="fa fa-bitbucket"></i>
                    
                
org.projectmaxs.module.smssend.yml https://gitlab.com/bugvillage-cloned-to-participate/fdroiddata | YAML | 498 lines
                    
4WebSite: http://projectmaxs.org/homepage
                    
5SourceCode: https://bitbucket.org/projectmaxs/maxs
                    
6Bitcoin: bc1qu482c0tngkcvx3q7mrm8zmuldrh2f2lrh26ym0
                    
57    versionCode: 5
                    
58    disable: build tools failure as per <a href="https://bitbucket.org/projectmaxs/maxs/commits/7750c9add95016294c5be9afd84a8de4834f7f20">https://bitbucket.org/projectmaxs/maxs/commits/7750c9add95016294c5be9afd84a8de4834f7f20</a>
                    
59    commit: 0.0.1.4
                    
                
application_controller.rb https://gitlab.com/ershadk/gitlab-ce | Ruby | 312 lines
                    
27  helper_method :can?, :current_application_settings
                    
28  helper_method :import_sources_enabled?, :github_import_enabled?, :github_import_configured?, :gitlab_import_enabled?, :gitlab_import_configured?, :bitbucket_import_enabled?, :bitbucket_import_configured?, :google_code_import_enabled?, :fogbugz_import_enabled?, :git_import_enabled?, :gitlab_project_import_enabled?
                    
29
                    
251
                    
252  def bitbucket_import_enabled?
                    
253    current_application_settings.import_sources.include?('bitbucket')
                    
256  def bitbucket_import_configured?
                    
257    Gitlab::OAuth::Provider.enabled?(:bitbucket) && Gitlab::BitbucketImport.public_key.present?
                    
258  end
                    
                
import_routing_spec.rb https://gitlab.com/realsatomic/gitlab | Ruby | 179 lines
                    
105#           status_import_bitbucket GET      /import/bitbucket/status(.:format)                                                             import/bitbucket#status
                    
106#         callback_import_bitbucket GET      /import/bitbucket/callback(.:format)                                                           import/bitbucket#callback
                    
107# realtime_changes_import_bitbucket GET      /import/bitbucket/realtime_changes(.:format)                                                   import/bitbucket#realtime_changes
                    
107# realtime_changes_import_bitbucket GET      /import/bitbucket/realtime_changes(.:format)                                                   import/bitbucket#realtime_changes
                    
108#                  import_bitbucket POST     /import/bitbucket(.:format)                                                                    import/bitbucket#create
                    
109RSpec.describe Import::BitbucketController, 'routing' do
                    
116
                    
117#           status_import_bitbucket_server GET      /import/bitbucket_server/status(.:format)                                               import/bitbucket_server#status
                    
118#         callback_import_bitbucket_server GET      /import/bitbucket_server/callback(.:format)                                             import/bitbucket_server#callback
                    
118#         callback_import_bitbucket_server GET      /import/bitbucket_server/callback(.:format)                                             import/bitbucket_server#callback
                    
119# realtime_changes_import_bitbucket_server GET      /import/bitbucket_server/realtime_changes(.:format)                                     import/bitbucket_server#realtime_changes
                    
120#              new_import_bitbucket_server GET      /import/bitbucket_server/new(.:format)                                                  import/bitbucket_server#new
                    
120#              new_import_bitbucket_server GET      /import/bitbucket_server/new(.:format)                                                  import/bitbucket_server#new
                    
121#                  import_bitbucket_server POST     /import/bitbucket_server(.:format)                                                      import/bitbucket_server#create
                    
122RSpec.describe Import::BitbucketServerController, 'routing' do
                    
                
README.md https://bitbucket.org/sebastian_ekstrom/life2.git | Markdown | 221 lines
                    
32# Starta
                    
33* Börja med att klona life-gitten ifrån bitbucket `https://bitbucket.org/patwic/life`.
                    
34* Provkör filen `life.py` genom att i kommandotolken skriva
                    
                
pip.rb https://github.com/jasherai/cookbooks.git | Ruby | 165 lines
                    
137    # `pip list` may be coming soon: 
                    
138    # https://bitbucket.org/ianb/pip/issue/197/option-to-show-what-version-would-be
                    
139    @new_resource.version||'latest'
                    
                
exampleCompactYang.groovy https://bitbucket.org/novakmi/yangbuilder.git | Groovy | 89 lines
                    
3//This is free software licensed under MIT License, see LICENSE file
                    
4//(https://bitbucket.org/novakmi/yangbuilder/src/LICENSE)
                    
5
                    
5
                    
6import org.bitbucket.novakmi.yangbuilder.CompactYangPlugin
                    
7
                    
11//adoc-begin - documentation purpose comment
                    
12@Grab(group = 'org.bitbucket.novakmi', module = 'nodebuilder', version = '1.1.1')
                    
13@Grab(group = 'org.bitbucket.novakmi', module = 'yangbuilder', version = '1.3.0')
                    
19// (other option is to use builder.registerPlugin(new CompactYangPlugin()))
                    
20def builder = new org.bitbucket.novakmi.yangbuilder.YangBuilder(2, new CompactYangPlugin())                        //<1>
                    
21
                    
36//module's prefix and namespace as attributes '_nl' means new line
                    
37builder.module(moduleName, pnl_namespace:'http://bitbucket.org/novakmi/yangbuilder', prefix_nl: 'example') {      //<3>
                    
38        def makeGrouping = { // this is example how closure can be called be used by the builder
                    
                
BitbucketServerUrlReader.test.ts https://github.com/backstage/backstage.git | TypeScript | 184 lines
                    
29import { NotModifiedError } from '@backstage/errors';
                    
30import { BitbucketServerUrlReader } from './BitbucketServerUrlReader';
                    
31import { DefaultReadTreeResponseFactory } from './tree';
                    
38  new BitbucketServerIntegration(
                    
39    readBitbucketServerIntegrationConfig(
                    
40      new ConfigReader({
                    
72        rest.get(
                    
73          'https://api.bitbucket.mycompany.net/rest/api/1.0/projects/backstage/repos/mock/archive',
                    
74          (_, res, ctx) =>
                    
85        rest.get(
                    
86          'https://api.bitbucket.mycompany.net/rest/api/1.0/projects/backstage/repos/mock/commits',
                    
87          (_, res, ctx) =>
                    
99      const response = await reader.readTree(
                    
100        'https://bitbucket.mycompany.net/projects/backstage/repos/mock/browse/docs?at=some-branch',
                    
101      );
                    
                
jqplot-toImage-js.html https://bitbucket.org/jit_bec/shopifine.git | HTML | 39 lines
                    
13
                    
14<div id=Content><div class="CClass"><div class=CTopic id=MainTopic><div class="CTitle logo"><div class="nav"><a class="nav" href="../../index.php"><span>&gt;</span>Home</a><a class="nav"  href="../../tests/"><span>&gt;</span>Examples</a><a class="nav"  href="../../docs/"><span>&gt;</span>Docs</a><a class="nav"  href="http://bitbucket.org/cleonello/jqplot/downloads/"><span>&gt;</span>Download</a><a class="nav" href="../../info.php"><span>&gt;</span>Info</a><a class="nav"  href="../../donate.php"><span>&gt;</span>Donate</a></div><a name="$.fn"></a>$.fn</div><div class=CBody><p>jQuery namespace to attach functions to jQuery elements.</p></div></div></div>
                    
15
                    
                
Gemfile https://gitlab.com/pavelloz/gitlab-ce | Gemfile | 348 lines
                    
25gem 'omniauth-azure-oauth2',  '~> 0.0.6'
                    
26gem 'omniauth-bitbucket',     '~> 0.0.2'
                    
27gem 'omniauth-cas3',          '~> 1.1.2'
                    
                
metacall_impl.h https://gitlab.com/wustl-pctg-pub/porridge | C Header | 134 lines
                    
42 *  GNU compiler collection or posted to the git repository at
                    
43 *  https://bitbucket.org/intelcilkplusruntime/itnel-cilk-runtime.git are
                    
44 *  not tracked.
                    
                
Repository.php https://gitlab.com/frontycore/yetorm | PHP | 493 lines
                    
9 * @license  MIT
                    
10 * @link     https://bitbucket.org/hranicka/yetorm
                    
11 * @link     https://github.com/uestla/YetORM
                    
                
Decorator.scala https://bitbucket.org/delors/lecturedoc.git | Scala | 194 lines
                    
2 * (c) 2013 Michael Eichberg et al.
                    
3 * https://bitbucket.org/delors/lecturedoc
                    
4 * 
                    
                
index.rst https://github.com/chipx86/reviewboard.git | ReStructuredText | 168 lines
                    
101     * :ref:`Beanstalk <repository-hosting-beanstalk>`
                    
102     * :ref:`Bitbucket <repository-hosting-bitbucket>`
                    
103     * :ref:`Bitbucket Server <repository-hosting-bitbucket-server>`
                    
                
main.go https://bitbucket.org/krepa098/gosfml2.git | Go | 224 lines
                    
11import (
                    
12	sf "bitbucket.org/krepa098/gosfml2"
                    
13	"math"
                    
                
users.md https://gitlab.com/heliov/gitlab-ce | Markdown | 622 lines
                    
67      {"provider": "github", "extern_uid": "2435223452345"},
                    
68      {"provider": "bitbucket", "extern_uid": "john.smith"},
                    
69      {"provider": "google_oauth2", "extern_uid": "8776128412476123468721346"}
                    
188    {"provider": "github", "extern_uid": "2435223452345"},
                    
189    {"provider": "bitbucket", "extern_uid": "john.smith"},
                    
190    {"provider": "google_oauth2", "extern_uid": "8776128412476123468721346"}
                    
306    {"provider": "github", "extern_uid": "2435223452345"},
                    
307    {"provider": "bitbucket", "extern_uid": "john_smith"},
                    
308    {"provider": "google_oauth2", "extern_uid": "8776128412476123468721346"}
                    
                
asn.cpp https://bitbucket.org/ryall/games-pikpik.git | C++ | 595 lines
                    
294	else
                    
295		return TheBitBucket();
                    
296}
                    
                
python-build.scm https://gitlab.com/daym/guix | Scheme | 160 lines
                    
53     '(#:tests? #f))
                    
54    (home-page "https://bitbucket.org/pypa/wheel/")
                    
55    (synopsis "Format for built Python packages")
                    
                
streambody.html https://github.com/argv0/webmachine.git | HTML | 176 lines
                    
15			<li><a href="/">Home</a></li>
                    
16			<li><a href="http://bitbucket.org/justin/webmachine/">Source Code</a></li>
                    
17                        <li><a href="contact.html">Contact</a></li>
                    
                
README.md https://bitbucket.org/obensonne/poole/ | Markdown | 394 lines
                    
17
                    
18[examples]: https://bitbucket.org/obensonne/poole/wiki/Home
                    
19
                    
46
                    
47    $ hg clone http://bitbucket.org/obensonne/poole/ /some/where/poole
                    
48    $ export PATH=$PATH:/some/where/poole
                    
70
                    
71[zip]: http://bitbucket.org/obensonne/poole/get/default.zip
                    
72[tgz]: http://bitbucket.org/obensonne/poole/get/default.tar.gz
                    
72[tgz]: http://bitbucket.org/obensonne/poole/get/default.tar.gz
                    
73[zip3]: https://bitbucket.org/obensonne/poole/get/py3.zip
                    
74[tgz3]: http://bitbucket.org/obensonne/poole/get/py3.tar.gz
                    
74[tgz3]: http://bitbucket.org/obensonne/poole/get/py3.tar.gz
                    
75[themes]: https://bitbucket.org/obensonne/poole/wiki/Themes
                    
76
                    
                
conf.py https://gitlab.com/ztane/alembic | Python | 231 lines
                    
38
                    
39changelog_render_ticket = "https://bitbucket.org/zzzeek/alembic/issue/%s/"
                    
40changelog_render_pullreq = "https://bitbucket.org/zzzeek/alembic/pull-request/%s"
                    
42changelog_render_pullreq = {
                    
43    "bitbucket": "https://bitbucket.org/zzzeek/alembic/pull-request/%s",
                    
44    "default": "https://bitbucket.org/zzzeek/alembic/pull-request/%s",
                    
                
setup2.sh https://gitlab.com/whrl/space_robotics_challenge | Shell | 140 lines
                    
33echo "$(tput setaf 1)downloading gazebo models$(tput sgr0)"
                    
34wget -P /tmp/ https://bitbucket.org/osrf/gazebo_models/get/default.tar.gz
                    
35mkdir -p $HOME/.gazebo/models
                    
                
smoothing.py https://gitlab.com/pooja043/Globus_Docker_4 | Python | 226 lines
                    
41    Source:
                    
42    https://bitbucket.org/janto/snippets/src/tip/running_median.py
                    
43    https://groups.google.com/d/msg/comp.lang.python/0OARyHF0wtA/SEs-glW4t6gJ
                    
                
Contributing-to-NuGet-Documentation.markdown https://hg.codeplex.com/nugetdocs | Markdown | 357 lines
                    
9
                    
101. **Clone the repository.** [Mercurial](http://tortoisehg.bitbucket.org/download/index.html) (hg)
                    
11(for instructions using Visual Studio integration, see the next section, 
                    
67
                    
682. **Using TortoiseHG** If the previous step fails due to the bug mentioned earlier, use TortoiseHG ([install](http://tortoisehg.bitbucket.org/download/index.html)) instead to clone the repository.
                    
69    1. Within Windows Explorer, right click on the local nuget docs folder you created.
                    
                
README.md https://gitlab.com/bluehole/nanoos | Markdown | 119 lines
                    
60
                    
61K++ https://bitbucket.org/byteit101/k/overview is written based on NanoOS with good additions. Thanks Patrick Plenefisch
                    
62
                    
                
SchemaColumn.java https://bitbucket.org/bradleysmithllc/etl-unit.git | Java | 698 lines
                    
1package org.bitbucket.bradleysmithllc.etlunit.io.file;
                    
2
                    
23import com.fasterxml.jackson.databind.JsonNode;
                    
24import org.bitbucket.bradleysmithllc.etlunit.util.ObjectUtils;
                    
25import org.bitbucket.bradleysmithllc.etlunit.util.VelocityUtil;
                    
                
README.md https://gitlab.com/blocknotary/IonicInterviews | Markdown | 132 lines
                    
129
                    
130Currently this supports Github, Bitbucket and Gitlab. Pull requests for
                    
131additional hosts welcome.
                    
                
importer_spec.rb https://gitlab.com/jamgregory/gitlab-ce | Ruby | 324 lines
                    
2
                    
3describe Gitlab::BitbucketImport::Importer do
                    
4  include ImportSpecHelper
                    
6  before do
                    
7    stub_omniauth_provider('bitbucket')
                    
8    stub_feature_flags(stricter_mr_branch_name: false)
                    
63      'bb_session' => {
                    
64        'bitbucket_token' => "123456",
                    
65        'bitbucket_refresh_token' => "secret"
                    
74      import_source: project_identifier,
                    
75      import_url: "https://bitbucket.org/#{project_identifier}.git",
                    
76      import_data_attributes: { credentials: data }
                    
102      instance_double(
                    
103        Bitbucket::Representation::PullRequest,
                    
104        iid: 10,
                    
                
CharSequenceWrapper.java https://bitbucket.org/dfa/dollar/ | Java | 163 lines
                    
3/*
                    
4 * Dollar, http://bitbucket.org/dfa/dollar
                    
5 * (c) 2010, 2011 Davide Angelocola <davide.angelocola@gmail.com>
                    
                
README.md https://bitbucket.org/ojakovlj/infobip-shorturl.git | Markdown | 108 lines
                    
7* To download the project, open the Git bash in the desired target folder and run
                    
8```git clone https://ojakovlj@bitbucket.org/ojakovlj/infobip-shorturl.git```
                    
9* This project was created using JDK 1.8 and Maven 3.3.9 in IntelliJ IDEA. 
                    
                
import_routing_spec.rb https://gitlab.com/Stretch96/gitlab-ce | Ruby | 176 lines
                    
101
                    
102#   status_import_bitbucket GET      /import/bitbucket/status(.:format)                                                            import/bitbucket#status
                    
103# callback_import_bitbucket GET      /import/bitbucket/callback(.:format)                                                          import/bitbucket#callback
                    
103# callback_import_bitbucket GET      /import/bitbucket/callback(.:format)                                                          import/bitbucket#callback
                    
104#     jobs_import_bitbucket GET      /import/bitbucket/jobs(.:format)                                                              import/bitbucket#jobs
                    
105#          import_bitbucket POST     /import/bitbucket(.:format)                                                                   import/bitbucket#create
                    
105#          import_bitbucket POST     /import/bitbucket(.:format)                                                                   import/bitbucket#create
                    
106describe Import::BitbucketController, 'routing' do
                    
107  it_behaves_like 'importer routing' do
                    
108    let(:except_actions) { [:new] }
                    
109    let(:provider) { 'bitbucket' }
                    
110  end
                    
                
realworld.html https://gitlab.com/ntphuc/BackendFeedy | HTML | 145 lines
                    
30      <li><a href="http://apeye.org/">APEye</a> (tool for testing &amp; documenting APIs)</li>
                    
31      <li><a href="http://blog.bitbucket.org/2013/05/14/edit-your-code-in-the-cloud-with-bitbucket/">Bitbucket</a> (code hosting)</li>
                    
32      <li><a href="http://buzz.blogger.com/2013/04/improvements-to-blogger-template-html.html">Blogger's template editor</a></li>
                    
                
handler.py https://gitlab.com/sbDevGit/ZeroNet | Python | 283 lines
                    
53                self.client_address, self.websocket)
                    
54            if self.application.__class__.__name__ == "DebuggedApplication": # Modified: Werkzeug Debugger workaround (https://bitbucket.org/Jeffrey/gevent-websocket/issue/53/if-the-application-returns-a-generator-we)
                    
55                list(self.application(self.environ, lambda s, h: []))
                    
                
2014-09-06-porque-você-não-deve-usar-down-migrations.md https://github.com/vinibaggio/vinibaggio.github.com.git | Markdown | 49 lines
                    
7
                    
8Se você trabalha com web, é muito provável que você já usa migrações de banco de dados. Frameworks Web como Rails adotam migrações em seu design por padrão e projetos como [Goose](https://bitbucket.org/liamstask/goose) ou [DbMaintain](http://dbmaintain.org) tornam migrações fáceis de ser aplicadas em qualquer projeto.
                    
9
                    
                
jqplot-pyramidGridRenderer-js.html https://gitlab.com/unclecheese/openstack-scratchpad | HTML | 39 lines
                    
13
                    
14<div id=Content><div class="CClass"><div class=CTopic id=MainTopic><div class="CTitle logo"><div class="nav"><a class="nav" href="../../../index.php"><span>&gt;</span>Home</a><a class="nav"  href="../../../tests/"><span>&gt;</span>Examples</a><a class="nav"  href="../../../docs/"><span>&gt;</span>Docs</a><a class="nav"  href="http://bitbucket.org/cleonello/jqplot/downloads/"><span>&gt;</span>Download</a><a class="nav" href="../../../info.php"><span>&gt;</span>Info</a><a class="nav"  href="../../../donate.php"><span>&gt;</span>Donate</a></div><a name="$.jqplot.CanvasGridRenderer"></a>$.jqplot.<wbr>CanvasGridRenderer</div><div class=CBody><p>The default jqPlot grid renderer, creating a grid on a canvas element.&nbsp; The renderer has no additional options beyond the <a href="../jqplot-core-js.html#Grid" class=LClass id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">Grid</a> class.</p></div></div></div>
                    
15
                    
                
utils.py https://github.com/mozilla/input-lib.git | Python | 229 lines
                    
184# Taken from
                    
185# http://bitbucket.org/runeh/snippets/src/tip/missing_modules.py
                    
186@contextmanager
                    
                
LDAPSocketFactory.java https://bitbucket.org/openesb/netbeans-soa.git | Java | 111 lines
                    
25 * The class design comes from the Java bug solution provided here 
                    
26 * https://bitbucket.org/atlassian/cwd-4444-java-bug-reproducer/src/master/src/main/java/Working.java
                    
27 * Here in the code, we don't use the SSLContext.getDefault() to get a SSL Context 
                    
                
application_controller.rb https://gitlab.com/ahebrank/gitlab-ce | Ruby | 389 lines
                    
26  helper_method :abilities, :can?, :current_application_settings
                    
27  helper_method :import_sources_enabled?, :github_import_enabled?, :github_import_configured?, :gitlab_import_enabled?, :gitlab_import_configured?, :bitbucket_import_enabled?, :bitbucket_import_configured?, :gitorious_import_enabled?, :google_code_import_enabled?, :fogbugz_import_enabled?, :git_import_enabled?
                    
28
                    
304
                    
305  def bitbucket_import_enabled?
                    
306    current_application_settings.import_sources.include?('bitbucket')
                    
309  def bitbucket_import_configured?
                    
310    Gitlab::OAuth::Provider.enabled?(:bitbucket) && Gitlab::BitbucketImport.public_key.present?
                    
311  end
                    
                
ExtensibleFeatureModule.java https://bitbucket.org/bradleysmithllc/etl-unit.git | Java | 383 lines
                    
1package org.bitbucket.bradleysmithllc.etlunit.feature.extend;
                    
2
                    
24import com.github.fge.jsonschema.main.JsonSchema;
                    
25import org.bitbucket.bradleysmithllc.etlunit.*;
                    
26import org.bitbucket.bradleysmithllc.etlunit.context.VariableContext;
                    
26import org.bitbucket.bradleysmithllc.etlunit.context.VariableContext;
                    
27import org.bitbucket.bradleysmithllc.etlunit.feature.*;
                    
28import org.bitbucket.bradleysmithllc.etlunit.listener.ClassListener;
                    
28import org.bitbucket.bradleysmithllc.etlunit.listener.ClassListener;
                    
29import org.bitbucket.bradleysmithllc.etlunit.listener.OperationProcessor;
                    
30import org.bitbucket.bradleysmithllc.etlunit.parser.*;
                    
                
JavaExecutor.java https://bitbucket.org/bradleysmithllc/etl-unit.git | Java | 221 lines
                    
1package org.bitbucket.bradleysmithllc.etlunit.feature.execute;
                    
2
                    
22
                    
23import org.bitbucket.bradleysmithllc.etlunit.*;
                    
24import org.bitbucket.bradleysmithllc.etlunit.context.VariableContext;
                    
24import org.bitbucket.bradleysmithllc.etlunit.context.VariableContext;
                    
25import org.bitbucket.bradleysmithllc.etlunit.feature.execute.json.java_executor.execute.ExecuteHandler;
                    
26import org.bitbucket.bradleysmithllc.etlunit.feature.execute.json.java_executor.execute.ExecuteRequest;
                    
26import org.bitbucket.bradleysmithllc.etlunit.feature.execute.json.java_executor.execute.ExecuteRequest;
                    
27import org.bitbucket.bradleysmithllc.etlunit.feature.execute.json.java_executor.execute.SystemProperties;
                    
28import org.bitbucket.bradleysmithllc.etlunit.feature.logging.LogFileManager;
                    
28import org.bitbucket.bradleysmithllc.etlunit.feature.logging.LogFileManager;
                    
29import org.bitbucket.bradleysmithllc.etlunit.io.JavaForker;
                    
30import org.bitbucket.bradleysmithllc.etlunit.listener.NullClassListener;
                    
30import org.bitbucket.bradleysmithllc.etlunit.listener.NullClassListener;
                    
31import org.bitbucket.bradleysmithllc.etlunit.metadata.MetaDataArtifact;
                    
32import org.bitbucket.bradleysmithllc.etlunit.metadata.MetaDataContext;
                    
                
JavaProperty.java https://bitbucket.org/bradleysmithllc/etl-unit.git | Java | 174 lines
                    
1package org.bitbucket.bradleysmithllc.etlunit.maven.util;
                    
2
                    
23import com.sun.codemodel.*;
                    
24import org.bitbucket.bradleysmithllc.json.validator.JsonSchemaObjectNode;
                    
25
                    
                
AboutForm.Designer.cs https://bitbucket.org/grozeille/sosnet | C# | 249 lines
                    
169            this.linkLabelWebSite.TabStop = true;
                    
170            this.linkLabelWebSite.Text = "http://bitbucket.org/grozeille/sosnet/wiki/Home";
                    
171            this.linkLabelWebSite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
                    
181            this.linkLabelReportBugs.TabStop = true;
                    
182            this.linkLabelReportBugs.Text = "http://bitbucket.org/grozeille/sosnet/issues/?status=new&status=open";
                    
183            this.linkLabelReportBugs.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
                    
                
building.rst https://gitlab.com/Rockyspade/astropy | ReStructuredText | 120 lines
                    
5The build process currently uses the `setuptools
                    
6<https://bitbucket.org/pypa/setuptools>`_ package to build and install the
                    
7astropy core (and any affiliated packages that use the template).  The user
                    
                
social-ie7.css https://github.com/evocateur/yui3-gallery.git | CSS | 42 lines
                    
37i.itsaicon-social-github { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&nbsp;&#xe81b;&nbsp;'); }
                    
38i.itsaicon-social-bitbucket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&nbsp;&#xe823;&nbsp;'); }
                    
39i.itsaicon-social-call2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&nbsp;&#xe829;&nbsp;'); }
                    
                
plugin_support.py https://gitlab.com/0072016/coveragepy | Python | 247 lines
                    
1# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
                    
2# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
                    
3
                    
                
readme.template.md https://gitlab.com/craydent/node-library | Markdown | 144 lines
                    
141 * [GitHub](https://github.com/craydent/node-library/${if (${suffix})}${path}${end if})
                    
142 * [BitBucket](https://bitbucket.org/craydent/node-library/${if (${suffix})}${path}${end if})
                    
143 * [GitLab](https://gitlab.com/craydent/node-library/${if (${suffix})}${path}${end if})
                    
                
table.go https://bitbucket.org/cloudwallet/goleveldb.git | Go | 529 lines
                    
13
                    
14	"bitbucket.org/cloudwallet/goleveldb/leveldb/cache"
                    
15	"bitbucket.org/cloudwallet/goleveldb/leveldb/iterator"
                    
15	"bitbucket.org/cloudwallet/goleveldb/leveldb/iterator"
                    
16	"bitbucket.org/cloudwallet/goleveldb/leveldb/opt"
                    
17	"bitbucket.org/cloudwallet/goleveldb/leveldb/storage"
                    
17	"bitbucket.org/cloudwallet/goleveldb/leveldb/storage"
                    
18	"bitbucket.org/cloudwallet/goleveldb/leveldb/table"
                    
19	"bitbucket.org/cloudwallet/goleveldb/leveldb/util"
                    
                
hacking.rst https://bitbucket.org/sjl/hg-review/ | ReStructuredText | 160 lines
                    
6The easiest way is to make some changes, push them somewhere public and send
                    
7a pull request on Bitbucket (or `email Steve <mailto:steve@stevelosh.com>`_).
                    
8
                    
                
2017-07-19-git-wars-switching-to-gitlab.html.md https://gitlab.com/nick.volynkin/www-gitlab-com | Markdown | 65 lines
                    
11
                    
12It’s a well-known fact: GitHub has the market share when it comes to Git hosting, with Bitbucket following close behind due to their “unlimited private repositories” policy. But what if I told you that those weren’t your only options?
                    
13
                    
19
                    
20Bitbucket is another beast altogether. Created by the tech conglomerate Atlassian, Bitbucket is their answer to GitHub. Its claim to fame is that you can have unlimited private repositories for free…as long as your team has no more than five people.
                    
21
                    
21
                    
22This is actually the reason I first started using Bitbucket. However, if you do have more than five people, you’re going to pay, and the quality that you pay for isn’t all that great. I’ve worked on a number of projects on Bitbucket where my team was plagued by slow pulls/pushes, 503 errors when attempting to view a repo, and just overall jankyness. Besides that, their design also leaves a lot to be desired. The new design looks better, but also somehow makes things even more confusing (someone needs to learn the difference between UI and UX). To be completely honest I don’t have anything good to say about Bitbucket, so I’m going to continue.
                    
23
                    
                
Makefile https://bitbucket.org/qmpstudios/rrg_nf.git | Makefile | 452 lines
                    
38# The top-level source directory on which CMake was run.
                    
39CMAKE_SOURCE_DIR = /home/mateusz/ros/RRG_bitbucket/rrg_nf
                    
40
                    
41# The top-level build directory on which CMake was run.
                    
42CMAKE_BINARY_DIR = /home/mateusz/ros/RRG_bitbucket/rrg_nf/build
                    
43
                    
68all: cmake_check_build_system
                    
69	$(CMAKE_COMMAND) -E cmake_progress_start /home/mateusz/ros/RRG_bitbucket/rrg_nf/build/CMakeFiles /home/mateusz/ros/RRG_bitbucket/rrg_nf/build/CMakeFiles/progress.marks
                    
70	$(MAKE) -f CMakeFiles/Makefile2 all
                    
70	$(MAKE) -f CMakeFiles/Makefile2 all
                    
71	$(CMAKE_COMMAND) -E cmake_progress_start /home/mateusz/ros/RRG_bitbucket/rrg_nf/build/CMakeFiles 0
                    
72.PHONY : all
                    
                
response.php https://bitbucket.org/slogsdon/unamed.git | PHP | 200 lines
                    
8 * @license  MIT http://mit.edu/
                    
9 * @link     http://bitbucket.org/slogsdon/unamed
                    
10 */
                    
21     * @license  MIT http://mit.edu/
                    
22     * @link     http://bitbucket.org/slogsdon/unamed
                    
23     * @since    1.0
                    
                
environment_manager.rb https://gitlab.com/JuanitoFatas/danger | Ruby | 122 lines
                    
89        RequestSources::GitLab
                    
90      elsif repo_url =~ /bitbucket\.(org|com)/i
                    
91        RequestSources::BitbucketCloud
                    
                
app-service-value-prop-what-is.md https://gitlab.com/mayakarya/azure-content | Markdown | 81 lines
                    
35
                    
36- **DevOps optimization** - Set up [continuous integration and deployment](../app-service-web/app-service-continous-deployment.md) with Visual Studio Team Services, GitHub, or BitBucket. Promote updates through [test and staging environments](../app-service-web/web-sites-staged-publishing.md). Perform [A/B testing](../app-service-web/app-service-web-test-in-production-get-start.md). Manage your apps in App Service by using [Azure PowerShell](../powershell-install-configure.md) or the [cross-platform command-line interface (CLI)](../xplat-cli-install.md).
                    
37 
                    
                
application_controller.rb https://gitlab.com/iOrange/gitlab-ee | Ruby | 355 lines
                    
27  helper_method :abilities, :can?, :current_application_settings
                    
28  helper_method :import_sources_enabled?, :github_import_enabled?, :github_import_configured?, :gitlab_import_enabled?, :gitlab_import_configured?, :bitbucket_import_enabled?, :bitbucket_import_configured?, :gitorious_import_enabled?, :google_code_import_enabled?, :fogbugz_import_enabled?, :git_import_enabled?, :gitlab_project_import_enabled?
                    
29
                    
290
                    
291  def bitbucket_import_enabled?
                    
292    current_application_settings.import_sources.include?('bitbucket')
                    
295  def bitbucket_import_configured?
                    
296    Gitlab::OAuth::Provider.enabled?(:bitbucket) && Gitlab::BitbucketImport.public_key.present?
                    
297  end
                    
                
setup.py git://pkgs.fedoraproject.org/pyutil | Python | 127 lines
                    
77# sdists or eggs:
                    
78# http://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being
                    
79if False:
                    
                
PropertiesI.html https://gitlab.com/unclecheese/openstack-scratchpad | HTML | 20 lines
                    
13
                    
14<div id="IPageLogo"><div class="nav"><a class="nav" href="../../index.php"><span>&gt;</span>Home</a><a class="nav"  href="../../tests/"><span>&gt;</span>Examples</a><a class="nav"  href="../../docs/"><span>&gt;</span>Docs</a><a class="nav"  href="http://bitbucket.org/cleonello/jqplot/downloads/"><span>&gt;</span>Download</a><a class="nav" href="../../info.php"><span>&gt;</span>Info</a><a class="nav"  href="../../donate.php"><span>&gt;</span>Donate</a></div></div><div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_index><div class=IEntry><a href="../files/jqplot-core-js.html#Series.index" target=_parent class=ISymbol>index</a>, <span class=IParent>Series</span></div></div><div class=SRResult id=SR_innerDiameter><div class=IEntry><a href="../files/plugins/jqplot-donutRenderer-js.html#$.jqplot.DonutRenderer.innerDiameter" target=_parent class=ISymbol>innerDiameter</a>, <span class=IParent>$.jqplot.<wbr>DonutRenderer</span></div></div><div class=SRResult id=SR_insertBreaks><div class=IEntry><a href="../files/plugins/jqplot-blockRenderer-js.html#$.jqplot.BlockRenderer.insertBreaks" target=_parent class=ISymbol>insertBreaks</a>, <span class=IParent>$.jqplot.<wbr>BlockRenderer</span></div></div><div class=SRResult id=SR_intersectionThreshold><div class=IEntry><a href="../files/plugins/jqplot-cursor-js.html#$.jqplot.Cursor.intersectionThreshold" target=_parent class=ISymbol>intersectionThreshold</a>, <span class=IParent>$.jqplot.<wbr>Cursor</span></div></div><div class=SRResult id=SR_interval><div class=IEntry><a href="../files/jqplot-lineRenderer-js.html#$.jqplot.LineRenderer.interval" target=_parent class=ISymbol>interval</a>, <span class=IParent>$.jqplot.<wbr>LineRenderer</span></div></div><div class=SRResult id=SR_intervalColors><div class=IEntry><a href="../files/plugins/jqplot-meterGaugeRenderer-js.html#$.jqplot.MeterGaugeRenderer.intervalColors" target=_parent class=ISymbol>intervalColors</a>, <span class=IParent>$.jqplot.<wbr>MeterGaugeRenderer</span></div></div><div class=SRResult id=SR_intervalInnerRadius><div class=IEntry><a href="../files/plugins/jqplot-meterGaugeRenderer-js.html#$.jqplot.MeterGaugeRenderer.intervalInnerRadius" target=_parent class=ISymbol>intervalInnerRadius</a>, <span class=IParent>$.jqplot.<wbr>MeterGaugeRenderer</span></div></div><div class=SRResult id=SR_intervalOuterRadius><div class=IEntry><a href="../files/plugins/jqplot-meterGaugeRenderer-js.html#$.jqplot.MeterGaugeRenderer.intervalOuterRadius" target=_parent class=ISymbol>intervalOuterRadius</a>, <span class=IParent>$.jqplot.<wbr>MeterGaugeRenderer</span></div></div><div class=SRResult id=SR_intervals><div class=IEntry><a href="../files/plugins/jqplot-meterGaugeRenderer-js.html#$.jqplot.MeterGaugeRenderer.intervals" target=_parent class=ISymbol>intervals</a>, <span class=IParent>$.jqplot.<wbr>MeterGaugeRenderer</span></div></div><div class=SRResult id=SR_isarc><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isarc')" class=ISymbol>isarc</a><div class=ISubIndex><a href="../files/jqplot-shadowRenderer-js.html#$.jqplot.shadowRenderer.isarc" target=_parent class=IParent>$.jqplot.<wbr>shadowRenderer</a><a href="../files/jqplot-shapeRenderer-js.html#$.jqplot.shapeRenderer.isarc" target=_parent class=IParent>$.jqplot.<wbr>shapeRenderer</a></div></div></div><div class=SRResult id=SR_isMinorTick><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isMinorTick')" class=ISymbol>isMinorTick</a><div class=ISubIndex><a href="../files/jqplot-axisTickRenderer-js.html#$.jqplot.AxisTickRenderer.isMinorTick" target=_parent class=IParent>$.jqplot.<wbr>AxisTickRenderer</a><a href="../files/plugins/jqplot-canvasAxisTickRenderer-js.html#$.jqplot.CanvasAxisTickRenderer.isMinorTick" target=_parent class=IParent>$.jqplot.<wbr>CanvasAxisTickRenderer</a></div></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
                    
15document.getElementById("Loading").style.display="none";
                    
                
helpers.test.ts https://github.com/backstage/backstage.git | TypeScript | 183 lines
                    
16
                    
17import { BitbucketIntegration } from './bitbucket';
                    
18import {
                    
26    it('handles hosts without a port', () => {
                    
27      const integration = new BitbucketIntegration({ host: 'host.com' });
                    
28      const integrations = basicIntegrations<BitbucketIntegration>(
                    
35    it('handles hosts with a port', () => {
                    
36      const integration = new BitbucketIntegration({ host: 'host.com:8080' });
                    
37      const integrations = basicIntegrations<BitbucketIntegration>(
                    
                
Fanwood-Italic_build.py https://github.com/chemoelectric/sortsmill.git | Python | 261 lines
                    
33
                    
34def build_glyphs(bitbucket, f):
                    
35
                    
                
DatabaseRuntimeSupport.java https://bitbucket.org/bradleysmithllc/etl-unit.git | Java | 126 lines
                    
1package org.bitbucket.bradleysmithllc.etlunit.feature.database;
                    
2
                    
22
                    
23import org.bitbucket.bradleysmithllc.etlunit.TestExecutionError;
                    
24import org.bitbucket.bradleysmithllc.etlunit.context.VariableContext;
                    
24import org.bitbucket.bradleysmithllc.etlunit.context.VariableContext;
                    
25import org.bitbucket.bradleysmithllc.etlunit.feature.database.db.Database;
                    
26import org.bitbucket.bradleysmithllc.etlunit.feature.database.db.Table;
                    
26import org.bitbucket.bradleysmithllc.etlunit.feature.database.db.Table;
                    
27import org.bitbucket.bradleysmithllc.etlunit.feature.file.FileRuntimeSupport;
                    
28import org.bitbucket.bradleysmithllc.etlunit.feature.file.RequestedFmlNotFoundException;
                    
28import org.bitbucket.bradleysmithllc.etlunit.feature.file.RequestedFmlNotFoundException;
                    
29import org.bitbucket.bradleysmithllc.etlunit.io.file.DataFileSchema;
                    
30import org.bitbucket.bradleysmithllc.etlunit.io.file.reference_file_type.ReferenceFileTypeRef;
                    
30import org.bitbucket.bradleysmithllc.etlunit.io.file.reference_file_type.ReferenceFileTypeRef;
                    
31import org.bitbucket.bradleysmithllc.etlunit.metadata.MetaDataContext;
                    
32import org.bitbucket.bradleysmithllc.etlunit.parser.ETLTestOperation;
                    
                
modSpecialFolders.bas https://Cybera.svn.codeplex.com/svn | Basic | 170 lines
                    
41' The virtual folder containing the objects in the user's Recycle Bin.
                    
42Public Const CSIDL_BITBUCKET = &HA
                    
43' Version 6.0. The file system directory acting as a staging area for files waiting to be written to CD. A typical path
                    
                
index.html https://bitbucket.org/bohrium/bohrium.bitbucket.org.git | HTML | 144 lines
                    
61<h1>Benchmarks<a class="headerlink" href="#benchmarks" title="Permalink to this headline">¶</a></h1>
                    
62<p>The speedup graphs below represent the latest results (raw form available <a class="reference external" href="https://bitbucket.org/bohrium/benchpress/raw/master/results/akira/benchmark-latest.json">here</a>) of running benchmarks on akira.</p>
                    
63<p>All benchmark results are stored in json-format and are available <a class="reference external" href="https://bitbucket.org/bohrium/benchpress/raw/master/results">here</a>.
                    
65<p>To compare benchmark-results from different machines and revisions, take a look at the <a class="reference external" href="http://bohrium.org/benchmarks/compare.html">compare-tool</a> that is where the magic is happens.</p>
                    
66<img alt="&quot;Black Scholes&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/black_scholes_speedup.png" />
                    
67<img alt="&quot;Cache Synth&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/cache_synth_speedup.png" />
                    
67<img alt="&quot;Cache Synth&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/cache_synth_speedup.png" />
                    
68<img alt="&quot;Jacobi Iterative&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/jacobi_iterative_speedup.png" />
                    
69<img alt="&quot;Jacobi Iterative - Reduce&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/jacobi_iterative___reduce_speedup.png" />
                    
69<img alt="&quot;Jacobi Iterative - Reduce&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/jacobi_iterative___reduce_speedup.png" />
                    
70<img alt="&quot;kNN&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/knn_speedup.png" />
                    
71<img alt="&quot;Lattice Boltzman 2D&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/lattice_boltzmann_2d_speedup.png" />
                    
71<img alt="&quot;Lattice Boltzman 2D&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/lattice_boltzmann_2d_speedup.png" />
                    
72<img alt="&quot;Lattice Boltzman 3D&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/lattice_boltzmann_3d_speedup.png" />
                    
73<img alt="&quot;Monte Carlo PI&quot;" class="align-center" src="https://bitbucket.org/bohrium/benchpress/raw/master/graphs/akira/latest/monte_carlo_pi___ril_speedup.png" />
                    
                
index.html https://bitbucket.org/JeronimoCarranza2/jeronimocarranza2.bitbucket.io.git | HTML | 429 lines
                    
32
                    
33  <link rel="alternate" href="https://JeronimoCarranza2.bitbucket.io/index.xml" type="application/rss+xml" title="Jerónimo Carranza Carranza">
                    
34  <link rel="feed" href="https://JeronimoCarranza2.bitbucket.io/index.xml" type="application/rss+xml" title="Jerónimo Carranza Carranza">
                    
38
                    
39  <link rel="canonical" href="https://JeronimoCarranza2.bitbucket.io/es/publication/2002-recursoshidricos_a381_almoraima/">
                    
40
                    
187      <a class="facebook"
                    
188         href="https://www.facebook.com/sharer.php?u=https%3a%2f%2fJeronimoCarranza2.bitbucket.io%2fes%2fpublication%2f2002-recursoshidricos_a381_almoraima%2f"
                    
189         target="_blank">
                    
194      <a class="twitter"
                    
195         href="https://twitter.com/intent/tweet?text=Caracterizaci%c3%b3n%20de%20medidas%20compensatorias%20correspondientes%20a%20la%20autov%c3%ada%20A-381%2c%20Jerez-Los%20Barrios.%20Actuaciones%20relacionadas%20con%20los%20recursos%20h%c3%addricos.&amp;url=https%3a%2f%2fJeronimoCarranza2.bitbucket.io%2fes%2fpublication%2f2002-recursoshidricos_a381_almoraima%2f"
                    
196         target="_blank">
                    
201      <a class="linkedin"
                    
202         href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3a%2f%2fJeronimoCarranza2.bitbucket.io%2fes%2fpublication%2f2002-recursoshidricos_a381_almoraima%2f&amp;title=Caracterizaci%c3%b3n%20de%20medidas%20compensatorias%20correspondientes%20a%20la%20autov%c3%ada%20A-381%2c%20Jerez-Los%20Barrios.%20Actuaciones%20relacionadas%20con%20los%20recursos%20h%c3%addricos."
                    
203         target="_blank">
                    
                
README.rst https://gitlab.com/132nd-etcher/glances | ReStructuredText | 278 lines
                    
95
                    
96    pip install bottle batinfo https://bitbucket.org/gleb_zhulik/py3sensors/get/tip.tar.gz zeroconf netifaces pymdstat influxdb potsdb statsd pystache docker-py pysnmp pika py-cpuinfo
                    
97
                    
                
testPanels.kt git://github.com/JetBrains/intellij-community.git | Kotlin | 441 lines
                    
178  return panel {
                    
179    noteRow("Enter credentials for bitbucket.org")
                    
180    row("Username:") { JTextField("develar")() }
                    
                
README.md https://gitlab.com/SaiAshirwadInformatia/gitlab-ce | Markdown | 221 lines
                    
53
                    
541. [Migrating from BitBucket/Stash](https://docs.gitlab.com/ee/workflow/importing/import_projects_from_bitbucket.html)
                    
551. [Migrating from GitHub](https://docs.gitlab.com/ee/workflow/importing/import_projects_from_github.html)
                    
1381. [GitLab Compared to Other Tools](https://about.gitlab.com/comparison/)
                    
1391. [Comparing GitLab Terminology](https://about.gitlab.com/2016/01/27/comparing-terms-gitlab-github-bitbucket/)
                    
1401. [GitLab Compared to Atlassian (Recording 2016-03-03) ](https://youtu.be/Nbzp1t45ERo)
                    
                
bitbucket.ts https://github.com/backstage/backstage.git | TypeScript | 350 lines
                    
18import {
                    
19  BitbucketIntegrationConfig,
                    
20  ScmIntegrationRegistry,
                    
149
                    
150const getAuthorizationHeader = (config: BitbucketIntegrationConfig) => {
                    
151  if (config.username && config.appPassword) {
                    
164  throw new Error(
                    
165    `Authorization has not been provided for Bitbucket. Please add either username + appPassword or token to the Integrations config`,
                    
166  );
                    
241            title:
                    
242              'Enable LFS for the repository. Only available for hosted Bitbucket.',
                    
243            type: 'boolean',
                    
283
                    
284      // Project is required for both bitbucket cloud and bitbucket server
                    
285      if (!project) {
                    
                
DESCRIPTION.rst https://gitlab.com/areema/myproject | ReStructuredText | 238 lines
                    
92host name `pypi.python.org`. Those are known issues, related to a bug in the older versions of `wget`
                    
93(see `Issue 59 <https://bitbucket.org/pypa/pypi/issue/59#comment-5881915>`_). If you happen to encounter them,
                    
94install Setuptools as follows::
                    
136In addition to the PyPI downloads, the development version of ``setuptools``
                    
137is available from the `Bitbucket repo`_, and in-development versions of the
                    
138`0.6 branch`_ are available as well.
                    
139
                    
140.. _Bitbucket repo: https://bitbucket.org/pypa/setuptools/get/default.tar.gz#egg=setuptools-dev
                    
141.. _0.6 branch: http://svn.python.org/projects/sandbox/branches/setuptools-0.6/#egg=setuptools-dev06
                    
                
syllabus.tex https://bitbucket.org/seshness/open-source-decal-fall-2011/ | LaTeX | 239 lines
                    
32% \rhead{Monday 6-8pm}
                    
33\cfoot{https://bitbucket.org/seshness/open-source-decal-fall-2011}
                    
34
                    
93
                    
94\url{https://bitbucket.org/seshness/open-source-decal-fall-2011}
                    
95
                    
                
simple-usage-html.mustache https://github.com/evocateur/yui3-gallery.git | Mustache | 42 lines
                    
2<button class="pure-button itsabutton-bordered"><i class="itsaicon-social-android"></i></button>
                    
3<button class="pure-button itsabutton-bordered"><i class="itsaicon-social-bitbucket"></i></button>
                    
4<button class="pure-button itsabutton-bordered"><i class="itsaicon-social-bitcoin"></i></button>
                    
                
building_enzo.rst https://bitbucket.org/enzo/enzo-dev/ | ReStructuredText | 364 lines
                    
40more about the code and different installation methods.  To directly access the source
                    
41code, you can visit the `Enzo Bitbucket page <https://bitbucket.org/enzo>`_.
                    
42
                    
55
                    
56    ~ $ hg clone https://bitbucket.org/enzo/enzo-dev ./enzo
                    
57
                    
78    ~/enzo $ hg pull
                    
79    pulling from https://bitbucket.org/enzo/enzo-dev
                    
80    searching for changes
                    
                
getting_started.html git://github.com/kiith-sa/D-YAML.git | HTML | 241 lines
                    
66<a class="reference external" href="http://gdcproject.org/">GDC</a> and
                    
67<a class="reference external" href="http://bitbucket.org/goshawk/gdc/wiki/Home">LDC</a>.</p>
                    
68</div>
                    
                
gas.core.js https://gitlab.com/Mirros/cdnjs | JavaScript | 503 lines
                    
4 * GAS - Google Analytics on Steroids
                    
5 * https://bitbucket.org/dpc/gas
                    
6 *
                    
                
postreview.py git://pkgs.fedoraproject.org/tortoisehg | Python | 403 lines
                    
10#
                    
11# https://bitbucket.org/mdelagra/mercurial-reviewboard/
                    
12#
                    
57                        "from the website below.\n\n %s") % \
                    
58                        u'http://bitbucket.org/mdelagra/mercurial-reviewboard/'
                    
59
                    
                
external_authorization.md https://gitlab.com/markglenfletcher/gitlab-ee | Markdown | 134 lines
                    
81    { "provider": "ldap", "extern_uid": "CN=Jane Doe,CN=admin,DC=acme" },
                    
82    { "provider": "bitbucket", "extern_uid": "2435223452345" }
                    
83  ]
                    
                
PITCHME.md https://gitlab.com/jerdog/gitpitch-kitchen-sink | Markdown | 235 lines
                    
75
                    
76And with a simple **git-push** to GitHub, GitLab, and Bitbucket you can share...
                    
77
                    
                
features.py https://gitlab.com/suyesh/Djangotest | Python | 251 lines
                    
71    # Specifically, there is a bug with cx_Oracle:
                    
72    # https://bitbucket.org/anthony_tuininga/cx_oracle/issue/7/
                    
73    driver_supports_timedelta_args = False
                    
                
cf.AuxiliaryCoordinate.name.html https://bitbucket.org/cfpython/cfpython.bitbucket.org.git | HTML | 243 lines
                    
45             accesskey="P">previous</a> |</li>
                    
46  <li><a target="_blank" href="http://cfpython.bitbucket.org">cf-python 1.1.10</a> &raquo;</li>
                    
47<!--
                    
47<!--
                    
48  <li><a target="_blank" href="http://cfpython.bitbucket.org">cf-python</a> &raquo;</li>
                    
49  <li><select onchange="location = this.options[this.selectedIndex].value;">
                    
79<dt id="cf.AuxiliaryCoordinate.name">
                    
80<code class="descclassname">AuxiliaryCoordinate.</code><code class="descname">name</code><span class="sig-paren">(</span><em>default=None</em>, <em>identity=False</em>, <em>ncvar=False</em><span class="sig-paren">)</span><a class="reference external" href="https://bitbucket.org/cfpython/cf-python/src/v1.1.10/cf/variable.py#variable.py-6396"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#cf.AuxiliaryCoordinate.name" title="Permalink to this definition">Âś</a></dt>
                    
81<dd><p>Return a name.</p>
                    
212             >previous</a> |</li>
                    
213  <li><a target="_blank" href="http://cfpython.bitbucket.org">cf-python 1.1.10</a> &raquo;</li>
                    
214<!--
                    
214<!--
                    
215  <li><a target="_blank" href="http://cfpython.bitbucket.org">cf-python</a> &raquo;</li>
                    
216  <li><select onchange="location = this.options[this.selectedIndex].value;">
                    
                
cf.Field.remove_axes.html https://bitbucket.org/cfpython/cfpython.bitbucket.org.git | HTML | 287 lines
                    
46  <li><a target="_blank" href="../../archive.html">Archive</a> &laquo;</li>
                    
47  <li><a target="_blank" href="http://cfpython.bitbucket.org">cf-python 1.2.3</a> &raquo;</li>
                    
48<!--
                    
48<!--
                    
49  <li><a target="_blank" href="http://cfpython.bitbucket.org">cf-python</a> &raquo;</li>
                    
50  <li><select onchange="location = this.options[this.selectedIndex].value;">
                    
80<dt id="cf.Field.remove_axes">
                    
81<code class="descclassname">Field.</code><code class="descname">remove_axes</code><span class="sig-paren">(</span><em>axes=None</em>, <em>size=None</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="reference external" href="https://bitbucket.org/cfpython/cf-python/src/v1.2.3/cf/field.py#field.py-10332"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#cf.Field.remove_axes" title="Permalink to this definition">Âś</a></dt>
                    
82<dd><p>Remove and return axes from the field.</p>
                    
256  <li><a target="_blank" href="../../archive.html">Archive</a> &laquo;</li>
                    
257  <li><a target="_blank" href="http://cfpython.bitbucket.org">cf-python 1.2.3</a> &raquo;</li>
                    
258<!--
                    
258<!--
                    
259  <li><a target="_blank" href="http://cfpython.bitbucket.org">cf-python</a> &raquo;</li>
                    
260  <li><select onchange="location = this.options[this.selectedIndex].value;">
                    
                
bitbucket_server_controller.rb https://gitlab.com/markglenfletcher/gitlab-ee | Ruby | 156 lines
                    
20  VALID_BITBUCKET_PROJECT_CHARS = /\A~?[\w\-\.\s]+\z/.freeze
                    
21  VALID_BITBUCKET_CHARS = /\A[\w\-\.\s]+\z/.freeze
                    
22
                    
26  def create
                    
27    repo = bitbucket_client.repo(@project_key, @repo_slug)
                    
28
                    
53    session[personal_access_token_key] = params[:personal_access_token]
                    
54    session[bitbucket_server_username_key] = params[:bitbucket_username]
                    
55    session[bitbucket_server_url_key] = params[:bitbucket_server_url]
                    
89  def bitbucket_client
                    
90    @bitbucket_client ||= BitbucketServer::Client.new(credentials)
                    
91  end
                    
98    return render_validation_error('Missing repository slug') unless @repo_slug.present?
                    
99    return render_validation_error('Invalid project key') unless @project_key =~ VALID_BITBUCKET_PROJECT_CHARS
                    
100    return render_validation_error('Invalid repository slug') unless @repo_slug =~ VALID_BITBUCKET_CHARS
                    
                
Getting-Started-with-NuGet.markdown https://gitlab.com/yenny.prathivi/MyGetDocs | Markdown | 126 lines
                    
80
                    
81MyGet supports many ways of integrating with hosted VCS or CI infrastructure, including built-in support for Visual Studio Online, GitHub and BitBucket, as well as any other hosted Git repository. For a full reference of MyGet Build Services, please take a look [here][3].
                    
82
                    
                
 

Source

Language