Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,462 for mapLine (0.36 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		key.buildIDOrFile = m.File
    	default:
    		// A mapping containing neither build ID nor file name is a fake mapping. A
    		// key with empty buildIDOrFile is used for fake mappings so that they are
    		// treated as the same mapping during merging.
    	}
    	return key
    }
    
    type mappingKey struct {
    	size, offset  uint64
    	buildIDOrFile string
    }
    
    func (pm *profileMerger) mapLine(src Line) Line {
    	ln := Line{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/net/http/mapping.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package http
    
    // A mapping is a collection of key-value pairs where the keys are unique.
    // A zero mapping is empty and ready to use.
    // A mapping tries to pick a representation that makes [mapping.find] most efficient.
    type mapping[K comparable, V any] struct {
    	s []entry[K, V] // for few pairs
    	m map[K]V       // for many pairs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 17:47:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/mapping.txt

    Shinsuke Sugaya <******@****.***> 1690423667 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 27 02:07:47 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/ja/mapping.txt

    Shinsuke Sugaya <******@****.***> 1690423667 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 27 02:07:47 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/configuration/ImportsReader.java

         * machine consumption, use the {@link #getSimpleNameToFullClassNamesMapping()} method, as it
         * provides a direct mapping from each simple name to the qualified name of the class to use.
         */
        String[] getImportPackages();
    
        /**
         * Returns a mapping from simple to qualified class name, derived from
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/internal/objfile/elf.go

    	for _, p := range f.elf.Progs {
    		if p.Type == elf.PT_LOAD && p.Flags&elf.PF_X != 0 {
    			// The memory mapping that contains the segment
    			// starts at an aligned address. Apparently this
    			// is what pprof expects, as it uses this and the
    			// start address of the mapping to compute PC
    			// delta.
    			return p.Vaddr - p.Vaddr%p.Align, nil
    		}
    	}
    	return 0, fmt.Errorf("unknown load address")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 20:44:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/internal/xcoff/xcoff.go

    type FileHeader32 struct {
    	Fmagic   uint16 // Target machine
    	Fnscns   uint16 // Number of sections
    	Ftimedat uint32 // Time and date of file creation
    	Fsymptr  uint32 // Byte offset to symbol table start
    	Fnsyms   uint32 // Number of entries in symbol table
    	Fopthdr  uint16 // Number of bytes in optional header
    	Fflags   uint16 // Flags
    }
    
    type FileHeader64 struct {
    	Fmagic   uint16 // Target machine
    	Fnscns   uint16 // Number of sections
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_block.go

      /dev/loopX ... Descriptor lock(Loopback device to mapFile under global map path)
      /var/lib/kubelet/plugins/kubernetes.io/csi/volumeDevices/{specName}/dev/ ... Global map path
      /var/lib/kubelet/plugins/kubernetes.io/csi/volumeDevices/{specName}/dev/{podUID} ... MapFile(Bind mount to publish Path)
      /var/lib/kubelet/plugins/kubernetes.io/csi/volumeDevices/staging/{specName} ... Staging path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. testing/performance/docs/performance-bisect.md

    //            }
            }
            baselineVersions
        }
    ...
    ```
    
    ## Perform the search
    
    While doing the search no other activity should be done on the machine. Therefore, it
    is best to have a dedicated machine running the search, e.g., using the CI infrastructure.
    
    In order to check if the test passes for the current revision you can use [check-rev.sh](check-rev.sh).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/cache/internal/CacheVersionMappingTest.groovy

            mapping.getVersionUsedBy(version("1.0-rc-3")).get() == CacheVersion.of(1)
            mapping.getVersionUsedBy(version("1.0")).get() == CacheVersion.of(1)
            mapping.getVersionUsedBy(version("1.1-milestone-1")).get() == CacheVersion.of(1)
            mapping.getVersionUsedBy(version("1.1-rc-1")).get() == CacheVersion.of(2)
            mapping.getVersionUsedBy(version("2.0")).get() == CacheVersion.of(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top