Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for oris (0.3 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	OR $1234567, R5                 // 64a5001260a5d687
    	OR $1234567, R5, R3             // 64a300126063d687
    	OR $2147483648, R5, R3          // 64a38000
    	OR $2147483649, R5, R3          // 64a3800060630001
    	ORIS $255, R3, R4               // 646400ff
    	OR $16711680, R3, R4            // 646400ff
    
    	XOR $1, R3                      // 68630001
    	XOR $1, R3, R4                  // 68640001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    			if target.IsBigEndian() {
    				o1 = binary.BigEndian.Uint32(p[r.Off()-2:])
    			} else {
    				o1 = binary.LittleEndian.Uint32(p[r.Off():])
    			}
    			switch o1 >> 26 {
    			case 25, // oris
    				27, // xoris
    				29: // andis
    				if t>>16 != 0 {
    					goto overflow
    				}
    
    			default:
    				if int64(int16(t)) != t {
    					goto overflow
    				}
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/types.gen.go

    	}
    }
    
    func patch(c kube.Client, orig config.Config, origMeta metav1.ObjectMeta, mod config.Config, modMeta metav1.ObjectMeta, typ types.PatchType) (metav1.Object, error) {
    	if orig.GroupVersionKind != mod.GroupVersionKind {
    		return nil, fmt.Errorf("gvk mismatch: %v, modified: %v", orig.GroupVersionKind, mod.GroupVersionKind)
    	}
    	switch orig.GroupVersionKind {
    	case gvk.AuthorizationPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      IRMapping ir_map;
      int pos = 0;
      for (auto orig : orig_parent_func.getArguments())
        ir_map.map(orig, then_func.getArgument(pos++));
      for (auto orig : callers.forward->getResults())
        ir_map.map(orig, then_func.getArgument(pos++));
      for (auto orig : callers.core_tpu->getResults())
        ir_map.map(orig, then_func.getArgument(pos++));
    
      // Clone the specified ops into the new function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix_test.go

    	defer func(orig string) { hostsFilePath = orig }(hostsFilePath)
    	hostsFilePath = "testdata/aliases"
    	mode := hostLookupFiles
    
    	for _, v := range lookupStaticHostAliasesTest {
    		testGoLookupIPCNAMEOrderHostsAliases(t, mode, v.lookup, absDomainName(v.res))
    	}
    }
    
    func TestGoLookupIPCNAMEOrderHostsAliasesFilesDNSMode(t *testing.T) {
    	defer func(orig string) { hostsFilePath = orig }(hostsFilePath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/go/build/build.go

    		line, argstr, ok := strings.Cut(strings.TrimSpace(line[4:]), ":")
    		if !ok {
    			return fmt.Errorf("%s: invalid #cgo line: %s", filename, orig)
    		}
    
    		// Parse GOOS/GOARCH stuff.
    		f := strings.Fields(line)
    		if len(f) < 1 {
    			return fmt.Errorf("%s: invalid #cgo line: %s", filename, orig)
    		}
    
    		cond, verb := f[:len(f)-1], f[len(f)-1]
    		if len(cond) > 0 {
    			ok := false
    			for _, c := range cond {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. src/debug/elf/file_test.go

    }
    
    func TestIssue59208(t *testing.T) {
    	// corrupted dwarf data should raise invalid dwarf data instead of invalid zlib
    	const orig = "testdata/compressed-64.obj"
    	f, err := Open(orig)
    	if err != nil {
    		t.Fatal(err)
    	}
    	sec := f.Section(".debug_info")
    
    	data, err := os.ReadFile(orig)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	dn := make([]byte, len(data))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  8. src/html/template/exec_test.go

    	}
    }
    
    // Issue 43295.
    func TestTemplateFuncsAfterClone(t *testing.T) {
    	s := `{{ f . }}`
    	want := "test"
    	orig := New("orig").Funcs(map[string]any{
    		"f": func(in string) string {
    			return in
    		},
    	}).New("child")
    
    	overviewTmpl := Must(Must(orig.Clone()).Parse(s))
    	var out strings.Builder
    	if err := overviewTmpl.Execute(&out, want); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_test.cc

      }
    
      TFE_TensorHandle* m = TestMatrixTensorHandle100x100(ctx);
    
      // Store pointer to raw buffer for validation of forwarding behaviour.
      TF_Tensor* orig = TFE_TensorHandleResolve(n, status);
      void* orig_ptr = TF_TensorData(orig);
      TF_DeleteTensor(orig);
    
      TFE_Op* add_op = AddOp(ctx, n, m);
      std::string cpu_device_name;
      ASSERT_TRUE(GetDeviceName(ctx, &cpu_device_name, "CPU"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  10. pkg/controller/endpoint/endpoints_controller_test.go

    		t.Errorf(errorMsg)
    	case <-receivingChan:
    	}
    }
    
    func TestEndpointSubsetsEqualIgnoreResourceVersion(t *testing.T) {
    	copyAndMutateEndpointSubset := func(orig *v1.EndpointSubset, mutator func(*v1.EndpointSubset)) *v1.EndpointSubset {
    		newSubSet := orig.DeepCopy()
    		mutator(newSubSet)
    		return newSubSet
    	}
    	es1 := &v1.EndpointSubset{
    		Addresses: []v1.EndpointAddress{
    			{
    				IP:        "1.1.1.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top