Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for insts (3.32 sec)

  1. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    }
    
    func (o *internalObjTool) Disasm(file string, start, end uint64, intelSyntax bool) ([]plugin.Inst, error) {
    	insts, err := o.ObjTool.Disasm(file, start, end, intelSyntax)
    	if err != nil {
    		return nil, err
    	}
    	var pluginInst []plugin.Inst
    	for _, inst := range insts {
    		pluginInst = append(pluginInst, plugin.Inst(inst))
    	}
    	return pluginInst, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/GradleWorkerMain.java

        public void run() throws Exception {
            DataInputStream instr = new DataInputStream(new EncodedStream.EncodedInput(System.in));
    
            // Read shared packages
            int sharedPackagesCount = instr.readInt();
            List<String> sharedPackages = new ArrayList<String>(sharedPackagesCount);
            for (int i = 0; i < sharedPackagesCount; i++) {
                sharedPackages.add(instr.readUTF());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/index/suffixarray/suffixarray.go

    	if a.int32 != nil {
    		return int64(a.int32[i])
    	}
    	return a.int64[i]
    }
    
    func (a *ints) set(i int, v int64) {
    	if a.int32 != nil {
    		a.int32[i] = int32(v)
    	} else {
    		a.int64[i] = v
    	}
    }
    
    func (a *ints) slice(i, j int) ints {
    	if a.int32 != nil {
    		return ints{a.int32[i:j], nil}
    	}
    	return ints{nil, a.int64[i:j]}
    }
    
    // New creates a new [Index] for data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/internal/fmtsort/sort_test.go

    	ct(reflect.TypeOf(complex128(0+1i)), -1-1i, -1+0i, -1+1i, 0-1i, 0+0i, 0+1i, 1-1i, 1+0i, 1+1i),
    	ct(reflect.TypeOf(false), false, true),
    	ct(reflect.TypeOf(&ints[0]), &ints[0], &ints[1], &ints[2]),
    	ct(reflect.TypeOf(unsafe.Pointer(&ints[0])), unsafe.Pointer(&ints[0]), unsafe.Pointer(&ints[1]), unsafe.Pointer(&ints[2])),
    	ct(reflect.TypeOf(chans[0]), chans[0], chans[1], chans[2]),
    	ct(reflect.TypeOf(toy{}), toy{0, 1}, toy{0, 2}, toy{1, -1}, toy{1, 1}),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

      std::vector<flatbuffers::Offset<tflite::OpMetadata>> ops;
      for (auto& inst : block) {
        // Const nodes are mapped to const vectors in flatbuffer, so skip.
        if (IsConst(&inst)) continue;
    
        // The model may contain quant stats op which is unrelevant to the
        // execution.
        if (llvm::isa<mlir::func::ReturnOp, mlir::quantfork::StatisticsOp>(&inst))
          continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. src/cmd/pprof/pprof.go

    	if intelSyntax {
    		return nil, fmt.Errorf("printing assembly in Intel syntax is not supported")
    	}
    	d, err := t.cachedDisasm(file)
    	if err != nil {
    		return nil, err
    	}
    	var asm []driver.Inst
    	d.Decode(start, end, nil, false, func(pc, size uint64, file string, line int, text string) {
    		asm = append(asm, driver.Inst{Addr: pc, File: file, Line: line, Text: text})
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// Disasm disassembles the named object file, starting at
    	// the start address and stopping at (before) the end address.
    	Disasm(file string, start, end uint64, intelSyntax bool) ([]Inst, error)
    }
    
    // An Inst is a single instruction in an assembly listing.
    type Inst struct {
    	Addr     uint64 // virtual address of instruction
    	Text     string // instruction text
    	Function string // function name
    	File     string // source file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. cmd/admin-server-info.go

    			PauseEnd:   gcStats.PauseEnd,
    		},
    		MinioEnvVars: make(map[string]string, 10),
    	}
    
    	for poolNumber := range poolNumbers {
    		props.PoolNumbers = append(props.PoolNumbers, poolNumber)
    	}
    	sort.Ints(props.PoolNumbers)
    	props.PoolNumber = func() int {
    		if len(props.PoolNumbers) == 1 {
    			return props.PoolNumbers[0]
    		}
    		return math.MaxInt // this indicates that its unset.
    	}()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. src/internal/fmtsort/sort.go

    // raised by unorderable key values such as NaNs.
    //
    // The ordering rules are more general than with Go's < operator:
    //
    //   - when applicable, nil compares low
    //   - ints, floats, and strings order by <
    //   - NaN compares less than non-NaN floats
    //   - bool compares false before true
    //   - complex compares real, then imag
    //   - pointers compare by machine address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/crypto/x509/oid.go

    		if i == start && v == 0x80 {
    			return OID{}, false
    		}
    		if v&0x80 == 0 {
    			start = i + 1
    		}
    	}
    
    	return OID{der}, true
    }
    
    // OIDFromInts creates a new OID using ints, each integer is a separate component.
    func OIDFromInts(oid []uint64) (OID, error) {
    	if len(oid) < 2 || oid[0] > 2 || (oid[0] < 2 && oid[1] >= 40) {
    		return OID{}, errInvalidOID
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top