Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for rtmap (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

                return super.visitField(access, name, remap(desc), remap(signature), remap(value));
            }
    
            @Override
            public void visitInnerClass(String name, String outerName, String innerName, int access) {
                super.visitInnerClass(remap(name), remap(outerName), remap(innerName), access);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// if *arg0 == arg1 {
    		//   *arg0 = arg2
    		//   return (true, memory)
    		// } else {
    		//   return (false, memory)
    		// }
    		// LDAXR	(Rarg0), Rtmp
    		// CMP		Rarg1, Rtmp
    		// BNE		3(PC)
    		// STLXR	Rarg2, (Rarg0), Rtmp
    		// CBNZ		Rtmp, -4(PC)
    		// CSET		EQ, Rout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    	case 75:
    		// If offset L fits in a 24 bit unsigned immediate:
    		//	add $lo, R, Rtmp
    		//	add $hi, Rtmp, Rtmp
    		//	ldr (Rtmp), R
    		// Otherwise, use constant pool:
    		//	mov $L, Rtmp (from constant pool)
    		//	add Rtmp, R, Rtmp
    		//	ldp (Rtmp), (R1, R2)
    		rf, rt1, rt2 := p.From.Reg, p.To.Reg, int16(p.To.Offset)
    		if rf == REGTMP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

          replacer.create<mlir::func::ReturnOp>(yield_op.getLoc(),
                                                yield_op.getOperands());
          yield_op.erase();
        }
    
        // Remap the captured operands in the (former) island block with newly
        // created entry block arguments in the function body.
        {
          Block &entry_block = outlined_func.getBody().front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. cmd/iam.go

    	sys.rolesMap = make(map[arn.ARN]string)
    
    	// From OpenID
    	if riMap := sys.OpenIDConfig.GetRoleInfo(); riMap != nil {
    		sys.validateAndAddRolePolicyMappings(ctx, riMap)
    	}
    
    	// From AuthN plugin if enabled.
    	if authn := newGlobalAuthNPluginFn(); authn != nil {
    		riMap := authn.GetRoleInfo()
    		sys.validateAndAddRolePolicyMappings(ctx, riMap)
    	}
    
    	sys.printIAMRoles()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

          FuncOp::create(ops.front()->getLoc(), kHostFunctionAttr, func_type);
    
      // Create function body.
      Block* outlined_func_block = outlined_func.addEntryBlock();
    
      // Clone the operations and remap the inputs to use the function arguments.
      IRMapping mapping;
      mapping.map(inputs, outlined_func.getArguments());
      builder->setInsertionPoint(outlined_func_block, outlined_func_block->begin());
      for (Operation* op : ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top