Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for banner (0.23 sec)

  1. src/all.bat

    make.bat goto ok
    L10:echo all.bat must be run from go\src
    L11::: cannot exit: would kill parent command interpreter
    L12:goto end
    L13::ok
    L14:
    L15:call .\make.bat --no-banner --no-local
    L16:if %GOBUILDFAIL%==1 goto end
    L17:call .\run.bat --no-rebuild --no-local
    L18:if %GOBUILDFAIL%==1 goto end
    L19:"%GOTOOLDIR%/dist" banner
    L20:
    L21::end
    L22:if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL%
    ...
    Batch File
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 19 14:36:22 GMT 2023
    - 543 bytes
    - Viewed (0)
  2. src/bootstrap.bash

    cd "$targ"
    echo
    echo "#### Cleaning $targ"
    chmod -R +w .
    rm -f .gitignore
    if [ -e .git ]; then
    	git clean -f -d
    fi
    echo
    echo "#### Building $targ"
    echo
    cd src
    ./make.bash --no-banner $forceflag
    gohostos="$(../bin/go env GOHOSTOS)"
    gohostarch="$(../bin/go env GOHOSTARCH)"
    goos="$(../bin/go env GOOS)"
    goarch="$(../bin/go env GOARCH)"
    
    # NOTE: Cannot invoke go command after this point.
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Jan 20 17:52:26 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  3. src/all.bash

    # license that can be found in the LICENSE file.
    
    set -e
    if [ ! -f make.bash ]; then
    	echo 'all.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    . ./make.bash "$@" --no-banner
    bash run.bash --no-rebuild
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 11 19:53:58 GMT 2024
    - 377 bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const DLT_AX25_KISS = 202
    pkg syscall (netbsd-arm64-cgo), const DLT_AX25_KISS ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_BACNET_MS_TP = 165
    pkg syscall (netbsd-arm64-cgo), const DLT_BACNET_MS_TP ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4 = 187
    pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  5. src/all.rc

    # license that can be found in the LICENSE file.
    
    rfork n
    
    if(! test -f make.rc){
    	echo 'all.rc must be run from $GOROOT/src' >[1=2]
    	exit wrongdir
    }
    
    . ./make.rc --no-banner $*
    bind -b $GOROOT/bin /bin
    ./run.rc --no-rebuild
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 20 04:53:46 GMT 2020
    - 388 bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg text/scanner, const Char = -5
    pkg text/scanner, const Comment = -8
    pkg text/scanner, const EOF = -1
    pkg text/scanner, const Float = -4
    pkg text/scanner, const GoTokens = 1012
    pkg text/scanner, const GoWhitespace = 4294977024
    pkg text/scanner, const Ident = -2
    pkg text/scanner, const Int = -3
    pkg text/scanner, const RawString = -7
    pkg text/scanner, const ScanChars = 32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const DLT_AURORA ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_AX25 ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_AX25_KISS ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_BACNET_MS_TP ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_CAN20B ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  8. src/bytes/example_test.go

    	}
    	show("Gopher", "Go")
    	show("Gopher", "ph")
    	show("Gopher", "er")
    	show("Gopher", "Badger")
    	// Output:
    	// Cut("Gopher", "Go") = "", "pher", true
    	// Cut("Gopher", "ph") = "Go", "er", true
    	// Cut("Gopher", "er") = "Goph", "", true
    	// Cut("Gopher", "Badger") = "Gopher", "", false
    }
    
    func ExampleCutPrefix() {
    	show := func(s, sep string) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
  9. src/archive/tar/common.go

    // license that can be found in the LICENSE file.
    
    // Package tar implements access to tar archives.
    //
    // Tape archives (tar) are a file format for storing a sequence of files that
    // can be read and written in a streaming manner.
    // This package aims to cover most variations of the format,
    // including those produced by GNU and BSD tar tools.
    package tar
    
    import (
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"io/fs"
    	"math"
    	"path"
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), const DLT_AX25_KISS = 202
    pkg syscall (freebsd-arm64), const DLT_AX25_KISS ideal-int
    pkg syscall (freebsd-arm64), const DLT_BACNET_MS_TP = 165
    pkg syscall (freebsd-arm64), const DLT_BACNET_MS_TP ideal-int
    pkg syscall (freebsd-arm64), const DLT_BLUETOOTH_HCI_H4 = 187
    pkg syscall (freebsd-arm64), const DLT_BLUETOOTH_HCI_H4 ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top