Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,455 for data1 (0.77 sec)

  1. src/runtime/symtab.go

    			f2 := funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[datap.ftab[i+1].funcoff])), datap}
    			f2name := "end"
    			if i+1 < nftab {
    				f2name = funcname(f2)
    			}
    			println("function symbol table not sorted by PC offset:", hex(datap.ftab[i].entryoff), funcname(f1), ">", hex(datap.ftab[i+1].entryoff), f2name, ", plugin:", datap.pluginpath)
    			for j := 0; j <= i; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. src/runtime/symtabinl.go

    //
    // The go:linkname is below.
    func (u *inlineUnwinder) srcFunc(uf inlineFrame) srcFunc {
    	if uf.index < 0 {
    		return u.f.srcFunc()
    	}
    	t := &u.inlTree[uf.index]
    	return srcFunc{
    		u.f.datap,
    		t.nameOff,
    		t.startLine,
    		t.funcID,
    	}
    }
    
    //go:linkname badSrcFunc runtime.(*inlineUnwinder).srcFunc
    func badSrcFunc(*inlineUnwinder, inlineFrame) srcFunc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/os/readfrom_linux_test.go

    			t.Fatalf("failed to rewind the file: %v", err)
    		}
    
    		data2, err := io.ReadAll(f)
    		if err != nil {
    			t.Fatalf("failed to read from the file: %v", err)
    		}
    
    		// It should wind up a double of the original data.
    		if strings.Repeat(string(data), 2) != string(data2) {
    			t.Fatalf("data mismatch: %s != %s", string(data), string(data2))
    		}
    	})
    	t.Run("NotRegular", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-multi-data-type-with-subtype.pbtxt

    # Test the handling of the input data types. In particular, if the data type
    # for an input graph node is specified via command line options, use it.
    # otherwise, use the data type of the node in the graph.
    
    node {
      name: "p"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "shape"
        value {
          shape {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:11:42 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/cache_test.go

    		t.Fatal(err)
    	}
    	if _, err := c.Get(id); err != nil {
    		t.Fatal(err)
    	}
    	c.OutputFile(entry.OutputID)
    	data2, err := os.ReadFile(filepath.Join(dir, "trim.txt"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(data, data2) {
    		t.Fatalf("second trim did work: %q -> %q", data, data2)
    	}
    
    	// Fast forward and do another trim just before the 5 day cutoff.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. src/runtime/cgocall.go

    			pp := *(*unsafe.Pointer)(unsafe.Pointer(addr))
    			if cgoIsGoPointer(pp) && !isPinned(pp) {
    				panic(errorString(msg))
    			}
    		}
    		return
    	}
    
    	for _, datap := range activeModules() {
    		if cgoInRange(p, datap.data, datap.edata) || cgoInRange(p, datap.bss, datap.ebss) {
    			// We have no way to know the size of the object.
    			// We have to assume that it might contain a pointer.
    			panic(errorString(msg))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_OP_piece               = 0x93 // 1 ULEB128 size of piece addressed
    	DW_OP_deref_size          = 0x94 // 1 1-byte size of data retrieved
    	DW_OP_xderef_size         = 0x95 // 1 1-byte size of data retrieved
    	DW_OP_nop                 = 0x96 // 0
    	DW_OP_push_object_address = 0x97 // 0
    	DW_OP_call2               = 0x98 // 1 2-byte offset of DIE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  8. 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)
  9. src/debug/dwarf/entry_test.go

    	// A hand-crafted input corresponding to a minimal-size
    	// .debug_info (header only, no DIEs) and an empty abbrev table.
    	data0, _ := New(abbrev, aranges, frame, info, line, pubnames, ranges, str)
    	reader0 := data0.Reader()
    	entry0, _ := reader0.SeekPC(0x0)
    	// main goal is to make sure we can get here without crashing
    	if entry0 != nil {
    		t.Errorf("got non-nil entry0, wanted nil")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    		prefix += "hint-not-taken "
    	}
    	if prefixBits&haveAddr16 != 0 {
    		prefix += "addr16 "
    	}
    	if prefixBits&haveAddr32 != 0 {
    		prefix += "addr32 "
    	}
    	if prefixBits&haveData16 != 0 {
    		prefix += "data16 "
    	}
    	if prefixBits&haveData32 != 0 {
    		prefix += "data32 "
    	}
    
    	if inst.Op == 0 {
    		if prefix == "" {
    			return "<no instruction>"
    		}
    		return prefix[:len(prefix)-1]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
Back to top