Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for light (0.1 sec)

  1. src/cmd/compile/internal/ssa/rewritegeneric.go

    		}
    		break
    	}
    	// match: (Add16 right:(Rsh16Ux64 x y) left:(Lsh16x64 x z:(Sub64 (Const64 [16]) y)))
    	// cond: (shiftIsBounded(left) || shiftIsBounded(right)) && canRotate(config, 16)
    	// result: (RotateLeft16 x z)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			right := v_0
    			if right.Op != OpRsh16Ux64 {
    				continue
    			}
    			y := right.Args[1]
    			x := right.Args[0]
    			left := v_1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation_test.go

    				EphemeralContainers: ephemeralContainers,
    				RestartPolicy:       core.RestartPolicyOnFailure,
    			},
    		}
    	}
    
    	// Some tests use Windows host pods as an example of fields that might
    	// conflict between an ephemeral container and the rest of the pod.
    	capabilities.SetForTests(capabilities.Capabilities{
    		AllowPrivileged: true,
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top