Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for KaCall (0.1 sec)

  1. pkg/kubelet/cm/devicemanager/topology_hints_test.go

    			continue
    		}
    
    		if len(allocated) != tc.request {
    			t.Errorf("%v. expected allocation size: %v but got: %v", tc.description, tc.request, len(allocated))
    		}
    
    		if !allocated.HasAll(tc.expectedPreferredAllocation...) {
    			t.Errorf("%v. expected preferred allocation: %v but not present in: %v", tc.description, tc.expectedPreferredAllocation, allocated.UnsortedList())
    		}
    
    		alignment := make(map[int]int)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    // However, the majority of opcodes are arch-specific
    // and are declared in their respective architecture's subpackage.
    type As int16
    
    // These are the portable opcodes.
    const (
    	AXXX As = iota
    	ACALL
    	ADUFFCOPY
    	ADUFFZERO
    	AEND
    	AFUNCDATA
    	AJMP
    	ANOP
    	APCALIGN
    	APCALIGNMAX // currently x86, amd64 and arm64
    	APCDATA
    	ARET
    	AGETCALLERPC
    	ATEXT
    	AUNDEF
    	A_ARCHSPECIFIC
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top