Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for remapper (0.5 sec)

  1. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

            private final List<T> delegate;
            private final Function<T, Q> mapper;
    
            WrappingList(List<T> delegate, Function<T, Q> mapper) {
                this.delegate = delegate;
                this.mapper = mapper;
            }
    
            @Override
            public Q get(int index) {
                return mapper.apply(delegate.get(index));
            }
    
            @Override
            public int size() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. pom.xml

    							<mapper>
    								<type>perm</type>
    								<user>${packaging.fess.user}</user>
    								<group>${packaging.fess.group}</group>
    							</mapper>
    						</data>
    						<data>
    							<type>directory</type>
    							<src>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/tomcat</src>
    							<mapper>
    								<type>perm</type>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            } finally {
                deleteTempFile(tempFile);
            }
        }
    
        private Map<String, Map<String, String>> parseObject(final ObjectMapper mapper, final String line) {
            try {
                return mapper.readValue(line, new TypeReference<Map<String, Map<String, String>>>() {
                });
            } catch (final Exception e) {
                if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		Line:     make([]Line, len(src.Line)),
    		IsFolded: src.IsFolded,
    	}
    	for i, ln := range src.Line {
    		l.Line[i] = pm.mapLine(ln)
    	}
    	// Check memoization table. Must be done on the remapped location to
    	// account for the remapped mapping ID.
    	k := l.key()
    	if ll, ok := pm.locations[k]; ok {
    		pm.locationsByID.set(src.ID, ll)
    		return ll
    	}
    	pm.locationsByID.set(src.ID, l)
    	pm.locations[k] = l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    // special handling. For kernel mappings, tools (like perf) use the address of
    // the kernel relocation symbol (_text or _stext) as the mmap start. Additionally,
    // for obfuscation, ChromeOS profiles have the kernel image remapped to the 0-th page.
    func kernelBase(loadSegment *elf.ProgHeader, stextOffset *uint64, start, limit, offset uint64) (uint64, bool) {
    	const (
    		// PAGE_OFFSET for PowerPC64, see arch/powerpc/Kconfig in the kernel sources.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeImpl.java

                         * Someone removed the share while we were
                         * connected. Bastards! Disconnect this tree
                         * so that it reconnects cleanly should the share
                         * reappear in this client's lifetime.
                         */
                        log.debug("Disconnect tree on NT_STATUS_NETWORK_NAME_DELETED");
                        treeDisconnect(true, true);
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    // binary search, which would make it O(N*log(M)).
    func (p *Profile) remapMappingIDs() {
    	// Some profile handlers will incorrectly set regions for the main
    	// executable if its section is remapped. Fix them through heuristics.
    
    	if len(p.Mapping) > 0 {
    		// Remove the initial mapping if named '/anon_hugepage' and has a
    		// consecutive adjacent mapping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
Back to top