Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 110 for syso (0.04 sec)

  1. src/embed/embed.go

    func (f *file) ModTime() time.Time         { return time.Time{} }
    func (f *file) IsDir() bool                { _, _, isDir := split(f.name); return isDir }
    func (f *file) Sys() any                   { return nil }
    func (f *file) Type() fs.FileMode          { return f.Mode().Type() }
    func (f *file) Info() (fs.FileInfo, error) { return f, nil }
    
    func (f *file) Mode() fs.FileMode {
    	if f.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    // THE SOFTWARE.
    
    package obj
    
    import (
    	"bufio"
    	"cmd/internal/dwarf"
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"cmd/internal/sys"
    	"encoding/binary"
    	"fmt"
    	"internal/abi"
    	"sync"
    	"sync/atomic"
    )
    
    // An Addr is an argument to an instruction.
    // The general forms and their encodings are:
    //
    //	sym±offset(symkind)(reg)(index*scale)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net_test.go

    // limitations under the License.
    
    package nodeagent
    
    import (
    	"context"
    	"errors"
    	"net/netip"
    	"runtime"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"golang.org/x/sys/unix"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/intstr"
    
    	"istio.io/istio/cni/pkg/ipset"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux.go

    //sys	Fallocate(fd int, mode uint32, off int64, len int64) (err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    //sys	Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error)
    //sys	fcntl(fd int, cmd int, arg int) (val int, err error)
    //sys	Fdatasync(fd int) (err error)
    //sys	Flock(fd int, how int) (err error)
    //sys	Fsync(fd int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. pkg/proxy/util/nfacct/nfacct_linux_test.go

    limitations under the License.
    */
    
    package nfacct
    
    import (
    	"syscall"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/vishvananda/netlink/nl"
    	"golang.org/x/sys/unix"
    )
    
    // fakeHandler is a mock implementation of the handler interface, designed for testing.
    type fakeHandler struct {
    	// requests stores instances of fakeRequest, capturing new requests.
    	requests []*fakeRequest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. src/path/filepath/path.go

    // occurrences of "/" with `\`.
    // For example, Clean("//host/share/../x") returns `\\host\share\x`.
    //
    // See also Rob Pike, “Lexical File Names in Plan 9 or
    // Getting Dot-Dot Right,”
    // https://9p.io/sys/doc/lexnames.html
    func Clean(path string) string {
    	return filepathlite.Clean(path)
    }
    
    // IsLocal reports whether path, using lexical analysis only, has all of these properties:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/preflight/checks.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/initsystem"
    	utilruntime "k8s.io/kubernetes/cmd/kubeadm/app/util/runtime"
    )
    
    const (
    	ipv4Forward                 = "/proc/sys/net/ipv4/ip_forward"
    	ipv6DefaultForwarding       = "/proc/sys/net/ipv6/conf/default/forwarding"
    	externalEtcdRequestTimeout  = 10 * time.Second
    	externalEtcdRequestRetries  = 3
    	externalEtcdRequestInterval = 5 * time.Second
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_
    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_
    
    #include "gtest/internal/gtest-port.h"
    
    #if GTEST_OS_LINUX
    # include <stdlib.h>
    # include <sys/types.h>
    # include <sys/wait.h>
    # include <unistd.h>
    #endif  // GTEST_OS_LINUX
    
    #if GTEST_HAS_EXCEPTIONS
    # include <stdexcept>
    #endif
    
    #include <ctype.h>
    #include <float.h>
    #include <string.h>
    #include <iomanip>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  9. cmd/erasure-multipart.go

    }
    
    // newMultipartUpload - wrapper for initializing a new multipart
    // request; returns a unique upload id.
    //
    // Internally this function creates 'uploads.json' associated for the
    // incoming object at
    // '.minio.sys/multipart/bucket/object/uploads.json' on all the
    // disks. `uploads.json` carries metadata regarding on-going multipart
    // operation(s) on the object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_ppc64x.s

    // Copyright 2014 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.
    
    //go:build linux && (ppc64 || ppc64le)
    
    //
    // System calls and other sys.stuff for ppc64, Linux
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    #include "asm_ppc64x.h"
    #include "cgo/abi_ppc64x.h"
    
    #define SYS_exit		  1
    #define SYS_read		  3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top