Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 126 for indices (0.26 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            // For smart-casted expression, refer to the source of the original expression
            // For spread, named, and lambda arguments, the source is the KtValueArgument.
            // For other arguments (including array indices), the source is the KtExpression.
            return when (this) {
                is FirSamConversionExpression ->
                    expression.realPsi as? KtExpression
                is FirSmartCastExpression ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

      // backedges in the previous iteration to infer a more precise predicate for
      // the backedge merge nodes and all the nodes that transitively use it.
      //
      // We don't track the output indices for should_revisit.  Instead, putting a
      // node in `should_revisit` denotes that the deadness flowing out from any
      // output from said node may have changed.  This is fine; only switches
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // function.
    llvm::SmallSet<int, 4> GetResizedTensorListIndexes(
        func::FuncOp func, const llvm::SmallSet<int, 4> &tensor_list_args) {
      // `indexes` stores the argument index of tensorlists which size may get
      // updated in the function.
      llvm::SmallSet<int, 4> indexes;
      for (BlockArgument &arg : func.getArguments()) {
        if (tensor_list_args.contains(arg.getArgNumber())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    			if ldr.SymValue(s) >= int64(eaddr) {
    				break
    			}
    
    			// Compute external relocations on the go, and pass to Xcoffreloc1 to stream out.
    			// Relocation must be ordered by address, so create a list of sorted indices.
    			relocs := ldr.Relocs(s)
    			sorted := make([]int, relocs.Count())
    			for i := 0; i < relocs.Count(); i++ {
    				sorted[i] = i
    			}
    			sort.Slice(sorted, func(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// Amount fields.
    		//
    		// arg1 is rotated left by the rotation amount then the bits from the start
    		// bit to the end bit (inclusive) are combined with arg0 using the logical
    		// operation specified. Bit indices are specified from left to right - the
    		// MSB is 0 and the LSB is 63.
    		//
    		// Examples:
    		//               |          aux         |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    			// Only add etags if any.
    			if fi.Parts[i].ETag != "" {
    				ventry.ObjectV2.PartETags = make([]string, len(fi.Parts))
    				break
    			}
    		}
    		for i := range fi.Parts {
    			// Only add indices if any.
    			if len(fi.Parts[i].Index) > 0 {
    				ventry.ObjectV2.PartIndices = make([][]byte, len(fi.Parts))
    				break
    			}
    		}
    		for i := range fi.Erasure.Distribution {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    const (
    	letterIdxBits = 6                    // 6 bits to represent a letter index
    	letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits
    	letterIdxMax  = 63 / letterIdxBits   // # of letter indices fitting in 63 bits
    )
    
    // Random number state.
    // We generate random temporary file names so that there's a good
    // chance the file doesn't exist yet.
    var (
    	randN  uint32
    	randmu sync.Mutex
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// structured parameters and the pod needs this information.
    	resources resources
    
    	// mutex must be locked while accessing any of the fields below.
    	mutex sync.Mutex
    
    	// The indices of all claims that:
    	// - are allocated
    	// - use delayed allocation or the builtin controller
    	// - were not available on at least one node
    	//
    	// Set in parallel during Filter, so write access there must be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    //
    // FIXME: at the moment attributes are stored in a linked list in a
    // fairly space-inefficient way -- it might be better to instead look
    // up all attrs in a single large table, then store indices into the
    // table in the DIE. This would allow us to common up storage for
    // attributes that are shared by many DIEs (ex: byte size of N).
    func newattr(die *dwarf.DWDie, attr uint16, cls int, value int64, data interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    	//     register, F = float register), in uppercase
    	//  3. the word "Encoding"
    	//
    	// For example, rIIIEncoding indicates an R-type instruction with two
    	// integer register inputs and an integer register output; sFEncoding
    	// indicates an S-type instruction with rs2 being a float register.
    
    	rIIIEncoding  = encoding{encode: encodeRIII, validate: validateRIII, length: 4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top