Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for __data (0.18 sec)

  1. src/debug/macho/file_test.go

    			{"__eh_frame", "__TEXT", 0x100000fb8, 0x48, 0xfb8, 0x3, 0x0, 0x0, 0x6000000b},
    			{"__data", "__DATA", 0x100001000, 0x1c, 0x1000, 0x3, 0x0, 0x0, 0x0},
    			{"__dyld", "__DATA", 0x100001020, 0x38, 0x1020, 0x3, 0x0, 0x0, 0x0},
    			{"__la_symbol_ptr", "__DATA", 0x100001058, 0x10, 0x1058, 0x2, 0x0, 0x0, 0x7},
    		},
    		nil,
    	},
    	{
    		"testdata/gcc-amd64-darwin-exec-debug.base64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    			ml := newMachoLoad(ctxt.Arch, LC_DYLD_INFO_ONLY, 10)
    			ml.data[0] = uint32(linkoff)      // rebase off
    			ml.data[1] = uint32(s1)           // rebase size
    			ml.data[2] = uint32(linkoff + s1) // bind off
    			ml.data[3] = uint32(s2)           // bind size
    			ml.data[4] = 0                    // weak bind off
    			ml.data[5] = 0                    // weak bind size
    			ml.data[6] = 0                    // lazy bind off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadmacho/ldmacho.go

    	f.MustSeek(m.base+int64(c.seg.fileoff), 0)
    	dat, readOnly, err := f.Slice(uint64(c.seg.filesz))
    	if err != nil {
    		return errorf("cannot load object data: %v", err)
    	}
    
    	for i := uint32(0); i < c.seg.nsect; i++ {
    		sect := &c.seg.sect[i]
    		if sect.segname != "__TEXT" && sect.segname != "__DATA" {
    			continue
    		}
    		if sect.name == "__eh_frame" {
    			continue
    		}
    		name := fmt.Sprintf("%s(%s/%s)", pkg, sect.segname, sect.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/gradient_checker.cc

          Tensor y_data = (*y_datas)[y_idx];
          if (y_data.SharesBufferWith((*x_datas)[x_idx])) {
            // Create copies of outputs that share a buffer with any inputs since
            // the underlying buffer of the input Tensors are not copied for some
            // operations (i.e. Identity), which can lead to incorrect results for
            // the centered difference calculation.
            (*y_datas)[y_idx] = tensor::DeepCopy(y_data);
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/image_grad_test.cc

        TensorShape x_shape({1, 4, 6, 1});
        Tensor x_data = MakeData<X_T>(x_shape);
        Output x, y;
        MakeOp<X_T>(op_type, x_data, {2, 3}, align_corners, half_pixel_centers, &x,
                    &y);
        JAC_T max_error;
        TF_ASSERT_OK((ComputeGradientError<X_T, Y_T, JAC_T>(
            scope_, x, x_data, y, {1, 2, 3, 1}, &max_error)));
        EXPECT_LT(max_error, 1.5e-3);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
  6. istioctl/pkg/multicluster/remote_secret_test.go

    	return sa
    }
    
    func makeSecret(name, caData, token string) *v1.Secret {
    	out := &v1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Namespace:   testNamespace,
    			Annotations: map[string]string{v1.ServiceAccountNameKey: testServiceAccountName},
    		},
    		Data: map[string][]byte{},
    		Type: v1.SecretTypeServiceAccountToken,
    	}
    	if len(caData) > 0 {
    		out.Data[v1.ServiceAccountRootCAKey] = []byte(caData)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/codegen.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  8. istioctl/pkg/multicluster/remote_secret.go

    				multicluster.MultiClusterSecretLabel: "true",
    			},
    		},
    		Data: map[string][]byte{
    			key: data.Bytes(),
    		},
    	}
    	return out, nil
    }
    
    func createBaseKubeconfig(caData []byte, clusterName, server string) *api.Config {
    	return &api.Config{
    		Clusters: map[string]*api.Cluster{
    			clusterName: {
    				CertificateAuthorityData: caData,
    				Server:                   server,
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/compare.go

    	n.Y = cheapExpr(n.Y, init)
    	n.X = cheapExpr(n.X, init)
    	eqtab, eqdata := compare.EqInterface(n.X, n.Y)
    	var cmp ir.Node
    	if n.Op() == ir.OEQ {
    		cmp = ir.NewLogicalExpr(base.Pos, ir.OANDAND, eqtab, eqdata)
    	} else {
    		eqtab.SetOp(ir.ONE)
    		cmp = ir.NewLogicalExpr(base.Pos, ir.OOROR, eqtab, ir.NewUnaryExpr(base.Pos, ir.ONOT, eqdata))
    	}
    	return finishCompare(n, cmp, init)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  10. src/debug/elf/file.go

    	}
    
    	// The first entry is all zeros.
    	data = data[Sym32Size:]
    
    	symbols := make([]Symbol, len(data)/Sym32Size)
    
    	i := 0
    	var sym Sym32
    	for len(data) > 0 {
    		sym.Name = f.ByteOrder.Uint32(data[0:4])
    		sym.Value = f.ByteOrder.Uint32(data[4:8])
    		sym.Size = f.ByteOrder.Uint32(data[8:12])
    		sym.Info = data[12]
    		sym.Other = data[13]
    		sym.Shndx = f.ByteOrder.Uint16(data[14:16])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top