Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for imms (0.04 sec)

  1. src/internal/runtime/atomic/atomic_386.s

    	CALL	·panicUnaligned(SB)
    	MOVQ	(AX), M0
    	MOVQ	M0, ret+4(FP)
    	EMMS
    	RET
    
    // void ·Store64(uint64 volatile* addr, uint64 v);
    TEXT ·Store64(SB), NOSPLIT, $0-12
    	NO_LOCAL_POINTERS
    	MOVL	ptr+0(FP), AX
    	TESTL	$7, AX
    	JZ	2(PC)
    	CALL	·panicUnaligned(SB)
    	// MOVQ and EMMS were introduced on the Pentium MMX.
    	MOVQ	val+4(FP), M0
    	MOVQ	M0, (AX)
    	EMMS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. tests/integration/pilot/vm_test.go

    )
    
    func GetAdditionVMImages(t framework.TestContext) []string {
    	var out []echo.VMDistro
    	imgs := kube.VMImages
    	if t.Environment().(*kubeenv.Environment).Settings().Architecture == kubeenv.ArchARM64 {
    		imgs = kube.ArmVMImages
    	}
    	for distro, image := range imgs {
    		if distro == echo.DefaultVMDistro {
    			continue
    		}
    		out = append(out, image)
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crd/conversion.go

    			CreationTimestamp: metav1.NewTime(cfg.CreationTimestamp),
    		},
    		Spec:   spec,
    		Status: status,
    	}, nil
    }
    
    // TODO - add special cases for type-to-kind and kind-to-type
    // conversions with initial-isms. Consider adding additional type
    // information to the abstract model and/or elevating k8s
    // representation to first-class type to avoid extra conversions.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top