Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for lidx (0.05 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    		splitOf: split, splitOffset: ls.SplitOffset,
    	}
    	if idx, ok := sc.slmap[k]; ok {
    		return idx, true
    	}
    	rv := SlKeyIdx(len(sc.slkeys))
    	sc.slkeys = append(sc.slkeys, ls)
    	sc.slmap[k] = rv
    	return rv, false
    }
    
    func (sc *slotCanonicalizer) canonSlot(idx SlKeyIdx) LocalSlot {
    	return sc.slkeys[idx]
    }
    
    // PopulateABIInRegArgOps examines the entry block of the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. cmd/metacache-entries.go

    	if len(dir) == 0 {
    		// Root
    		idx := strings.Index(e.name, separator)
    		return idx == -1 || idx == len(e.name)-len(separator)
    	}
    	ext := strings.TrimPrefix(e.name, dir)
    	if len(ext) != len(e.name) {
    		idx := strings.Index(ext, separator)
    		// If separator is not found or is last entry, ok.
    		return idx == -1 || idx == len(ext)-len(separator)
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		},
    	} {
    		var containersToUpdate []containerToUpdateInfo
    		for idx := range pod.Spec.Containers {
    			// default resize policy when pod resize feature is enabled
    			pod.Spec.Containers[idx].Resources = tc.apiSpecResources[idx]
    			pod.Status.ContainerStatuses[idx].Resources = &tc.apiStatusResources[idx]
    			cInfo := containerToUpdateInfo{
    				apiContainerIdx: idx,
    				kubeContainerID: kubecontainer.ContainerID{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java

                String resourceName = entry.resource.getResourceName();
    
                if (printResourceNames) {
                    int idx = resourceName.lastIndexOf('/');
    
                    if (idx < 0) {
                        buffer.append(resourceName);
                    } else {
                        buffer.append(resourceName, idx + 1, resourceName.length());
                    }
                    buffer.append(" (");
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVBstoreidx ptr idx (MOV(B|BZ|H|HZ|W|WZ)reg x) mem) => (MOVBstoreidx ptr idx x mem)
    (MOVHstoreidx ptr idx (MOV(H|HZ|W|WZ)reg x) mem) => (MOVHstoreidx ptr idx x mem)
    (MOVWstoreidx ptr idx (MOV(W|WZ)reg x) mem) => (MOVWstoreidx ptr idx x mem)
    (MOVBstoreidx ptr idx (SRWconst (MOV(H|HZ)reg x) [c]) mem) && c <= 8 => (MOVBstoreidx ptr idx (SRWconst <typ.UInt32> x [c]) mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. cmd/storage-rest-server.go

    	done := keepHTTPResponseAlive(w)
    
    	opts := DeleteOptions{}
    	errs := s.getStorage().DeleteVersions(r.Context(), volume, versions, opts)
    	done(nil)
    	for idx := range versions {
    		if errs[idx] != nil {
    			dErrsResp.Errs[idx] = StorageErr(errs[idx].Error())
    		}
    	}
    	encoder.Encode(dErrsResp)
    }
    
    // RenameDataHandler - renames a meta object and data dir to destination.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    This operation also returns a tensor `idx` the same size as `x` that contains
    the index of each value of `x` in the unique output `y`. In other words:
    
    `y[idx[i]] = x[i] for i in [0, 1,...,rank(x) - 1]`
    
    Examples:
    
    ```
    # tensor 'x' is [1, 1, 2, 4, 4, 4, 7, 8, 8]
    y, idx = unique(x)
    y ==> [1, 2, 4, 7, 8]
    idx ==> [0, 0, 1, 2, 2, 2, 3, 4, 4]
    ```
    
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		// blocks or at the end.
    		length := int64(0)
    		if idx+1 < len(syms) {
    			// Find the next top-level symbol.
    			// Skip over sub symbols so we won't split a container symbol
    			// into two blocks.
    			next := syms[idx+1]
    			for ldr.AttrSubSymbol(next) {
    				idx++
    				next = syms[idx+1]
    			}
    			length = ldr.SymValue(next) - addr
    		}
    		if length == 0 || length > lastAddr-addr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    			}
    
    			const cgoLdflag = "//go:cgo_ldflag"
    			idx := bytes.Index(src, []byte(cgoLdflag))
    			for idx >= 0 {
    				// We are looking at //go:cgo_ldflag.
    				// Find start of line.
    				start := bytes.LastIndex(src[:idx], []byte("\n"))
    				if start == -1 {
    					start = 0
    				}
    
    				// Find end of line.
    				end := bytes.Index(src[idx:], []byte("\n"))
    				if end == -1 {
    					end = len(src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          llvm::SmallVector<Type, 4> while_result_types;
          while_result_types.reserve(num_results);
          for (int64_t idx = 0; idx < num_results; ++idx) {
            auto ty = UpdateElementTypeTo(op.getType(idx), element_types[idx]);
            while_result_types.push_back(ty);
          }
    
          mhlo_op = rewriter.create<DstOpT>(loc, TypeRange(while_result_types),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top