Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 198 for hardware (0.14 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    	if len(name) >= IFNAMSIZ {
    		return nil, EINVAL
    	}
    
    	var ifr ifreq
    	copy(ifr.Ifrn[:], name)
    
    	return &Ifreq{raw: ifr}, nil
    }
    
    // TODO(mdlayher): get/set methods for hardware address sockaddr, char array, etc.
    
    // Name returns the interface name associated with the Ifreq.
    func (ifr *Ifreq) Name() string {
    	return ByteSliceToString(ifr.raw.Ifrn[:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/a.out.go

    	AMOVW
    
    	AMOVWD
    	AMOVWF
    
    	AMOVWL
    	AMOVWR
    
    	AMUL
    	AMULD
    	AMULF
    	AMULU
    	AMULH
    	AMULHU
    	AMULW
    	ANEGD
    	ANEGF
    
    	ANEGW
    	ANEGV
    
    	ANOOP // hardware nop
    	ANOR
    	AOR
    	AREM
    	AREMU
    
    	ARFE
    
    	ASC
    	ASCV
    
    	ASGT
    	ASGTU
    
    	ASLL
    	ASQRTD
    	ASQRTF
    	ASRA
    	ASRL
    	AROTR
    	ASUB
    	ASUBD
    	ASUBF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	//
    	// +listType=atomic
    	Instances []NamedResourcesInstance `json:"instances" protobuf:"bytes,1,name=instances"`
    }
    
    // NamedResourcesInstance represents one individual hardware instance that can be selected based
    // on its attributes.
    type NamedResourcesInstance struct {
    	// Name is unique identifier among all resource instances managed by
    	// the driver on the node. It must be a DNS subdomain.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. .github/workflows/build.yml

            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Enable KVM group perms
            # https://github.blog/changelog/2023-02-23-hardware-accelerated-android-virtualization-on-actions-windows-and-linux-larger-hosted-runners/
            run: |
              echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. test/nilptr3.go

    	_ = *empty1p    // ERROR "generated nil check"
    }
    
    func fx10k() *[10000]int
    
    var b bool
    
    func f3(x *[10000]int) {
    	// Using a huge type and huge offsets so the compiler
    	// does not expect the memory hardware to fault.
    	_ = x[9999] // ERROR "generated nil check"
    
    	for {
    		if x[9999] != 0 { // ERROR "removed nil check"
    			break
    		}
    	}
    
    	x = fx10k()
    	_ = x[9999] // ERROR "generated nil check"
    	if b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. src/net/interface_linux.go

    	for _, a := range attrs {
    		switch a.Attr.Type {
    		case syscall.IFLA_ADDRESS:
    			// We never return any /32 or /128 IP address
    			// prefix on any IP tunnel interface as the
    			// hardware address.
    			switch len(a.Value) {
    			case IPv4len:
    				switch ifim.Type {
    				case sysARPHardwareIPv4IPv4, sysARPHardwareGREIPv4, sysARPHardwareIPv6IPv4:
    					continue
    				}
    			case IPv6len:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 7K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      of the Contribution causes such combination to be covered by the
      Licensed Patents. The patent license shall not apply to any other
      combinations which include the Contribution. No hardware per se is
      licensed hereunder.
    
      c) Recipient understands that although each Contributor grants the
      licenses to its Contributions set forth herein, no assurances are
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/hash/crc32/crc32_amd64.go

    // Copyright 2011 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.
    
    // AMD64-specific hardware-assisted CRC32 algorithms. See crc32.go for a
    // description of the interface that each architecture-specific file
    // implements.
    
    package crc32
    
    import (
    	"internal/cpu"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/mips/a.out.go

    	AMOVFD
    	AMOVFW
    	AMOVH
    	AMOVHU
    	AMOVW
    	AMOVWD
    	AMOVWF
    	AMOVWL
    	AMOVWR
    	AMSUB
    	AMUL
    	AMULD
    	AMULF
    	AMULU
    	AMULW
    	ANEGD
    	ANEGF
    	ANEGW
    	ANEGV
    	ANOOP // hardware nop
    	ANOR
    	AOR
    	AREM
    	AREMU
    	ARFE
    	AROTR
    	AROTRV
    	ASC
    	ASCV
    	ASEB
    	ASEH
    	ASGT
    	ASGTU
    	ASLL
    	ASQRTD
    	ASQRTF
    	ASRA
    	ASRL
    	ASUB
    	ASUBD
    	ASUBF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. src/internal/cpu/cpu.go

    // those as well. The minimum processor requirement is POWER8 (ISA 2.07).
    // The struct is padded to avoid false sharing.
    var PPC64 struct {
    	_         CacheLinePad
    	HasDARN   bool // Hardware random number generator (requires kernel enablement)
    	HasSCV    bool // Syscall vectored (requires kernel enablement)
    	IsPOWER8  bool // ISA v2.07 (POWER8)
    	IsPOWER9  bool // ISA v3.00 (POWER9)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top