Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for xxperm (0.18 sec)

  1. src/cmd/internal/obj/ppc64/anames.go

    	"XXLAND",
    	"XXLANDC",
    	"XXLEQV",
    	"XXLNAND",
    	"XXLOR",
    	"XXLORC",
    	"XXLNOR",
    	"XXLORQ",
    	"XXLXOR",
    	"XXSEL",
    	"XXMRGHW",
    	"XXMRGLW",
    	"XXSPLTW",
    	"XXSPLTIB",
    	"XXPERM",
    	"XXPERMDI",
    	"XXSLDWI",
    	"XXBRQ",
    	"XXBRD",
    	"XXBRW",
    	"XXBRH",
    	"XSCVDPSP",
    	"XSCVSPDP",
    	"XSCVDPSPN",
    	"XSCVSPDPN",
    	"XVCVDPSP",
    	"XVCVSPDP",
    	"XSCVDPSXDS",
    	"XSCVDPSXWS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. operator/pkg/util/k8s_test.go

    		major        string
    		minor        string
    		expErr       bool
    		operatorYaml string
    	}{
    		{
    			major:        "1",
    			minor:        "16",
    			expErr:       false,
    			operatorYaml: o1,
    		},
    		{
    			major:        "1",
    			minor:        "22",
    			expErr:       true,
    			operatorYaml: o1,
    		},
    		{
    			major:        "1",
    			minor:        "23",
    			expErr:       false,
    			operatorYaml: o2,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/mergelocals_test.go

    			},
    			experr: true,
    		},
    	}
    
    	for k, testcase := range testcases {
    		mls, err := liveness.MakeMergeLocalsState(testcase.partition, testcase.vars)
    		t.Logf("tc %d err is %v\n", k, err)
    		if testcase.experr && err == nil {
    			t.Fatalf("tc:%d missing error mls %v", k, mls)
    		} else if !testcase.experr && err != nil {
    			t.Fatalf("tc:%d unexpected error mls %v", k, err)
    		}
    		if mls != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. test/chan/perm.go

    Robert Griesemer <******@****.***> 1625880417 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 14 23:33:46 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s

    	VMRGEW V4, V5, V29
    	VMRGEW V6, V7, V30
    
    	XXPERMDI VS32, VS34, $0, VS33
    	XXPERMDI VS32, VS34, $3, VS35
    	XXPERMDI VS59, VS60, $0, VS32
    	XXPERMDI VS59, VS60, $3, VS34
    
    	VMRGOW V4, V5, V4
    	VMRGOW V6, V7, V6
    
    	VMRGEW V8, V9, V27
    	VMRGEW V10, V11, V28
    
    	XXPERMDI VS36, VS38, $0, VS37
    	XXPERMDI VS36, VS38, $3, VS39
    	XXPERMDI VS61, VS62, $0, VS36
    	XXPERMDI VS61, VS62, $3, VS38
    
    	VMRGOW V8, V9, V8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/common_test.go

    			_, errors := isPrivileged.Check()
    			if len(errors) != 0 && len(tt.expectedErrNonRoot) != 0 {
    				expErr = tt.expectedErrNonRoot
    			}
    			if err != nil && !strings.Contains(err.Error(), expErr) {
    				t.Fatalf("enforceRequirements returned unexpected error, expected: %s, got %v", expErr, err)
    			}
    		})
    	}
    }
    
    func TestPrintConfiguration(t *testing.T) {
    	var tests = []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/addons/proxy/proxy_test.go

    			actErr := "No error"
    			if err != nil {
    				actErr = err.Error()
    			}
    			expErr := "No error"
    			if tc.expErrString != "" {
    				expErr = tc.expErrString
    			}
    			if !strings.Contains(actErr, expErr) {
    				t.Errorf(
    					"%s test failed, expected: %s, got: %s",
    					tc.name,
    					expErr,
    					actErr)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/toolchain/path_unix.go

    	}
    
    	// Mimicking exec.findExecutable here.
    	// ENOSYS means Eaccess is not available or not implemented.
    	// EPERM can be returned by Linux containers employing seccomp.
    	// In both cases, fall back to checking the permission bits.
    	err := unix.Eaccess(filepath.Join(dir, de.Name()), unix.X_OK)
    	if (err == syscall.ENOSYS || err == syscall.EPERM) && info.Mode()&0111 != 0 {
    		err = nil
    	}
    	if err != nil {
    		return "", false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:15:19 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. cmd/bucket-replication-utils_test.go

    	dsc    string
    	expDsc ReplicateDecision
    	expErr error
    }{
    	{ // 1.
    		name: "empty string",
    		dsc:  "",
    		expDsc: ReplicateDecision{
    			targetsMap: map[string]replicateTargetDecision{},
    		},
    		expErr: nil,
    	},
    
    	{ // 2.
    		name:   "replicate decision for one target",
    		dsc:    "arn:minio:replication::id:bucket=true;false;arn:minio:replication::id:bucket;id",
    		expErr: nil,
    		expDsc: ReplicateDecision{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 08 20:27:40 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. src/hash/crc32/crc32_s390x.s

    	VLM     0(R3), V1, V4    // 64-bytes into V1..V4
    
    	// Reflect the data if the CRC operation is in the bit-reflected domain
    	VPERM   V1, V1, CONST_PERM_LE2BE, V1
    	VPERM   V2, V2, CONST_PERM_LE2BE, V2
    	VPERM   V3, V3, CONST_PERM_LE2BE, V3
    	VPERM   V4, V4, CONST_PERM_LE2BE, V4
    
    	VX      V0, V1, V1     // V1 ^= CRC
    	ADD     $64, R3        // BUF = BUF + 64
    	ADD     $(-64), R4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
Back to top