Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,623 for mapLine (0.14 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top