Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 220 for Sysname (0.22 sec)

  1. api/go1.txt

    pkg syscall (linux-386), type Utsname struct
    pkg syscall (linux-386), type Utsname struct, Domainname [65]int8
    pkg syscall (linux-386), type Utsname struct, Machine [65]int8
    pkg syscall (linux-386), type Utsname struct, Nodename [65]int8
    pkg syscall (linux-386), type Utsname struct, Release [65]int8
    pkg syscall (linux-386), type Utsname struct, Sysname [65]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <sys/socket.h>
    #include <sys/stat.h>
    #include <sys/un.h>
    #include <sys/sockio.h>
    #include <sys/sys_domain.h>
    #include <sys/sysctl.h>
    #include <sys/mman.h>
    #include <sys/mount.h>
    #include <sys/utsname.h>
    #include <sys/wait.h>
    #include <sys/xattr.h>
    #include <sys/vsock.h>
    #include <net/bpf.h>
    #include <net/if.h>
    #include <net/if_types.h>
    #include <net/route.h>
    #include <netinet/in.h>
    #include <netinet/ip.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/syscall/exec_linux.go

    	CLONE_CHILD_SETTID   = 0x01000000 // set the TID in the child
    	CLONE_NEWCGROUP      = 0x02000000 // New cgroup namespace
    	CLONE_NEWUTS         = 0x04000000 // New utsname namespace
    	CLONE_NEWIPC         = 0x08000000 // New ipc namespace
    	CLONE_NEWUSER        = 0x10000000 // New user namespace
    	CLONE_NEWPID         = 0x20000000 // New pid namespace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			hasNames, err := HasNames(tt.args)
    			if !reflect.DeepEqual(tt.expectedError, err) {
    				t.Errorf("expected HasName to error:\n%s\tgot:\n%s", tt.expectedError, err)
    			}
    			if hasNames != tt.expectedHasName {
    				t.Errorf("expected HasName to return %v for %s", tt.expectedHasName, tt.args)
    			}
    		})
    	}
    }
    
    func TestUnstructured(t *testing.T) {
    	// create test dirs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  5. src/internal/abi/type.go

    	// escape types. noescape here help avoid unnecessary escape
    	// of v.
    	return (*Type)(NoEscape(unsafe.Pointer(eface.Type)))
    }
    
    func (t *Type) Kind() Kind { return t.Kind_ & KindMask }
    
    func (t *Type) HasName() bool {
    	return t.TFlag&TFlagNamed != 0
    }
    
    // Pointers reports whether t contains pointers.
    func (t *Type) Pointers() bool { return t.PtrBytes != 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	ret = r0 != 0
    	return
    }
    
    func RtlDosPathNameToNtPathName(dosName *uint16, ntName *NTUnicodeString, ntFileNamePart *uint16, relativeName *RTL_RELATIVE_NAME) (ntstatus error) {
    	r0, _, _ := syscall.Syscall6(procRtlDosPathNameToNtPathName_U_WithStatus.Addr(), 4, uintptr(unsafe.Pointer(dosName)), uintptr(unsafe.Pointer(ntName)), uintptr(unsafe.Pointer(ntFileNamePart)), uintptr(unsafe.Pointer(relativeName)), 0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	// x's type V is identical to T?
    	if T == V {
    		return true
    	}
    
    	// Otherwise at least one of T and V must not be defined
    	// and they must have the same kind.
    	if T.HasName() && V.HasName() || T.Kind() != V.Kind() {
    		return false
    	}
    
    	if T.Kind() == abi.Chan && specialChannelAssignability(T, V) {
    		return true
    	}
    
    	// x's type T and V must have identical underlying types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	RtlDosPathNameToNtPathName(dosName *uint16, ntName *NTUnicodeString, ntFileNamePart *uint16, relativeName *RTL_RELATIVE_NAME) (ntstatus error) = ntdll.RtlDosPathNameToNtPathName_U_WithStatus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/sidecar.go

    	for _, h := range istioListener.Hosts {
    		parts := strings.SplitN(h, "/", 2)
    		if len(parts) < 2 {
    			log.Errorf("Illegal host in sidecar resource: %s, host must be of form namespace/dnsName", h)
    			continue
    		}
    		if parts[0] == currentNamespace {
    			parts[0] = configNamespace
    		}
    
    		ns := parts[0]
    		hName := host.Name(parts[1])
    		if _, exists := hostsByNamespace[ns]; !exists {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    // function pointers.
    func certPoolEqual(a, b *CertPool) bool {
    	if (a != nil) != (b != nil) {
    		return false
    	}
    	if a == nil {
    		return true
    	}
    	if !reflect.DeepEqual(a.byName, b.byName) ||
    		len(a.lazyCerts) != len(b.lazyCerts) {
    		return false
    	}
    	for i := range a.lazyCerts {
    		la, lb := a.lazyCerts[i], b.lazyCerts[i]
    		if !bytes.Equal(la.rawSubject, lb.rawSubject) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top