Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for rtmap (0.04 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    	}
    
    	// Sanity check.
    	if _, ok := d.rtmap[gotype]; ok {
    		log.Fatalf("internal error: rtmap entry already installed\n")
    	}
    
    	ds := loader.Sym(die.Sym.(dwSym))
    	if typedefdie != nil {
    		ds = loader.Sym(typedefdie.Sym.(dwSym))
    	}
    	d.rtmap[ds] = gotype
    
    	if _, ok := prototypedies[sn]; ok {
    		prototypedies[sn] = die
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/mem_linux.go

    	case madviseUnsupported:
    		// Since Linux 3.18, support for madvise is optional.
    		// Fall back on mmap if it's not supported.
    		// _MAP_ANON|_MAP_FIXED|_MAP_PRIVATE will unmap all the
    		// pages in the old mapping, and remap the memory region.
    		mmap(v, n, _PROT_READ|_PROT_WRITE, _MAP_ANON|_MAP_FIXED|_MAP_PRIVATE, -1, 0)
    	}
    
    	if debug.harddecommit > 0 {
    		p, err := mmap(v, n, _PROT_NONE, _MAP_ANON|_MAP_FIXED|_MAP_PRIVATE, -1, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/universe.go

    	okforlen[types.TCHAN] = true
    	okforlen[types.TMAP] = true
    	okforlen[types.TSLICE] = true
    	okforlen[types.TSTRING] = true
    
    	okforeq[types.TPTR] = true
    	okforeq[types.TUNSAFEPTR] = true
    	okforeq[types.TINTER] = true
    	okforeq[types.TCHAN] = true
    	okforeq[types.TSTRING] = true
    	okforeq[types.TBOOL] = true
    	okforeq[types.TMAP] = true    // nil only; refined in typecheck
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/UrlBackedArtifactMetadata.java

            if (componentIdentifier instanceof MavenUniqueSnapshotComponentIdentifier) {
                // This special case is for Maven snapshots with Gradle Module Metadata when we need to remap the file name, which
                // corresponds to the unique timestamp, to the SNAPSHOT version, for backwards compatibility
                return new DefaultModuleComponentArtifactIdentifier(
                    componentIdentifier,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/types/type.go

    func (t *Type) IsPtrShaped() bool {
    	return t.kind == TPTR || t.kind == TUNSAFEPTR ||
    		t.kind == TMAP || t.kind == TCHAN || t.kind == TFUNC
    }
    
    // HasNil reports whether the set of values determined by t includes nil.
    func (t *Type) HasNil() bool {
    	switch t.kind {
    	case TCHAN, TFUNC, TINTER, TMAP, TNIL, TPTR, TSLICE, TUNSAFEPTR:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top