Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 539 for libname (0.11 sec)

  1. tools/build-base-images.sh

    # This script runs go tests in a package, but each test is run individually. This helps
    # isolate tests that are improperly depending on global state modification of other tests
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    set -ex
    
    toJson () {
            python3 -c '
    import sys, yaml, json
    yml = list(y for y in yaml.safe_load_all(sys.stdin) if y)
    if len(yml) == 1: yml = yml[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. configure

    #!/usr/bin/env bash
    
    set -e
    set -o pipefail
    
    if [ -z "$PYTHON_BIN_PATH" ]; then
      PYTHON_BIN_PATH=$(which python3 || which python || true)
    fi
    
    # Set all env variables
    CONFIGURE_DIR=$(dirname "$0")
    "$PYTHON_BIN_PATH" "${CONFIGURE_DIR}/configure.py" "$@"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 12 14:04:24 UTC 2020
    - 285 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

        @Issue('GRADLE-3511')
        def 'Filename #filename is properly masked when adding it as #antType to an ant task'(String filename, antType) {
            given:
            def dirname = 'somedir$$with'
            def dirAndFile = "${dirname}/${filename}"
            project.file(dirname).mkdir()
            File fileWithDollars = project.file(dirAndFile)
            fileWithDollars << "Some Text"
            FileCollection files = project.getLayout().files(dirAndFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  4. hack/verify-licenses.sh

            continue
        fi
    
        # The URL 404'ed.  Try parent-paths.
    
        #echo -e "DBG: err 404 ${LICENSE_URL}"
        dir="$(dirname "${LICENSE_URL}")"
        file="$(basename "${LICENSE_URL}")"
    
        while [[ "${dir}" != "." ]]; do
            dir="$(dirname "${dir}")"
            #echo "DBG:     try ${dir}/${file}"
            if [[ "$(http_code "${dir}/${file}")" != 404 ]]; then
                #echo "DBG:         it worked"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/internal/syscall/unix/getentropy_openbsd.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build openbsd && !mips64
    
    package unix
    
    import _ "unsafe" // for linkname
    
    // GetEntropy calls the OpenBSD getentropy system call.
    func GetEntropy(p []byte) error {
    	return getentropy(p)
    }
    
    //go:linkname getentropy syscall.getentropy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 16:59:38 UTC 2022
    - 431 bytes
    - Viewed (0)
  6. src/debug/dwarf/line.go

    	}
    	if !(strings.HasSuffix(dirname, "/") || strings.HasSuffix(dirname, `\`)) && dirname != "" {
    		sep := `\`
    		if strings.HasPrefix(dirname, "/") {
    			sep = `/`
    		}
    		dirname += sep
    	}
    	return drive + dirname + filename
    }
    
    // splitDrive splits the DOS drive letter or UNC share point from
    // path, if any. path == drive + rest
    func splitDrive(path string) (drive, rest string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. pkg/volume/fc/fc_util.go

    )
    
    type ioHandler interface {
    	ReadDir(dirname string) ([]os.FileInfo, error)
    	Lstat(name string) (os.FileInfo, error)
    	EvalSymlinks(path string) (string, error)
    	WriteFile(filename string, data []byte, perm os.FileMode) error
    }
    
    type osIOHandler struct{}
    
    const (
    	byPath = "/dev/disk/by-path/"
    	byID   = "/dev/disk/by-id/"
    )
    
    func (handler *osIOHandler) ReadDir(dirname string) ([]os.FileInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  8. src/cmd/link/testdata/linkname/coro_var.go

    // Copyright 2024 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.
    
    // Linkname "var" to reference newcoro is not allowed.
    
    package main
    
    import "unsafe"
    
    func main() {
    	call(&newcoro)
    }
    
    //go:linkname newcoro runtime.newcoro
    var newcoro unsafe.Pointer
    
    //go:noinline
    func call(*unsafe.Pointer) {
    	// not implemented
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 411 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/route/syscall.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin || dragonfly || freebsd || netbsd || openbsd
    
    package route
    
    import _ "unsafe" // for linkname
    
    //go:linkname sysctl syscall.sysctl
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 396 bytes
    - Viewed (0)
  10. buildscripts/checkdeps.sh

    ##
    ## readlink() {
    ##     return /bin/readlink -f "$1"
    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    	cd $(dirname $TARGET_FILE)
    	TARGET_FILE=$(basename $TARGET_FILE)
    
    	# Iterate down a (possible) chain of symlinks
    	while [ -L "$TARGET_FILE" ]; do
    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top