Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for __data (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/scheduler/extender.go

    		cfg.TLSClientConfig.CertData = config.TLSConfig.CertData
    		cfg.TLSClientConfig.KeyData = config.TLSConfig.KeyData
    		cfg.TLSClientConfig.CAData = config.TLSConfig.CAData
    	}
    	if config.EnableHTTPS {
    		hasCA := len(cfg.CAFile) > 0 || len(cfg.CAData) > 0
    		if !hasCA {
    			cfg.Insecure = true
    		}
    	}
    	tlsConfig, err := restclient.TLSConfigFor(&cfg)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. cmd/data-usage_test.go

    Harshavardhana <******@****.***> 1711552240 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/types.go

    	// KeyData takes precedence over KeyFile
    	KeyData []byte `datapolicy:"security-key"`
    	// CAData holds PEM-encoded bytes (typically read from a root certificates bundle).
    	// CAData takes precedence over CAFile
    	CAData []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. cmd/data-scanner.go

    )
    
    // initDataScanner will start the scanner in the background.
    func initDataScanner(ctx context.Context, objAPI ObjectLayer) {
    	go func() {
    		r := rand.New(rand.NewSource(time.Now().UnixNano()))
    		// Run the data scanner in a loop
    		for {
    			runDataScanner(ctx, objAPI)
    			duration := time.Duration(r.Float64() * float64(scannerCycle.Load()))
    			if duration < time.Second {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. src/runtime/stkframe.go

    		return
    	}
    
    	f := frame.fn
    	pcdata := int32(-1)
    	if targetpc != f.entry() {
    		// Back up to the CALL. If we're at the function entry
    		// point, we want to use the entry map (-1), even if
    		// the first instruction of the function changes the
    		// stack map.
    		targetpc--
    		pcdata = pcdatavalue(f, abi.PCDATA_StackMapIndex, targetpc)
    	}
    	if pcdata == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    				continue
    			}
    			ptrdata := obj.ptrdata()
    			gcdata := obj.gcdata()
    			var s *mspan
    			if obj.useGCProg() {
    				// See comments in mgcmark.go:scanstack
    				s = materializeGCProg(ptrdata, gcdata)
    				gcdata = (*byte)(unsafe.Pointer(s.startAddr))
    			}
    			for i := uintptr(0); i < ptrdata; i += goarch.PtrSize {
    				if *addb(gcdata, i/(8*goarch.PtrSize))>>(i/goarch.PtrSize&7)&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top