Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for Bitbucket (0.31 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    Certain import paths also
    describe how to obtain the source code for the package using
    a revision control system.
    
    A few common code hosting sites have special syntax:
    
    	Bitbucket (Git, Mercurial)
    
    		import "bitbucket.org/user/project"
    		import "bitbucket.org/user/project/sub/directory"
    
    	GitHub (Git)
    
    		import "github.com/user/project"
    		import "github.com/user/project/sub/directory"
    
    	Launchpad (Bazaar)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. go.mod

    // Run hack/pin-dependency.sh to change pinned dependency versions.
    // Run hack/update-vendor.sh to update go.mod files and the vendor directory.
    
    module k8s.io/kubernetes
    
    go 1.22.0
    
    require (
    	bitbucket.org/bertimus9/systemstat v0.5.0
    	github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab
    	github.com/Microsoft/go-winio v0.6.0
    	github.com/Microsoft/hcsshim v0.8.25
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/main.go

    // Inferno utils/6l/obj.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/obj.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcs/vcs.go

    		vcs:        "git",
    		repo:       "https://{root}",
    		check:      noVCSSuffix,
    	},
    
    	// Bitbucket
    	{
    		pathPrefix: "bitbucket.org",
    		regexp:     lazyregexp.New(`^(?P<root>bitbucket\.org/(?P<bitname>[\w.\-]+/[\w.\-]+))(/[\w.\-]+)*$`),
    		vcs:        "git",
    		repo:       "https://{root}",
    		check:      noVCSSuffix,
    	},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  5. src/runtime/memmove_amd64.s

    // Derived from Inferno's libkern/memmove-386.s (adapted for amd64)
    // https://bitbucket.org/inferno-os/inferno-os/src/master/libkern/memmove-386.s
    //
    //         Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
    //         Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com).  All rights reserved.
    //         Portions Copyright 2009 The Go Authors. All rights reserved.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/a.out.go

    // cmd/7c/7.out.h  from Vita Nuova.
    // https://bitbucket.org/plan9-from-bell-labs/9-cc/src/master/src/cmd/7c/7.out.h
    //
    // 	Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
    // 	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    // 	Portions Copyright © 1997-1999 Vita Nuova Limited
    // 	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    // 	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/reloctype.go

    // Derived from Inferno utils/6l/l.h and related files.
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/l.h
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/amd64/asm.go

    // Inferno utils/6l/asm.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/asm.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/obj5.go

    // Derived from Inferno utils/5c/swt.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5c/swt.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    bitbucket.org/abex/go-optional,v0.0.0-20150902044611-5304370459de,h1:iGmurCCO42qFsQ46DzROSsZJFf8/7AKFH/VpRGd2PBw=,02e1b23db09fb6945ba4ca57c0af8125b608fceae125fe625f6536b9e466e7e0
    bitbucket.org/abex/pathfinder,v0.0.0-20170507112819-bdce8b2efbc9,h1:M1jjfmrcOcmWy2/aABpm3k9h/M6NccmjgLtE5gVl+y8=,8469c0a656a895863d4714a658ee4a9634e78547142fa7239331e15d0143c679
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
Back to top