Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Script (0.17 sec)

  1. doc/next/7-ports.md

    Go 1.23 requires macOS 11 Big Sur or later;
    support for previous versions has been discontinued.
    
    ### Wasm {#wasm}
    
    <!-- go.dev/issue/63718 -->
    The `go_wasip1_wasm_exec` script in `GOROOT/misc/wasm` has dropped support
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 17:09:10 GMT 2024
    - 385 bytes
    - Viewed (0)
  2. src/bootstrap.bash

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # When run as (for example)
    #
    #	GOOS=linux GOARCH=ppc64 bootstrap.bash
    #
    # this script cross-compiles a toolchain for that GOOS/GOARCH
    # combination, leaving the resulting tree in ../../go-${GOOS}-${GOARCH}-bootstrap.
    # That tree can be copied to a machine of the given target type
    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. 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
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 02 18:20:41 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/archive/zip/reader.go

    type Reader struct {
    	r             io.ReaderAt
    	File          []*File
    	Comment       string
    	decompressors map[uint16]Decompressor
    
    	// Some JAR files are zip files with a prefix that is a bash script.
    	// The baseOffset field is the start of the zip file proper.
    	baseOffset int64
    
    	// fileList is a list of files sorted by ename,
    	// for use by the Open method.
    	fileListOnce sync.Once
    	fileList     []fileListEntry
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  5. src/buildall.bash

    #
    # Originally the Go build system used it as a smoke test to quickly
    # flag portability issues in builders named "misc-compile" or "all-compile".
    # As of CL 464955, the build system uses make.bash -compile-only instead,
    # so this script no longer runs in any automated fashion.
    #
    # Options:
    #   -e: stop at first failure
    
    if [ ! -f run.bash ]; then
    	echo 'buildall.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    
    sete=false
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 23 17:45:23 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg log/syslog (darwin-arm64), const LOG_AUTHPRIV = 80
    pkg log/syslog (darwin-arm64), const LOG_AUTHPRIV Priority
    pkg log/syslog (darwin-arm64), const LOG_CRIT = 2
    pkg log/syslog (darwin-arm64), const LOG_CRIT Priority
    pkg log/syslog (darwin-arm64), const LOG_CRON = 72
    pkg log/syslog (darwin-arm64), const LOG_CRON Priority
    pkg log/syslog (darwin-arm64), const LOG_DAEMON = 24
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg log/syslog (freebsd-arm64), const LOG_AUTHPRIV = 80
    pkg log/syslog (freebsd-arm64), const LOG_AUTHPRIV Priority
    pkg log/syslog (freebsd-arm64), const LOG_CRIT = 2
    pkg log/syslog (freebsd-arm64), const LOG_CRIT Priority
    pkg log/syslog (freebsd-arm64), const LOG_CRON = 72
    pkg log/syslog (freebsd-arm64), const LOG_CRON Priority
    pkg log/syslog (freebsd-arm64), const LOG_DAEMON = 24
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  8. api/go1.20.txt

    pkg log/syslog (freebsd-riscv64), const LOG_AUTHPRIV = 80 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_AUTHPRIV Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_CRIT = 2 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_CRIT Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_CRON = 72 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_CRON Priority #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
Back to top