Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,776 for mapLine (0.13 sec)

  1. src/internal/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 Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/resources/suggest_indices/analyzer/mapping-default.json

    {
      "dynamic_templates": [
        {
          "strings": {
            "mapping": {
              "type": "keyword"
            },
            "match": "*",
            "match_mapping_type": "string"
          }
        }
      ],
      "properties": {
        "settingsType": {
          "type": "keyword"
        },
        "fieldName": {
          "type": "keyword"
        },
        "readingAnalyzer": {
          "type": "keyword"
        },
        "readingTermAnalyzer": {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Aug 03 15:54:27 UTC 2018
    - 613 bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/fa/mapping.txt

    Shinsuke Sugaya <******@****.***> 1653046245 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 20 11:30:45 UTC 2022
    - 771 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    //     Unfortunately, because Name is part of ObjectMeta, we can't store it as a NodeName at the API level.
    //
    //   - Hostname is the hostname of the local machine (from uname -n).
    //     However, some components allow the user to pass in a --hostname-override flag,
    //     which will override this in most places. In the absence of anything more meaningful,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top