Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for rtmap (0.04 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. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		// atomic and/or.
    		// *arg0 &= (|=) arg1. arg2=mem. returns memory.
    		// SYNC
    		// LL	(Rarg0), Rtmp
    		// AND	Rarg1, Rtmp
    		// SC	Rtmp, (Rarg0)
    		// BEQ	Rtmp, -3(PC)
    		// SYNC
    		{name: "LoweredAtomicAnd", argLength: 3, reg: gpstore, asm: "AND", faultOnNilArg0: true, hasSideEffects: true, unsafePoint: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    			faultOnNilArg0: true,
    			faultOnNilArg1: true,
    		},
    
    		// atomic and/or.
    		// *arg0 &= (|=) arg1. arg2=mem. returns memory.
    		// SYNC
    		// LL	(Rarg0), Rtmp
    		// AND	Rarg1, Rtmp
    		// SC	Rtmp, (Rarg0)
    		// BEQ	Rtmp, -3(PC)
    		// SYNC
    		{name: "LoweredAtomicAnd32", argLength: 3, reg: gpstore, asm: "AND", faultOnNilArg0: true, hasSideEffects: true, unsafePoint: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    		// atomic exchange.
    		// store arg1 to arg0. arg2=mem. returns <old content of *arg0, memory>.
    		// DBAR
    		// LL	(Rarg0), Rout
    		// MOVV Rarg1, Rtmp
    		// SC	Rtmp, (Rarg0)
    		// BEQ	Rtmp, -3(PC)
    		// DBAR
    		{name: "LoweredAtomicExchange32", argLength: 3, reg: gpxchg, resultNotInArgs: true, faultOnNilArg0: true, hasSideEffects: true, unsafePoint: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/codehost/git_test.go

    					info := *tt.info
    					tt.info = &info
    					tt.info.Name = remap(tt.info.Name, m)
    					tt.info.Version = remap(tt.info.Version, m)
    					tt.info.Short = remap(tt.info.Short, m)
    				}
    				tt.rev = remap(tt.rev, m)
    				t.Run(path.Base(tt.repo)+"/"+tt.rev, runTest(tt))
    				tt = old
    			}
    		}
    	}
    }
    
    func remap(name string, m map[string]string) string {
    	if m[name] != "" {
    		return m[name]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/internal/modfetch/coderepo_test.go

    				if alt == vgotest1hg {
    					m = hgmap
    				}
    				altTest.version = remap(altTest.version, m)
    				altTest.name = remap(altTest.name, m)
    				altTest.short = remap(altTest.short, m)
    				altTest.rev = remap(altTest.rev, m)
    				altTest.err = remap(altTest.err, m)
    				altTest.gomodErr = remap(altTest.gomodErr, m)
    				altTest.zipErr = remap(altTest.zipErr, m)
    				altTest.zipSum = ""
    				altTest.zipFileHash = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    	}
    	defaultSampleType := sTypes[0]
    	reMap, needToModify := make([]int, len(sTypes)), false
    	for i, st := range sTypes {
    		if st == p.DefaultSampleType {
    			defaultSampleType = p.DefaultSampleType
    		}
    		idx := searchValueType(p.SampleType, st)
    		if idx < 0 {
    			return fmt.Errorf("%q sample type is not found in profile", st)
    		}
    		reMap[i] = idx
    		if idx != i {
    			needToModify = true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

          }
        }
        replicas.push_back(replica);
      }
    
      return success();
    }
    
    // Creates islands per replica from `tf_device.replicate` region and remap
    // replicate results with new island outputs. A single island is created to
    // forward control dependencies if there is a control dependency output from the
    // replicate island. Devices are remapped from aliased devices to explicit
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. 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)
Back to top