Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for rtmap (0.06 sec)

  1. cmd/admin-heal-ops.go

    	h.mutex.RLock()
    	defer h.mutex.RUnlock()
    
    	// Make a copy before returning the value
    	retMap := make(map[madmin.HealItemType]int64, len(h.scannedItemsMap))
    	for k, v := range h.scannedItemsMap {
    		retMap[k] = v
    	}
    
    	return retMap
    }
    
    // getHealedItemsMap - returns the map of all healed items against type
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// atomic 8/32 and/or.
    		// *arg0 &= (|=) arg1. arg2=mem. returns memory. auxint must be zero.
    		// LBAR/LWAT	(Rarg0), Rtmp
    		// AND/OR	Rarg1, Rtmp
    		// STBCCC/STWCCC Rtmp, (Rarg0), Rtmp
    		// BNE		Rtmp, -3(PC)
    		{name: "LoweredAtomicAnd8", argLength: 3, reg: gpstore, asm: "AND", faultOnNilArg0: true, hasSideEffects: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/emit.go

    			if b.PkgID != -1 {
    				fmt.Fprintf(os.Stderr, " hcid: %d", b.PkgID)
    			}
    			fmt.Fprintf(os.Stderr, "\n")
    		}
    		pm := rtcov.Meta.PkgMap
    		fmt.Fprintf(os.Stderr, "=+= remap table:\n")
    		for from, to := range pm {
    			fmt.Fprintf(os.Stderr, "=+= from %d to %d\n",
    				uint32(from), uint32(to))
    		}
    	}
    
    	h := md5.New()
    	tlen := uint64(unsafe.Sizeof(coverage.MetaFileHeader{}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

    import java.security.ProtectionDomain;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    import java.util.jar.JarEntry;
    import java.util.jar.JarFile;
    
    /**
     * A helper class that can remap classes loaded from the original JARs of the TransformedClassPath to the classes from the corresponding transformed JARs.
     * <p>
     * This class is thread-safe.
     */
    public class TransformReplacer implements Closeable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

                          cluster_func_output_index, core_id));
        return mlir::failure();
      }
      return mlir::success();
    }
    
    // Collects tile sharded outputs from a tf_device.parallel_execute to remap from
    // the TPU computation result.
    mlir::LogicalResult GetTileShardedOutputsToMerge(
        const mlir::Location& location, const int cluster_func_output_index,
        llvm::ArrayRef<xla::OpSharding> output_sharding_config,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		}
    		// Various kernel heuristics and cases are handled separately.
    		if base, match := kernelBase(loadSegment, stextOffset, start, limit, offset); match {
    			return base, nil
    		}
    		// ChromeOS can remap its kernel to 0, and the caller might have not found
    		// the _stext symbol. Split this case from kernelBase() above, since we don't
    		// want to apply it to an ET_DYN user-mode executable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeRangeMap.java

          }
          if (!lowerBound.equals(range.upperBound)) {
            gaps.put(lowerBound, new RangeMapEntry<K, V>(lowerBound, range.upperBound, value));
          }
        }
    
        // Remap all existing entries in the merge range.
        final Iterator<Entry<Cut<K>, RangeMapEntry<K, V>>> backingItr = entriesInMergeRange.iterator();
        while (backingItr.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

              }))
            yield_operands.push_back(std::get<1>(result));
        }
      }
      OpBuilder::atBlockEnd(&island_body)
          .create<YieldOp>(new_island.getLoc(), yield_operands);
    
      // remap results of the new islands to the user outside of the island.
      int current_result = 0;
      Value control = new_island.getControl();
      for (IslandOp island : islands) {
        YieldOp yield_op = island.GetYield();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. src/internal/abi/type.go

    	KeySize    uint8  // size of key slot
    	ValueSize  uint8  // size of elem slot
    	BucketSize uint16 // size of bucket
    	Flags      uint32
    }
    
    // Note: flag values must match those used in the TMAP case
    // in ../cmd/compile/internal/reflectdata/reflect.go:writeType.
    func (mt *MapType) IndirectKey() bool { // store ptr to key instead of key itself
    	return mt.Flags&1 != 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller.go

    					if err != nil {
    						return nil, fmt.Errorf("failed to find target port for %v: %v", proxy.ID, err)
    					}
    				} else {
    					// most likely a VM - we assume the WorkloadEntry won't remap any ports
    					portNum = port.TargetPort.IntValue()
    				}
    
    				// Dedupe the target ports here - Service might have configured multiple ports to the same target port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top