Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 539 for libname (0.21 sec)

  1. bin/update_ztunnel.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -e
    
    UPDATE_BRANCH=${UPDATE_BRANCH:-"master"}
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    # Get the sha of top commit
    # $1 = repo
    function getSha() {
      local dir result
      dir=$(mktemp -d)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 11 17:50:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. pkg/volume/util/device_util_linux.go

    				// Connections are of the format "connection%d:%u"
    				// See drivers/scsi/scsi_transport_iscsi.c in Linux
    				dirName := dir2.Name()
    				if !strings.HasPrefix(dirName, "connection") {
    					continue
    				}
    
    				connectionPath := sessionPath + "/" + dirName + "/iscsi_connection/" + dirName
    
    				// Read the current and persistent portal information for the connection.
    				addrPath := connectionPath + "/address"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  3. hack/update-internal-modules.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # These are "internal" modules.  For various reasons, we want them to be
    # decoupled from their parent modules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/internal/cpu/cpu_arm64_darwin.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build arm64 && darwin && !ios
    
    package cpu
    
    import _ "unsafe" // for linkname
    
    func osInit() {
    	ARM64.HasATOMICS = sysctlEnabled([]byte("hw.optional.armv8_1_atomics\x00"))
    	ARM64.HasCRC32 = sysctlEnabled([]byte("hw.optional.armv8_crc32\x00"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/internal/testlog/exit.go

    // Copyright 2020 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.
    
    package testlog
    
    import (
    	"sync"
    	_ "unsafe" // for linkname
    )
    
    // PanicOnExit0 reports whether to panic on a call to os.Exit(0).
    // This is in the testlog package because, like other definitions in
    // package testlog, it is a hook between the testing package and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. bin/update_deps.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -exo pipefail
    
    UPDATE_BRANCH=${UPDATE_BRANCH:-"master"}
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    # Get the sha of top commit
    # $1 = repo
    function getSha() {
      git ls-remote "https://github.com/istio/${1}.git" "refs/heads/${UPDATE_BRANCH}" | cut -f 1
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/io/ioutil/ioutil.go

    //
    //	entries, err := os.ReadDir(dirname)
    //	if err != nil { ... }
    //	infos := make([]fs.FileInfo, 0, len(entries))
    //	for _, entry := range entries {
    //		info, err := entry.Info()
    //		if err != nil { ... }
    //		infos = append(infos, info)
    //	}
    func ReadDir(dirname string) ([]fs.FileInfo, error) {
    	f, err := os.Open(dirname)
    	if err != nil {
    		return nil, err
    	}
    	list, err := f.Readdir(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/testing/fake.go

    	res := sets.New[string]()
    	for linkName := range h.localAddresses {
    		if linkName == dev {
    			continue
    		}
    		for _, addr := range h.localAddresses[linkName] {
    			if h.isValidForSet(addr) {
    				res.Insert(addr)
    			}
    		}
    	}
    	return res, nil
    }
    
    // SetLocalAddresses set IP addresses to the given interface device.  It's not part of interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/examples/pad/ops_defs.py

      else:
        assert FLAGS.output.endswith('.mlir')
        generated_code = tfr_gen_from_module(sys.modules[__name__], '_composite_')
    
      dirname = os.path.dirname(FLAGS.output)
      if not os.path.exists(dirname):
        os.makedirs(dirname)
      with open(FLAGS.output, 'w') as f:
        f.write(generated_code)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 01 05:00:29 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/probe.go

    	}
    	for _, f := range files {
    		// only directories with names that do not begin with '.' are counted as plugins
    		// and pluginDir/dirname/dirname should be an executable
    		// unless dirname contains '~' for escaping namespace
    		// e.g. dirname = vendor~cifs
    		// then, executable will be pluginDir/dirname/cifs
    		if f.IsDir() && filepath.Base(f.Name())[0] != '.' {
    			probeEvent, pluginErr := prober.newProbeEvent(f.Name(), volume.ProbeAddOrUpdate)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top