Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 2014 (0.03 sec)

  1. src/make.rc

    #!/bin/rc -e
    # Copyright 2012 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # See golang.org/s/go15bootstrap for an overview of the build process.
    
    # Environment variables that control make.rc:
    #
    # GOHOSTARCH: The architecture for host tools (compilers and
    # binaries).  Binaries of this type must be executable on the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. lib/time/update.bash

    #!/bin/bash
    # Copyright 2012 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # This script rebuilds the time zone files using files
    # downloaded from the ICANN/IANA distribution.
    #
    # To prepare an update for a new Go release,
    # consult https://www.iana.org/time-zones for the latest versions,
    # update CODE and DATA below, and then run
    #
    #	./update.bash -commit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/run.rc

    #!/bin/rc -e
    # Copyright 2012 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    rfork e
    
    if(! test -f ../bin/go){
    	echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2]
    	exit wrongdir
    }
    
    GOENV=off
    eval `{../bin/go tool dist env}
    
    GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 406 bytes
    - Viewed (0)
  4. src/race.bash

    #!/usr/bin/env bash
    # Copyright 2013 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # race.bash tests the standard library under the race detector.
    # https://golang.org/doc/articles/race_detector.html
    
    set -e
    
    function usage {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 14:17:20 UTC 2022
    - 919 bytes
    - Viewed (0)
Back to top